summaryrefslogtreecommitdiff
path: root/test/gen-wasm.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/gen-wasm.py')
-rwxr-xr-xtest/gen-wasm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/gen-wasm.py b/test/gen-wasm.py
index b0904620..4135435e 100755
--- a/test/gen-wasm.py
+++ b/test/gen-wasm.py
@@ -36,7 +36,7 @@ try:
except ImportError:
raise Error('Unable to import ply. Did you run "git submodule update"?')
-## ply stuff ###################################################################
+# ply stuff ###################################################################
NAMED_VALUES = {
'i32': 0x7f, # -1
'i64': 0x7e, # -2
@@ -268,7 +268,7 @@ keywords = {
'str': 'STR',
}
-## lexer ###
+# lexer ###
tokens = tuple(keywords.values()) + (
'BYTE',
@@ -344,7 +344,7 @@ def t_error(t):
lexer = lex.lex()
-## parser ###
+# parser ###
def LebLoop(data, v, cond):