Update Binaryen to latest; Various fixes

This commit is contained in:
Daniel Wirtz
2018-10-11 08:49:08 +02:00
committed by GitHub
parent b54a97c0fe
commit f7c734789e
228 changed files with 12372 additions and 14996 deletions

16
tests/parser/calls.ts Normal file
View File

@@ -0,0 +1,16 @@
// Identifier
id();
// Call
id()();
// ElementAccess
arr[0]();
arr[0](1);
// PropertyAccess
obj.a();
obj.a(1);
// Everything
id(a)[0](b)(c).a(d)(e)[1](f)(g);

View File

@@ -0,0 +1,7 @@
id();
id()();
arr[0]();
arr[0](1);
obj.a();
obj.a(1);
id(a)[0](b)(c).a(d)(e)[1](f)(g);