summaryrefslogtreecommitdiffstats
path: root/eshtrans/tokens.esh
diff options
context:
space:
mode:
Diffstat (limited to 'eshtrans/tokens.esh')
-rw-r--r--eshtrans/tokens.esh4
1 files changed, 4 insertions, 0 deletions
diff --git a/eshtrans/tokens.esh b/eshtrans/tokens.esh
index 9da8bb8..9f68ca6 100644
--- a/eshtrans/tokens.esh
+++ b/eshtrans/tokens.esh
@@ -64,6 +64,8 @@ tokname()
T_RBRACE) n='"}"';;
T_BANG) n='"!"';;
T_IN) n='"in"';;
+ T_STATIC) n='"static"';;
+ T_RETURN) n='"return"';;
# Special symbols
T_NAME) n='parameter name';;
T_FNAME) n='function name';;
@@ -124,6 +126,8 @@ toktext()
T_RBRACE) n='}';;
T_BANG) n='!';;
T_IN) n='in';;
+ T_STATIC) n='static';;
+ T_RETURN) n='return';;
# Special symbols
T_NAME) n="${t#*${US}}";;
T_FNAME) n="${t#*${US}}";;