Class Pass3bVerifier
java.lang.Object
org.apache.bcel.verifier.PassVerifier
org.apache.bcel.verifier.structurals.Pass3bVerifier
This PassVerifier verifies a method of class file according to pass 3,
so-called structural verification as described in The Java Virtual Machine
Specification, 2nd edition.
More detailed information is to be found at the do_verify() method's
documentation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPass3bVerifier
(Verifier owner, int method_no) This class should only be instantiated by a Verifier. -
Method Summary
Modifier and TypeMethodDescriptionPass 3b implements the data flow analysis as described in the Java Virtual Machine Specification, Second Edition.int
Returns the method number as supplied when instantiating.Methods inherited from class org.apache.bcel.verifier.PassVerifier
addMessage, getMessages, verify
-
Constructor Details
-
Pass3bVerifier
This class should only be instantiated by a Verifier.- See Also:
-
-
Method Details
-
do_verify
Pass 3b implements the data flow analysis as described in the Java Virtual Machine Specification, Second Edition. Later versions will use LocalVariablesInfo objects to verify if the verifier-inferred types and the class file's debug information (LocalVariables attributes) match [TODO].- Specified by:
do_verify
in classPassVerifier
- See Also:
-
getMethodNo
public int getMethodNo()Returns the method number as supplied when instantiating.
-