Package st.gravel.support.compiler.jvm

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


    }
  }

  @Override
  public JVMInstruction effectStack_(final JVMStack _aJVMStack) {
    final JVMArrayType _arrayType;
    st.gravel.support.jvm.ObjectExtensions.assert_(this, _aJVMStack.pop().isIntType());
    _arrayType = ((JVMArrayType) _aJVMStack.pop());
    st.gravel.support.jvm.ObjectExtensions.assert_(this, _arrayType.isArrayType());
    st.gravel.support.jvm.ObjectExtensions.assert_(this, _arrayType.elementType().isObjectType());
    _aJVMStack.push_(_arrayType.elementType());
    return this;
  }
View Full Code Here

TOP

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

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.