Example #1
0
 public SLFunction executeFunction(VirtualFrame frame) throws UnexpectedResultException {
   return SLTypesGen.expectSLFunction(executeGeneric(frame));
 }
Example #2
0
 public boolean executeBoolean(VirtualFrame frame) throws UnexpectedResultException {
   return SLTypesGen.expectBoolean(executeGeneric(frame));
 }
Example #3
0
 public long executeLong(VirtualFrame frame) throws UnexpectedResultException {
   return SLTypesGen.expectLong(executeGeneric(frame));
 }