原文:How can one tell if a local variable is final from Java bytecode? (Related to BCEL)
Where is information such as if a local variable is "final" stored in Java bytecode? I know that for fields (global variables) and methods these are found in the access flag bits, but cannot seem to ...