Package dtool.ast.expressions

Examples of dtool.ast.expressions.ExpSuper


    case KW_THIS:
      consumeLookAhead();
      return conclude(srOf(lastLexElement(), new ExpThis()));
    case KW_SUPER:
      consumeLookAhead();
      return conclude(srOf(lastLexElement(), new ExpSuper()));
    case KW_NULL:
      consumeLookAhead();
      return conclude(srOf(lastLexElement(), new ExpNull()));
    case DOLLAR:
      consumeLookAhead();
View Full Code Here

TOP

Related Classes of dtool.ast.expressions.ExpSuper

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.