blob: 2aacf4ab9477c4d299a7676905c8fa3539aa8ea5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
assert(binaryen.getPassArgument("theKey") === null);
binaryen.setPassArgument("theKey", "theValue");
assert(binaryen.getPassArgument("theKey") === "theValue");
binaryen.setPassArgument("theKey", null);
assert(binaryen.getPassArgument("theKey") === null);
binaryen.setPassArgument("theKey", "theValue2");
assert(binaryen.getPassArgument("theKey") === "theValue2");
binaryen.clearPassArguments();
assert(binaryen.getPassArgument("theKey") === null);
|