From 43a8cf835bf017b3362f5dd02efa74f69537462d Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 22 Feb 2016 19:53:13 -0500 Subject: eshtrans: Add T_LOCAL --- (limited to 'eshtrans/tokens.esh') diff --git a/eshtrans/tokens.esh b/eshtrans/tokens.esh index a4dee4f..edb5f76 100644 --- a/eshtrans/tokens.esh +++ b/eshtrans/tokens.esh @@ -65,6 +65,7 @@ tokname() T_BANG) n='"!"';; T_IN) n='"in"';; T_STATIC) n='"static"';; + T_LOCAL) n='"local"';; T_RETURN) n='"return"';; # Special symbols T_NAME) n='parameter name';; @@ -130,6 +131,7 @@ toktext() T_BANG) n='!';; T_IN) n='in';; T_STATIC) n='static';; + T_LOCAL) n='__local';; T_RETURN) n='return';; # Special symbols T_NAME) n="${t#*${US}}";; -- cgit v0.9.1