summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--eshtrans/tokens.esh6
1 files changed, 6 insertions, 0 deletions
diff --git a/eshtrans/tokens.esh b/eshtrans/tokens.esh
index 9f68ca6..a4dee4f 100644
--- a/eshtrans/tokens.esh
+++ b/eshtrans/tokens.esh
@@ -73,6 +73,9 @@ tokname()
T_IO_NUMBER) n='I/O number';;
T_WORD) n='word';;
T_ASSIGNMENT_WORD) n='assignment word';;
+ # Internal symbols
+ T_FN_START) n='function start';;
+ T_FN_END) n='function end';;
# Unknown
*) n='unknown token';;
esac
@@ -135,6 +138,9 @@ toktext()
T_IO_NUMBER) n="${t#*${US}}";;
T_WORD) n="${t#*${US}}";;
T_ASSIGNMENT_WORD) n="${t#*${US}}";;
+ # Internal symbols
+ T_FN_START) n='';;
+ T_FN_END) n='';;
# Unknown
*) n='';;
esac