From 96716798e04aded65e9023c40fa8492350cf212d Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 28 Feb 2016 15:08:23 -0500 Subject: eshtrans: Add and parse T_USE --- (limited to 'eshtrans/tokens.esh') diff --git a/eshtrans/tokens.esh b/eshtrans/tokens.esh index ce1d3f2..344ac9f 100644 --- a/eshtrans/tokens.esh +++ b/eshtrans/tokens.esh @@ -64,6 +64,7 @@ tokname() T_RBRACE) n='"}"';; T_BANG) n='"!"';; T_IN) n='"in"';; + T_USE) n='"use"';; T_STATIC) n='"static"';; T_LOCAL) n='"local"';; T_RETURN) n='"return"';; @@ -130,6 +131,7 @@ toktext() T_RBRACE) n='}';; T_BANG) n='!';; T_IN) n='in';; + T_USE) n='use';; T_STATIC) n='__static';; T_LOCAL) n='__local';; T_RETURN) n='return';; -- cgit v0.9.1