Examples of elementType()


Examples of st.gravel.support.compiler.jvm.JVMArrayType.elementType()

  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;
  }

  public ObjectArrayLoad_Factory factory() {
View Full Code Here

Examples of st.gravel.support.compiler.jvm.JVMArrayType.elementType()

    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;
  }

  public ObjectArrayLoad_Factory factory() {
    return factory;
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.