Package com.orange.wink.parse.objects

Examples of com.orange.wink.parse.objects.ObjectLit


          result = new SetElem(n);
        }
      } else if (type == Token.SETNAME) {
        result = new SetName(n);
      } else if (type == Token.OBJECTLIT) {
        result = new ObjectLit(n);
      } else if (type == Token.FUNCTION) {
        result = new Function(n);
      } else if (type == Token.CALL && Call.isValidCall(n)) {
        result = Call.getAppropriateCall(n);
      } else if (type == Token.EXPR_RESULT && ExprResultCall.isValidCall(n)) {
View Full Code Here

TOP

Related Classes of com.orange.wink.parse.objects.ObjectLit

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.