Package dtool.ast.expressions

Examples of dtool.ast.expressions.InitializerArray.resetData()


      if(fullExpInitializer.node == arrayInit) {
        return arrayInitResult;
      }
      if(!arrayInitializerCouldParseAsArrayLiteral(arrayInit)) {
        ParserError error = createError(ParserErrorTypes.INIT_USED_IN_EXP, arrayInit.getSourceRange(), null);
        arrayInit.resetData();
        conclude(error, arrayInit);
      } else {
        // Even if initializer can be parsed as array literal, we place it in exp without any node conversion
        // (this might change in future)
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.