Lines Matching refs:result
92 // The same as evalInRealmAndWait but returns the result of evaluating "code" as
173 const result = await readInReadRealm(objId);
175 assert_equals(result.constructor, constructorRealm.Object,
176 'result should be in constructor realm');
177 assert_equals(result.value.constructor, constructorRealm.Uint8Array,
187 const result = await chunkPromise;
188 assert_equals(result.constructor, constructorRealm.Object,
189 'result should be in constructor realm');
190 assert_equals(result.value.constructor, constructorRealm.Uint8Array,
219 const result = await readInReadRealm(objId);
221 assert_equals(result.constructor, constructorRealm.Object,
222 'result should be in constructor realm');
225 // current realm. So checking the realm of result.value is not useful.
226 }, 'the result object when read is called after write should come from the ' +
234 const result = await chunkPromise;
235 assert_equals(result.constructor, constructorRealm.Object,
236 'result should be in constructor realm');
239 // current realm. So checking the realm of result.value is not useful.
240 }, 'the result object when write is called with a pending ' +