List of usage examples for org.aspectj.apache.bcel.generic InstructionList getLength
public int getLength()
From source file:br.jabuti.metrics.AbstractMetric.java
License:Open Source License
protected final double getNumberOfBytecodeInstructions(MethodGen mg) { InstructionList il = mg.getInstructionList(); if (il == null) return 0.0; return (double) il.getLength(); }