Package org.formulacompiler.compiler.internal.bytecode.MethodCompiler

Examples of org.formulacompiler.compiler.internal.bytecode.MethodCompiler.LocalRef


        /*
         * Note: It is important to allocate the local here rather than at the point of first
         * evaluation. Otherwise it could get reused when the first evaluation is within a local
         * scope.
         */
        final LocalRef local = compileNewLocal( method().isArray( _node.value() ) );
        letDict().let( varName, _node.value().getDataType(),
            new DelayedLet( varName, local, _node.value(), method().letTrackingNestingLevel() ) );
        try {
          compile( _node.in() );
        }
View Full Code Here


  private final Set<String> forbiddenLetVars = New.set();


  protected final LocalRef compileStoreToNewLocal( boolean _isArray )
  {
    final LocalRef local = compileNewLocal( _isArray );
    compileStoreLocal( local );
    return local;
  }
View Full Code Here

TOP

Related Classes of org.formulacompiler.compiler.internal.bytecode.MethodCompiler.LocalRef

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.