Fix webidl-tests fallout

This commit is contained in:
Alex Crichton
2018-09-17 14:51:25 -07:00
parent f24828a16b
commit fe31615ca1
4 changed files with 32 additions and 10 deletions

View File

@ -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;