Package org.aspectj.org.eclipse.jdt.internal.compiler.codegen

Examples of org.aspectj.org.eclipse.jdt.internal.compiler.codegen.StackMapFrameCodeStream


    this.contents[this.contentsOffset++] = (byte) interfaceIndex;
  }
  this.produceAttributes = this.referenceBinding.scope.compilerOptions().produceDebugAttributes;
  this.creatingProblemType = creatingProblemType;
  if (this.targetJDK >= ClassFileConstants.JDK1_6) {
    this.codeStream = new StackMapFrameCodeStream(this);
    this.produceAttributes |= ClassFileConstants.ATTR_STACK_MAP;
  } else {
    this.codeStream = new CodeStream(this);
  }
  // retrieve the enclosing one guaranteed to be the one matching the propagated flow info
View Full Code Here


    this.targetJDK = options.targetJDK;
    this.produceAttributes = options.produceDebugAttributes;
    this.referenceBinding = typeBinding;
    if (this.targetJDK >= ClassFileConstants.JDK1_6) {
      this.produceAttributes |= ClassFileConstants.ATTR_STACK_MAP;
      this.codeStream = new StackMapFrameCodeStream(this);
    } else {
      this.codeStream = new CodeStream(this);
    }
    this.initByteArrays();
  }
View Full Code Here

TOP

Related Classes of org.aspectj.org.eclipse.jdt.internal.compiler.codegen.StackMapFrameCodeStream

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.