From d06d1dca7699cb4aad08d92f49f5ddf91b88a539 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Sun, 28 Feb 2016 15:22:03 -0500 Subject: eshtrans: Fix T_STATIC and T_LOCAL recognition and codegen --- (limited to 'eshtrans/tokens.esh') diff --git a/eshtrans/tokens.esh b/eshtrans/tokens.esh index 344ac9f..d8e57ca 100644 --- a/eshtrans/tokens.esh +++ b/eshtrans/tokens.esh @@ -132,8 +132,8 @@ toktext() T_BANG) n='!';; T_IN) n='in';; T_USE) n='use';; - T_STATIC) n='__static';; - T_LOCAL) n='__local';; + T_STATIC) n='static';; + T_LOCAL) n='local';; T_RETURN) n='return';; # Special symbols T_NAME) n="${t#*${US}}";; -- cgit v0.9.1