1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 17:55:39 +02:00

JavaDoc adjustment.

This commit is contained in:
Sergey Prigogin 2013-08-30 10:58:07 -07:00
parent 65840d905d
commit 3a1afc32a0

View file

@ -55,11 +55,14 @@ public interface IASTExpression extends IASTInitializerClause {
*/
public static final IASTExpression[] EMPTY_EXPRESSION_ARRAY = {};
/**
* Returns the type of the value the expression evaluates to.
*/
public IType getExpressionType();
/**
* Returns whether this expression is an lvalue. LValues are for instance required on the
* left hand side of an assignment expression.
* Returns whether this expression is an lvalue. LValues are for instance required on
* the left hand side of an assignment expression.
* @since 5.2
*/
public boolean isLValue();