summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-s-parser.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/gen-s-parser.py b/scripts/gen-s-parser.py
index 0c71644aa..b296d85ac 100755
--- a/scripts/gen-s-parser.py
+++ b/scripts/gen-s-parser.py
@@ -520,8 +520,16 @@ instructions = [
("ref.is_null", "makeRefIs(s, RefIsNull)"),
("ref.func", "makeRefFunc(s)"),
("ref.eq", "makeRefEq(s)"),
- # TODO Add table instructions
+ # table instructions
("table.get", "makeTableGet(s)"),
+ ("table.set", "makeTableSet(s)"),
+ # TODO:
+ # table.init
+ # table.fill
+ # table.copy
+ # table.grow
+ # table.size
+ #
# exception handling instructions
("try", "makeTry(s)"),
("throw", "makeThrow(s)"),