Package org.lilystudio.javascript.expression

Examples of org.lilystudio.javascript.expression.RegexpLiteral


    case Token.NUMBER:
      return new NumericLiteral(node, root, scope);

    case Token.REGEXP:
      return new RegexpLiteral(node, root, scope);

    case Token.ARRAYLIT:
      return new ArrayLiteral(node, root, scope);

    case Token.OBJECTLIT:
View Full Code Here

TOP

Related Classes of org.lilystudio.javascript.expression.RegexpLiteral

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.