Lines Matching full:reflect
29 // List of functions in Reflect, excluding the '@@' properties.
31 // where BuiltinsRefject::func refers to the native implementation of Reflect[name].
34 /* Reflect.apply ( target, thisArgument, argumentsList ) */ \
36 /* Reflect.construct ( target, argumentsList [ , newTarget ] ) */ \
38 /* Reflect.defineProperty ( target, propertyKey, attributes ) */ \
40 /* Reflect.deleteProperty ( target, propertyKey ) */ \
42 /* Reflect.get ( target, propertyKey [ , receiver ] ) */ \
44 /* Reflect.getOwnPropertyDescriptor ( target, propertyKey ) */ \
46 /* Reflect.getPrototypeOf ( target ) */ \
48 /* Reflect.has ( target, propertyKey ) */ \
50 /* Reflect.isExtensible ( target ) */ \
52 /* Reflect.ownKeys ( target ) */ \
54 /* Reflect.preventExtensions ( target ) */ \
56 /* Reflect.set ( target, propertyKey, V [ , receiver ] ) */ \
58 /* Reflect.setPrototypeOf ( target, proto ) */ \