From 8bf52cfc5499dbb1f6502495925cbc6c9b5a4274 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 22 Feb 2016 13:47:18 -0500 Subject: eshtrans: Add function start/end tokens --- (limited to 'eshtrans') 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 -- cgit v0.9.1