Package dtool.ast.expressions

Examples of dtool.ast.expressions.ExpLiteralBool


  public Expression parseSimpleLiteral() {
    switch (lookAheadGrouped()) {
    case KW_TRUE:
    case KW_FALSE:
      consumeLookAhead();
      return conclude(srOf(lastLexElement(), new ExpLiteralBool(lastLexElement().type == DeeTokens.KW_TRUE)));
    case KW_THIS:
      consumeLookAhead();
      return conclude(srOf(lastLexElement(), new ExpThis()));
    case KW_SUPER:
      consumeLookAhead();
View Full Code Here

TOP

Related Classes of dtool.ast.expressions.ExpLiteralBool

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.