Package org.eclipse.cdt.core.dom.ast.cpp
Interface ICPPASTLambdaExpression
-
- All Superinterfaces:
IASTExpression,IASTImplicitDestructorNameOwner,IASTImplicitNameOwner,IASTInitializerClause,IASTNode,ICPPASTExpression,ICPPASTInitializerClause
public interface ICPPASTLambdaExpression extends ICPPASTExpression, IASTImplicitNameOwner
Lambda expression, introduced in C++11.- Since:
- 5.3
- Restriction:
- This interface is not intended to be implemented by clients.
- Restriction:
- This interface is not intended to be extended by clients.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classICPPASTLambdaExpression.CaptureDefaultThe capture default can be by copy, by reference or unspecified.-
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression
IASTExpression.ValueCategory
-
Nested classes/interfaces inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
IASTNode.CopyStyle
-
-
Field Summary
Fields Modifier and Type Field Description static ASTNodePropertyBODYstatic ASTNodePropertyCAPTUREstatic ASTNodePropertyDECLARATOR-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression
EMPTY_EXPRESSION_ARRAY
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTImplicitDestructorNameOwner
IMPLICIT_DESTRUCTOR_NAME
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTImplicitNameOwner
IMPLICIT_NAME
-
Fields inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
EMPTY_NODE_ARRAY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddCapture(ICPPASTCapture capture)Not allowed on frozen AST.IASTCompoundStatementgetBody()Returns the compound statement of this lambda expression.ICPPASTLambdaExpression.CaptureDefaultgetCaptureDefault()Returns the capture default for this lambda expression.ICPPASTCapture[]getCaptures()Returns the array of captures for this lambda expression.IASTImplicitNamegetClosureTypeName()Returns an implicit name that represents the closure type.ICPPASTFunctionDeclaratorgetDeclarator()Returns the lambda declarator for this lambda expression, ornullin case it was not specified.IASTImplicitNamegetFunctionCallOperatorName()Returns an implicit name that represents the implicit function call operator of the closure.voidsetBody(IASTCompoundStatement body)Not allowed on frozen AST.voidsetCaptureDefault(ICPPASTLambdaExpression.CaptureDefault value)Not allowed on frozen AST.voidsetDeclarator(ICPPASTFunctionDeclarator dtor)Not allowed on frozen AST.-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTExpression
copy, copy, getExpressionType, getValueCategory, isLValue
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTImplicitDestructorNameOwner
getImplicitDestructorNames
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTImplicitNameOwner
getImplicitNames
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.IASTNode
accept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getOriginalNode, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParent
-
Methods inherited from interface org.eclipse.cdt.core.dom.ast.cpp.ICPPASTInitializerClause
getEvaluation
-
-
-
-
Field Detail
-
CAPTURE
static final ASTNodeProperty CAPTURE
-
DECLARATOR
static final ASTNodeProperty DECLARATOR
-
BODY
static final ASTNodeProperty BODY
-
-
Method Detail
-
getCaptureDefault
ICPPASTLambdaExpression.CaptureDefault getCaptureDefault()
Returns the capture default for this lambda expression.
-
getCaptures
ICPPASTCapture[] getCaptures()
Returns the array of captures for this lambda expression.
-
getClosureTypeName
IASTImplicitName getClosureTypeName()
Returns an implicit name that represents the closure type.
-
getDeclarator
ICPPASTFunctionDeclarator getDeclarator()
Returns the lambda declarator for this lambda expression, ornullin case it was not specified.
-
getFunctionCallOperatorName
IASTImplicitName getFunctionCallOperatorName()
Returns an implicit name that represents the implicit function call operator of the closure.
-
getBody
IASTCompoundStatement getBody()
Returns the compound statement of this lambda expression. Can benullwhen creating AST for content assist.
-
setCaptureDefault
void setCaptureDefault(ICPPASTLambdaExpression.CaptureDefault value)
Not allowed on frozen AST.- See Also:
getCaptureDefault()
-
addCapture
void addCapture(ICPPASTCapture capture)
Not allowed on frozen AST.- See Also:
getCaptures()
-
setDeclarator
void setDeclarator(ICPPASTFunctionDeclarator dtor)
Not allowed on frozen AST.- See Also:
getDeclarator()
-
setBody
void setBody(IASTCompoundStatement body)
Not allowed on frozen AST.- See Also:
getBody()
-
-