From 0d50b87aa47d3cb64730bf5c8646e5e6ff02c268 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Fri, 26 Jan 1996 16:03:19 -0200 Subject: lua_table now has references to global variable names (TreeNode's). --- table.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'table.h') diff --git a/table.h b/table.h index a3c10388..cb2ef006 100644 --- a/table.h +++ b/table.h @@ -1,7 +1,7 @@ /* ** Module to control static tables ** TeCGraf - PUC-Rio -** $Id: table.h,v 2.13 1995/10/26 14:21:56 roberto Exp roberto $ +** $Id: table.h,v 2.14 1996/01/22 14:15:13 roberto Exp roberto $ */ #ifndef table_h @@ -10,6 +10,13 @@ #include "tree.h" #include "opcode.h" +typedef struct +{ + Object object; + TreeNode *varname; +} Symbol; + + extern Symbol *lua_table; extern TaggedString **lua_constant; -- cgit v1.2.3-55-g6feb