Searched refs:caller (Results 1 – 25 of 48) sorted by relevance
12
33 { (caller: Any) in getter() }46 { (caller: Any, value: Value) in setter(value) }81 internal func getValue<Value>(caller: AnyObject? = nil) -> Value? { in getValue<Value>()82 let value = try? getter?.call(by: caller, withArguments: [caller as Any]) in getValue<Value>()86 internal func setValue(_ value: Any, caller: AnyObject? = nil) { in setValue()87 let _ = try? setter?.call(by: caller, withArguments: [caller as Any, value]) in setValue()94 return runtime.createSyncFunction(name, argsCount: 0) { [weak self, weak caller] this, args in in buildGetter()95 return self?.getValue(caller: caller) in buildGetter()104 return self?.setValue(args.first as Any, caller: caller) in buildSetter()117 descriptor.setProperty("get", value: buildGetter(inRuntime: runtime, withCaller: caller)) in buildDescriptor()[all …]
6 const bundler = api.caller(getBundler);8 let platform = api.caller((caller) => caller?.platform);134 function getBundler(caller) { argument135 if (!caller)137 if (caller.bundler)138 return caller.bundler;141 caller.name === 'babel-loader' ||143 caller.name === 'next-babel-turbo-loader') {
30 const bundler = api.caller(getBundler);32 let platform = api.caller((caller) => (caller as any)?.platform);174 function getBundler(caller: any) {175 if (!caller) return null;176 if (caller.bundler) return caller.bundler;179 caller.name === 'babel-loader' ||181 caller.name === 'next-babel-turbo-loader'
14 ])('%s', (_name, caller) => {21 caller, constant42 caller, constant60 caller, constant78 caller, constant105 caller, constant123 caller, constant152 caller, constant176 caller, constant206 caller, constant
53 function getPlatform(caller) { argument54 return caller && caller.platform;58 const platform = api.caller(getPlatform);
18 caller: { property50 caller: {51 ...options.caller,
148 caller: {157 Object.defineProperty(babelConfig.caller, 'onWarning', {160 value: (babelConfig.caller.onWarning = function (msg: any) {
126 const platform = api.caller((caller) => caller?.platform);
158 caller: {166 Object.defineProperty(babelConfig.caller, 'onWarning', {169 value: babelConfig.caller.onWarning = function (msg) {
1 …caller","platform","Object","defineProperty","enumerable","writable","value","onWarning","msg","co…
75 caller: {
71 const isWeb = api.caller(72 caller =>73 caller && (caller.name === 'babel-loader' || caller.name === 'next-babel-turbo-loader')
214 caller: {
239 caller: {
1 …caller","name","bundler","platform","isServer","customTransformOptions","environment","ast","clone…
140 EXJavaScriptObject *caller = [[EXJavaScriptObject alloc] initWith:thisPtr runtime:self];143 constructor(caller, arguments);
151 …ABI47_0_0EXJavaScriptObject *caller = [[ABI47_0_0EXJavaScriptObject alloc] initWith:thisPtr runtim…154 constructor(caller, arguments);
140 …ABI49_0_0EXJavaScriptObject *caller = [[ABI49_0_0EXJavaScriptObject alloc] initWith:thisPtr runtim…143 constructor(caller, arguments);
154 …ABI48_0_0EXJavaScriptObject *caller = [[ABI48_0_0EXJavaScriptObject alloc] initWith:thisPtr runtim…157 constructor(caller, arguments);
28 - Replace `metroTarget: 'client' | 'node'` with `isServer: boolean` in the Babel caller. ([#24410](…68 - Expose `metroTarget: 'client' | 'node'` to the Babel caller. ([#23607](https://github.com/expo/ex…
154 // Dispatch async to give caller time to cancel the request
153 // Dispatch async to give caller time to cancel the request
18 The babel loading mechanism must include the following properties on its `caller`.
332 …// Why we do this is lost to time. We probably shouldn't; passing a valid URL is the caller's resp…