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:
@ -87,7 +87,11 @@ global.Unforgeable = class Unforgeable {
|
||||
}
|
||||
};
|
||||
|
||||
global.m = () => 123;
|
||||
global.GlobalMethod = class {
|
||||
m() { return 123; }
|
||||
};
|
||||
|
||||
global.get_global_method = () => new GlobalMethod();
|
||||
|
||||
global.Indexing = function () {
|
||||
return new Proxy({}, {
|
||||
|
Reference in New Issue
Block a user