~ubuntu-branches/debian/sid/eclipse-cdt/sid

« back to all changes in this revision

Viewing changes to core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTExpression.java

  • Committer: Package Import Robot
  • Author(s): Jakub Adam
  • Date: 2013-10-03 20:30:16 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20131003203016-d4ug6l0xgosasumq
Tags: 8.2.1-1
* New upstream release.
* Updated autotools documentation sources.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
         * Empty expression array.
55
55
         */
56
56
        public static final IASTExpression[] EMPTY_EXPRESSION_ARRAY = {};
57
 
        
 
57
 
 
58
        /**
 
59
         * Returns the type of the value the expression evaluates to.
 
60
         */
58
61
        public IType getExpressionType();
59
62
        
60
63
        /**
61
 
         * Returns whether this expression is an lvalue. LValues are for instance required on the
62
 
         * left hand side of an assignment expression.
 
64
         * Returns whether this expression is an lvalue. LValues are for instance required on
 
65
         * the left hand side of an assignment expression.
63
66
         * @since 5.2
64
67
         */
65
68
        public boolean isLValue();