Package com.orange.wink.ast

Examples of com.orange.wink.ast.AstNode


   */
  public ExprResultCall(final AstNode n) throws WinkUnmanagedSyntaxException {
    super(n);

    final List<AstNode> childsExpr = n.getChilds();
    final AstNode callnode = childsExpr.get(0);

    call = Call.getAppropriateCall(callnode);
  }
View Full Code Here

TOP

Related Classes of com.orange.wink.ast.AstNode

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.