示例#1
0
 public static BytecodeFastAAccess0 at(Method method, int bci) {
   BytecodeFastAAccess0 b = new BytecodeFastAAccess0(method, bci);
   if (Assert.ASSERTS_ENABLED) {
     b.verify();
   }
   return b;
 }
示例#2
0
 /** Like at, but returns null if the BCI is not at fast_aaccess_0 */
 public static BytecodeFastAAccess0 atCheck(Method method, int bci) {
   BytecodeFastAAccess0 b = new BytecodeFastAAccess0(method, bci);
   return (b.isValid() ? b : null);
 }