Skip to content

Commit c45aa3e

Browse files
inexorabletashzolkis
authored andcommitted
Ensure object creation specifies the realm (webmachinelearning#810)
* Ensure object creation specifies the realm "Realm" is an ECMAScript concept best explained in https://html.spec.whatwg.org/multipage/webappapis.html#realms-and-their-counterparts Newly created JS objects must be associated with a Realm; while older specs didn't do this explicitly, best practice is to be explicit about this, especially for steps running "in parallel", or in algorithms separate from method steps. Do so! This also adds lint tests to try and catch future violations. Note that dictionaries (e.g. MLOperatorDescriptor) are Infra "ordered maps" it the body of spec algorithms, not JS objects, so they don't have a realm. Conversion to a JS object when returning a dictionary to script is handled by WebIDL bindings logic. Also note that DOMExceptions, either thrown or as promise rejection values, are not given a realm. This is a known issue across all web specs and is tracked in whatwg/webidl#135. Resolves webmachinelearning#793. * Don't double-init realm; and don't need realm for dicts * Variable name improvement from @fdwr
1 parent 74b5ae5 commit c45aa3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.bs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1044,7 +1044,7 @@ Note: `dispatch()` itself provides no signal that graph execution has completed.
10441044
'C': outputTensorC
10451045
};
10461046
context.dispatch(graph, inputs, outputs);
1047-
1047+
10481048
// 6. Read back the computed result.
10491049
const result = await context.readTensor(outputTensorC);
10501050
console.log('Output value:', new Float32Array(result)); // [1, 1, 1, 1]

0 commit comments

Comments
 (0)