Package org.deuce.objectweb.asm.commons

Examples of org.deuce.objectweb.asm.commons.AnalyzerAdapter


    this.isStatic = (access & Opcodes.ACC_STATIC) != 0;
   
    // The AnalyzerAdapter delegates the call to the DuplicateMethod, while the DuplicateMethod uses
    // the analyzer for stack state in the original method.
    duplicateMethod = new DuplicateMethod( copyMethod, isStatic, newMethod, fieldsHolder, className);
    AnalyzerAdapter analyzerAdapter = new AnalyzerAdapter( className, access, methodName, descriptor, duplicateMethod);
    duplicateMethod.setAnalyzer( analyzerAdapter);
   
    this.copyMethod = analyzerAdapter;
    this.className = className;
    this.methodName = methodName;
View Full Code Here

TOP

Related Classes of org.deuce.objectweb.asm.commons.AnalyzerAdapter

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.