Beispiel #1
0
 // Factory method for wrapping a function in a JSType
 public static JSType fromFunctionType(FunctionType fn) {
   return new JSType(NON_SCALAR_MASK, null, ImmutableSet.of(ObjectType.fromFunction(fn)), null);
 }