Package st.gravel.support.compiler.jvm

Examples of st.gravel.support.compiler.jvm.JVMField


    return this;
  }

  public JVMMethodCompiler produceVarRead_(final String _aString) {
    final JVMLocalDeclaration _local;
    final JVMField _cv;
    JVMLocalDeclaration _temp1 = _locals.get(_aString);
    _local = ((JVMLocalDeclaration) _temp1);
    if (_local != null) {
      return JVMMethodCompiler.this.emit_(Load.factory.local_(_local));
    }
    _cv = _copiedVariables.get(_aString);
    this.produceVarRead_(_copiedVariablesOwner);
    this.emit_(_cv.asGetField());
    return this;
  }
View Full Code Here

TOP

Related Classes of st.gravel.support.compiler.jvm.JVMField

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.