List of usage examples for org.objectweb.asm.tree MethodNode subclass-usage
From source file org.apache.commons.javaflow.providers.asm5.ContinuableMethodNode.java
public class ContinuableMethodNode extends MethodNode implements Opcodes { private final ContinuableClassInfoResolver cciResolver; private final String className; protected final MethodVisitor mv;
From source file org.apache.drill.exec.compile.bytecode.ScalarReplacementNode.java
public class ScalarReplacementNode extends MethodNode { static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(ScalarReplacementNode.class); String[] exceptionsArr; MethodVisitor inner;
From source file org.evosuite.instrumentation.AnnotatedMethodNode.java
/** * <p>AnnotatedMethodNode class.</p> * * @author fraser */ public class AnnotatedMethodNode extends MethodNode {
From source file org.evosuite.runtime.instrumentation.AnnotatedMethodNode.java
/** * <p>AnnotatedMethodNode class.</p> * * @author fraser */ public class AnnotatedMethodNode extends MethodNode {
From source file org.jboss.byteman.agent.adapter.BMLocalScopeMethodAdapter.java
/** * a subclass of JSRInlinerAdapter which pushes local variable info through to the next * adapter inline during code generation if it wants it */ public class BMLocalScopeMethodAdapter extends MethodNode { private MethodVisitor mv;
From source file org.jephyr.easyflow.instrument.AnalyzingMethodNode.java
abstract class AnalyzingMethodNode extends MethodNode { final Map<AbstractInsnNode, Frame> frames = new HashMap<>(); AnalyzerAdapter adapter; AnalyzingMethodNode(int access, String name, String desc, String signature, String[] exceptions) {
From source file org.mutabilitydetector.checkers.FieldAssignmentVisitor.java
public abstract class FieldAssignmentVisitor extends MethodNode { protected List<FieldInsnNode> fieldAssignments = new ArrayList<FieldInsnNode>(); protected final String owner; private final AsmVerifierFactory verifierFactory;
From source file org.parboiled.transform.RuleMethod.java
class RuleMethod extends MethodNode { private final List<InstructionGroup> groups = new ArrayList<InstructionGroup>(); private final List<LabelNode> usedLabels = new ArrayList<LabelNode>(); private final Class<?> ownerClass;
From source file org.wavescale.hotload.transformer.api.VarArgsHelperMethod.java
/**
* ****************************************************************************
* Copyright (c) 2005-2014 Faur Ioan-Aurel. *
* All rights reserved. This program and the accompanying materials *
* are made available under the terms of the MIT License *
* which accompanies this distribution, and is available at *
From source file v6.java.preverifier.PreverifierMethodNode.java
/**
* MethodNode subclass that does preverification of the associated method code
* as well as looking for preverification errors.
*
* @author Craig Setera
*/