public interface ICPPASTConstructorChainInitializer extends IASTInitializer, ICPPASTPackExpandable, IASTNameOwner
class X { int a; X(); }; X::X : a(0) {} // a(0) is a member initializer.
IASTNode.CopyStyle
Modifier and Type | Field and Description |
---|---|
static ICPPASTConstructorChainInitializer[] |
EMPTY_CONSTRUCTORCHAININITIALIZER_ARRAY |
static ASTNodeProperty |
INITIALIZER |
static ASTNodeProperty |
MEMBER_ID |
EMPTY_INITIALIZER_ARRAY
EMPTY_NODE_ARRAY
r_declaration, r_definition, r_reference, r_unclear
Modifier and Type | Method and Description |
---|---|
ICPPASTConstructorChainInitializer |
copy()
Returns a mutable copy of the tree rooted at this node.
|
ICPPASTConstructorChainInitializer |
copy(IASTNode.CopyStyle style)
Returns a mutable copy of the tree rooted at this node.
|
IASTInitializer |
getInitializer()
Returns the initializer for the member
|
IASTExpression |
getInitializerValue()
Deprecated.
Replaced by
getInitializer() . |
IASTName |
getMemberInitializerId()
Returns the name of the member.
|
void |
setInitializer(IASTInitializer initializer)
Not allowed on frozen ast.
|
void |
setInitializerValue(IASTExpression expression)
Deprecated.
Replaced by
setInitializer(IASTInitializer) . |
void |
setMemberInitializerId(IASTName name)
Not allowed on frozen ast.
|
accept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getOriginalNode, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParent
isPackExpansion, setIsPackExpansion
getRoleForName
static final ICPPASTConstructorChainInitializer[] EMPTY_CONSTRUCTORCHAININITIALIZER_ARRAY
static final ASTNodeProperty MEMBER_ID
static final ASTNodeProperty INITIALIZER
IASTName getMemberInitializerId()
IASTInitializer getInitializer()
ICPPASTConstructorChainInitializer copy()
IASTNode
copy.getParent() == null copy.getPropertyInParent() == null copy.isFrozen() == falsePreprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.
Calling this method is equivalent to copy(CopyStyle.withoutLocations)
.
copy
in interface IASTInitializer
copy
in interface IASTNode
ICPPASTConstructorChainInitializer copy(IASTNode.CopyStyle style)
IASTNode
copy.getParent() == null copy.getPropertyInParent() == null copy.isFrozen() == falsePreprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.
copy
in interface IASTInitializer
copy
in interface IASTNode
style
- IASTNode.CopyStyle
create a copy with or without locations. Please see
IASTNode.CopyStyle
for restrictions on copies with Locations.void setMemberInitializerId(IASTName name)
void setInitializer(IASTInitializer initializer)
@Deprecated IASTExpression getInitializerValue()
getInitializer()
.@Deprecated void setInitializerValue(IASTExpression expression)
setInitializer(IASTInitializer)
.Copyright (c) IBM Corp. and others 2004, 2014. All Rights Reserved.