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

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