aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* token -> toKen. Seems to be a key word somewhere, best to be safe.David Walter Seikel2012-01-301-53/+53
|
* These are nominally blocks, but might just be single statements.David Walter Seikel2012-01-281-0/+2
|
* Parenthesiss for flow control stuff, not type cast.David Walter Seikel2012-01-281-1/+1
|
* Add some of the flow control stuff, still needs lots of work.David Walter Seikel2012-01-281-53/+253
|
* Document the other Clist use, and change it's name while I'm at it.David Walter Seikel2012-01-281-3/+3
|
* Tweak the whitespace output a bit.David Walter Seikel2012-01-231-5/+19
|
* Make some operations valid.David Walter Seikel2012-01-231-6/+10
|
* Fix variable reference being replaced by it's definition.David Walter Seikel2012-01-231-6/+15
|
* Replace #ifdef with if or #if.David Walter Seikel2012-01-231-75/+69
| | | | Letting the compiler remove things with unreachable code optimisations, but still allowing it to check the code it removes.
* Clean up the block, state, and statement output LSL.David Walter Seikel2012-01-221-5/+6
|
* This is why states where not printing properly.David Walter Seikel2012-01-221-0/+1
|
* Function definitions are statements now.David Walter Seikel2012-01-221-1/+9
|
* Output function calls.David Walter Seikel2012-01-221-1/+14
|
* Disable the diff itself, until I think I'm ready for it.David Walter Seikel2012-01-221-6/+6
|
* Tidy up the output.David Walter Seikel2012-01-221-2/+2
|
* Consider a script as properly compiled if it passes the diff test.David Walter Seikel2012-01-221-10/+18
|
* Patch up a few expression things so that all the MLP scripts parse.David Walter Seikel2012-01-221-33/+36
|
* Disable some of the output, and compile every script in the test sim.David Walter Seikel2012-01-211-6/+7
|
* Parse 'crements.David Walter Seikel2012-01-211-0/+10
|
* Second part of the second pass to clean up functions used before they where ↵David Walter Seikel2012-01-211-2/+15
| | | | | | declared. Way too easy. B-)
* More function call, and first part of dealing with using functions before ↵David Walter Seikel2012-01-211-18/+59
| | | | declaring them.
* Standardise error messages.David Walter Seikel2012-01-211-2/+2
|
* A comment about function declarations.David Walter Seikel2012-01-211-0/+1
|
* Ah, there ARE key to key operators.David Walter Seikel2012-01-211-1/+2
|
* The default state is a different syntax from the other states.David Walter Seikel2012-01-211-2/+10
|
* Make equality expression types return bool.David Walter Seikel2012-01-211-2/+1
|
* Parse function calls, at least the basics.David Walter Seikel2012-01-211-1/+48
|
* Make typecast parse.David Walter Seikel2012-01-211-1/+1
|
* More stuff for parsing blocks and their statement lists.David Walter Seikel2012-01-211-1/+48
|
* Add LSL constants by simply compiling an LSL script with them all, and ↵David Walter Seikel2012-01-211-3/+24
| | | | keeping the result.
* A better way to do function parameters. NOTE - using an unreleased Eina API ↵David Walter Seikel2012-01-211-34/+74
| | | | from SVN.
* Some extra debugging.David Walter Seikel2012-01-211-1/+5
|
* Commentary about freeing AST nodes by the parser.David Walter Seikel2012-01-211-0/+2
|
* Some diff check tweakage.David Walter Seikel2012-01-211-5/+33
|
* Clean up parentesis and typecast a bit.David Walter Seikel2012-01-201-23/+20
|
* More quirk comments.David Walter Seikel2012-01-191-0/+1
|
* More notes about Lua quirks.David Walter Seikel2012-01-191-0/+15
|
* Add a note about Lua truth values.David Walter Seikel2012-01-181-0/+1
|
* Make sure allocated memory is all initialized properly.David Walter Seikel2012-01-181-3/+7
|
* Variables in the symbol table are AST leaves, NOT LSL_Identifiers.David Walter Seikel2012-01-181-2/+3
| | | | Took a while to track this down.
* Fix up negate, and bool_not integer.David Walter Seikel2012-01-171-2/+6
|
* Move some comments to be more useful.David Walter Seikel2012-01-171-33/+38
|
* Make sure all leaf's are created unbroken.David Walter Seikel2012-01-171-8/+8
| | | | Still getting broken ones, so something is actively breaking them.
* Add function parameters to the search list.David Walter Seikel2012-01-171-9/+31
|
* Change to the stringshared hash, it's way faster.David Walter Seikel2012-01-171-4/+4
|
* Some extra protection and debugging, coz something is making broken tokens. B-(David Walter Seikel2012-01-171-4/+10
|
* More damn operation validation.David Walter Seikel2012-01-171-13/+21
|
* Check variables, though not looking up function parameters yet.David Walter Seikel2012-01-171-0/+11
|
* Disable leaf burning for now, it's crashing.David Walter Seikel2012-01-171-5/+4
|
* A little cleanup.David Walter Seikel2012-01-171-1/+2
|