| .. |
|
Makefile
|
1142e5f27e
Added the my port of Lua regex and expose to strings as two new functions "gsub","gmatch" with near same functionality of string.gsub and string.gmatch from Lua.
|
13 years ago |
|
lua-regex.c
|
61e2976d78
Add new string function "find_lua" that uses the same code as in lua and has the same functionalities but uses a function to get the results.
|
13 years ago |
|
lua-regex.h
|
61e2976d78
Add new string function "find_lua" that uses the same code as in lua and has the same functionalities but uses a function to get the results.
|
13 years ago |
|
sqapi.cpp
|
77aea3f62e
After added a new member to SQRegFunction that indicates if a method is static, forgot to commit the change on the new api function that uses it.
|
13 years ago |
|
sqarray.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqbaselib.cpp
|
1829e76e0f
Add a vector to SharedState where to store release hooks to be called when is safe to work with the vm, right now I'm calling it after calls to closures and whe finalizing the vm.
|
13 years ago |
|
sqclass.cpp
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqclass.h
|
174267debe
Hiding the vector that holds delayed release hooks, add a function to add delayed release hooks, add a flag to prevent loops when actually doing the delayed release hooks calls.
|
13 years ago |
|
sqclosure.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqcompiler.cpp
|
e9da3f5611
First try to fix bug in compiler that accepts identifiers alone silently.
|
13 years ago |
|
sqcompiler.h
|
2b9d6070ba
Add new token to lexer/compiler TK_IGNORE to ignore some keywords and make some C/C++ code be compiled, for the moment only "new" is ignored.
|
13 years ago |
|
sqdebug.cpp
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqfuncproto.h
|
c461d9bd71
Refactored the some compiler functions splitting then to use that functionality alone.
|
13 years ago |
|
sqfuncstate.cpp
|
c461d9bd71
Refactored the some compiler functions splitting then to use that functionality alone.
|
13 years ago |
|
sqfuncstate.h
|
c461d9bd71
Refactored the some compiler functions splitting then to use that functionality alone.
|
13 years ago |
|
sqlexer.cpp
|
f5c2defb30
Fixed corner cases where like 'const char array[]= "string";' been interpreted as end of string, this implementation requires at least one '=' between brackets.
|
13 years ago |
|
sqlexer.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqmem.cpp
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqobject.cpp
|
64a08183f1
Changes provided by Alberto to fix incorrect line numbers on stack dumps
|
13 years ago |
|
sqobject.h
|
051a3e2de6
Only refactored declaration and assignment together, no functionality change.
|
13 years ago |
|
sqopcodes.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqpcheader.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqstate.cpp
|
174267debe
Hiding the vector that holds delayed release hooks, add a function to add delayed release hooks, add a flag to prevent loops when actually doing the delayed release hooks calls.
|
13 years ago |
|
sqstate.h
|
174267debe
Hiding the vector that holds delayed release hooks, add a function to add delayed release hooks, add a flag to prevent loops when actually doing the delayed release hooks calls.
|
13 years ago |
|
sqstring.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqtable.cpp
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
sqtable.h
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
squirrel.dsp
|
09cfbe61ca
Start git repository for squilu, squirrel language enhanced with lua goods.
|
13 years ago |
|
squserdata.h
|
174267debe
Hiding the vector that holds delayed release hooks, add a function to add delayed release hooks, add a flag to prevent loops when actually doing the delayed release hooks calls.
|
13 years ago |
|
squtils.h
|
aaa9e0b2df
Create a function "SQSharedState::CallDelayedReleaseHooks(SQVM *vm, int count)" to manage the delayed release hooks, call then on first in first out basis, modify userdata release to also join delayed release hooks.
|
13 years ago |
|
sqvm.cpp
|
aaa9e0b2df
Create a function "SQSharedState::CallDelayedReleaseHooks(SQVM *vm, int count)" to manage the delayed release hooks, call then on first in first out basis, modify userdata release to also join delayed release hooks.
|
13 years ago |
|
sqvm.h
|
f7be9c0f1c
Add new api functions:
|
13 years ago |