Package ru.andrew.jclazz.decompiler.engine.ops

Examples of ru.andrew.jclazz.decompiler.engine.ops.PushVariableView


            if (mainOp instanceof PutFieldView)
            {
                String fieldName = ((PutFieldView) mainOp).getFieldName();
                if (!"this$0".equals(fieldName))
                {
                    PushVariableView pushvView = (PushVariableView) ops.get(1);
                    ((AnonymousClazzSourceView) getClazzView()).putInnerMapping(fieldName, pushvView.getLocalVariable().getLVNumber() - 2);
                }
            }
            else if (mainOp instanceof InvokeView)
            {
                // Counting parameters
View Full Code Here

TOP

Related Classes of ru.andrew.jclazz.decompiler.engine.ops.PushVariableView

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.