public interface IASTLiteralExpression extends IASTExpression
IASTExpression.ValueCategoryIASTNode.CopyStyle| Modifier and Type | Field and Description |
|---|---|
static int |
lk_char_constant
A character literal e.g.
|
static int |
lk_false
lk_false represents the 'false' keyword. |
static int |
lk_float_constant
A floating point literal e.g.
|
static int |
lk_integer_constant
An integer literal e.g.
|
static int |
lk_last
Deprecated.
all possible values must be defined in
IASTLiteralExpression. |
static int |
lk_nullptr
lk_nullptr represents the 'nullptr' keyword. |
static int |
lk_string_literal
A string literal e.g.
|
static int |
lk_this
lk_this represents the 'this' keyword for C++ only. |
static int |
lk_true
lk_true represents the 'true' keyword. |
EMPTY_EXPRESSION_ARRAYEMPTY_NODE_ARRAY| Modifier and Type | Method and Description |
|---|---|
IASTLiteralExpression |
copy()
Returns a mutable copy of the tree rooted at this node.
|
IASTLiteralExpression |
copy(IASTNode.CopyStyle style)
Returns a mutable copy of the tree rooted at this node.
|
int |
getKind()
Returns the kind of the literal expression kind, which can be one of the
lk_*
constants defined above. |
char[] |
getValue()
Returns the value of the literal as char-array.
|
void |
setKind(int value)
Sets the kind of the literal expression.
|
void |
setValue(char[] value)
Sets the value for the expression.
|
void |
setValue(java.lang.String value)
Deprecated.
Replaced by
setValue(char[]). |
java.lang.String |
toString()
Returns the value of the literal as string.
|
getExpressionType, getValueCategory, isLValueaccept, contains, getChildren, getContainingFilename, getFileLocation, getLeadingSyntax, getNodeLocations, getOriginalNode, getParent, getPropertyInParent, getRawSignature, getSyntax, getTrailingSyntax, getTranslationUnit, isActive, isFrozen, isPartOfTranslationUnitFile, setParent, setPropertyInParentstatic final int lk_integer_constant
5static final int lk_float_constant
6.0static final int lk_char_constant
'a'static final int lk_string_literal
"a literal"@Deprecated static final int lk_last
IASTLiteralExpression.static final int lk_this
lk_this represents the 'this' keyword for C++ only.static final int lk_true
lk_true represents the 'true' keyword.static final int lk_false
lk_false represents the 'false' keyword.static final int lk_nullptr
lk_nullptr represents the 'nullptr' keyword.int getKind()
lk_*
constants defined above.char[] getValue()
java.lang.String toString()
toString in class java.lang.Objectvoid setKind(int value)
void setValue(char[] value)
IASTLiteralExpression copy()
IASTNodecopy.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 IASTExpressioncopy in interface IASTInitializerClausecopy in interface IASTNodeIASTLiteralExpression copy(IASTNode.CopyStyle style)
IASTNodecopy.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 IASTExpressioncopy in interface IASTInitializerClausecopy in interface IASTNodestyle - IASTNode.CopyStyle create a copy with or without locations. Please see
IASTNode.CopyStyle for restrictions on copies with Locations.@Deprecated void setValue(java.lang.String value)
setValue(char[]).Copyright (c) IBM Corp. and others 2004, 2014. All Rights Reserved.