mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-14 04:25:21 +02:00
JavaDoc adjustment.
This commit is contained in:
parent
d1fabfa8ed
commit
6a767437c9
1 changed files with 6 additions and 3 deletions
|
@ -54,12 +54,15 @@ public interface IASTExpression extends IASTInitializerClause {
|
||||||
* Empty expression array.
|
* Empty expression array.
|
||||||
*/
|
*/
|
||||||
public static final IASTExpression[] EMPTY_EXPRESSION_ARRAY = {};
|
public static final IASTExpression[] EMPTY_EXPRESSION_ARRAY = {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the type of the value the expression evaluates to.
|
||||||
|
*/
|
||||||
public IType getExpressionType();
|
public IType getExpressionType();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns whether this expression is an lvalue. LValues are for instance required on the
|
* Returns whether this expression is an lvalue. LValues are for instance required on
|
||||||
* left hand side of an assignment expression.
|
* the left hand side of an assignment expression.
|
||||||
* @since 5.2
|
* @since 5.2
|
||||||
*/
|
*/
|
||||||
public boolean isLValue();
|
public boolean isLValue();
|
||||||
|
|
Loading…
Add table
Reference in a new issue