1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 04:25:21 +02:00

JavaDoc adjustment.

This commit is contained in:
Sergey Prigogin 2013-08-30 10:58:07 -07:00
parent d1fabfa8ed
commit 6a767437c9

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();