From 6a767437c90bc7a153bc6e0a0408dfdf6a1cc888 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 30 Aug 2013 10:58:07 -0700 Subject: [PATCH] JavaDoc adjustment. --- .../org/eclipse/cdt/core/dom/ast/IASTExpression.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTExpression.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTExpression.java index 9c8e89abf09..d31cd966665 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTExpression.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTExpression.java @@ -54,12 +54,15 @@ public interface IASTExpression extends IASTInitializerClause { * Empty expression array. */ 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();