mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-12 12:31:22 +00:00
Fix webidl-tests fallout
This commit is contained in:
@ -1,4 +1,8 @@
|
||||
global.global_no_args = () => 3;
|
||||
global.global_with_args = (a, b) => a + b;
|
||||
global.global_attribute = 'x';
|
||||
const map = {
|
||||
global_no_args: () => 3,
|
||||
global_with_args: (a, b) => a + b,
|
||||
global_attribute: 'x',
|
||||
};
|
||||
|
||||
global.get_global = () => map;
|
||||
|
||||
|
Reference in New Issue
Block a user