Update of /cvsroot/wxlua/wxLua/bindings/wxstc
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv17944/wxLua/bindings/wxstc
Modified Files:
wxstc_datatypes.lua
Log Message:
speedup genwxbind.lua another 30%, make global vars more readable
Index: wxstc_datatypes.lua
===================================================================
RCS file: /cvsroot/wxlua/wxLua/bindings/wxstc/wxstc_datatypes.lua,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** wxstc_datatypes.lua 13 Dec 2006 06:57:49 -0000 1.37
--- wxstc_datatypes.lua 14 Dec 2006 22:02:57 -0000 1.38
***************
*** 7,13 ****
-- ---------------------------------------------------------------------------
! -- typeDefs
-- ---------------------------------------------------------------------------
! wxstc_typeDefs =
{
WXHANDLE = "void *",
--- 7,13 ----
-- ---------------------------------------------------------------------------
! -- typedefTable
-- ---------------------------------------------------------------------------
! wxstc_typedefTable =
{
WXHANDLE = "void *",
***************
*** 25,29 ****
-- dataTypes
-- ---------------------------------------------------------------------------
! wxstc_dataTypes =
{
BOOL = {
--- 25,29 ----
-- dataTypes
-- ---------------------------------------------------------------------------
! wxstc_dataTypeTable =
{
BOOL = {
***************
*** 3259,3265 ****
-- ---------------------------------------------------------------------------
! -- conditions
-- ---------------------------------------------------------------------------
! wxstc_conditions =
{
["%__WIN16__"] = "defined(__WIN16__)",
--- 3259,3265 ----
-- ---------------------------------------------------------------------------
! -- preprocConditionTable
-- ---------------------------------------------------------------------------
! wxstc_preprocConditionTable =
{
["%__WIN16__"] = "defined(__WIN16__)",
***************
*** 3639,3649 ****
-- Cache the dataTypes
-- ---------------------------------------------------------------------------
! for k, v in pairs(wxstc_typeDefs) do
! typeDefs[k] = v
end
! for k, v in pairs(wxstc_dataTypes) do
! dataTypes[k] = v
end
! for k, v in pairs(wxstc_conditions) do
! conditions[k] = v
end
--- 3639,3649 ----
-- Cache the dataTypes
-- ---------------------------------------------------------------------------
! for k, v in pairs(wxstc_typedefTable) do
! typedefTable[k] = v
end
! for k, v in pairs(wxstc_dataTypeTable) do
! dataTypeTable[k] = v
end
! for k, v in pairs(wxstc_preprocConditionTable) do
! preprocConditionTable[k] = v
end
|