aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_compile.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Ignore white space diffences for now.David Walter Seikel2012-02-021-1/+1
|
* Turn on diffing again, getting hard to tell the difference manually.David Walter Seikel2012-02-011-7/+7
|
* Parse and output for statements. Also, take care of ignorables on left ↵David Walter Seikel2012-02-011-1/+60
| | | | parens of flow controls.
* Parse and output lists.David Walter Seikel2012-02-011-2/+37
|
* Deal with parsing if ... else ...David Walter Seikel2012-02-011-0/+10
|
* Track event handlers differently from functions.David Walter Seikel2012-02-011-3/+21
|
* Little cleanups.David Walter Seikel2012-02-011-3/+5
|
* Collect and print function arguments.David Walter Seikel2012-01-311-5/+52
|
* Put back function call stuff I removed before, and document why it needs to ↵David Walter Seikel2012-01-311-2/+8
| | | | be there so I don't remove it again. lol
* Output string tokens.David Walter Seikel2012-01-311-4/+11
|
* Fix a bunch of statement ignorables.David Walter Seikel2012-01-311-16/+72
|
* ignorableText -> ignorable coz it's neater. lolDavid Walter Seikel2012-01-311-28/+29
|
* Statements now have an ignorable array.David Walter Seikel2012-01-311-10/+12
|
* Clean up the new ignorable code so they compile out when disabled.David Walter Seikel2012-01-301-4/+21
|
* Ignorables for statements.David Walter Seikel2012-01-301-10/+11
|
* Blocks get ignorables now.David Walter Seikel2012-01-301-8/+20
|
* Don't go outputting duplicate ignorables for function calls and variable ↵David Walter Seikel2012-01-301-4/+28
| | | | references.
* No longer storing blocks as leaves. This one required a whole heap of ↵David Walter Seikel2012-01-301-117/+122
| | | | function reordering.
* Track function type ignorable, and no need to store the leaf.David Walter Seikel2012-01-301-3/+5
|
* Clean up dangling function calls.David Walter Seikel2012-01-301-7/+0
|
* Add a new struct for tracking bits of text and the attached ignorable, then ↵David Walter Seikel2012-01-301-26/+45
| | | | use it for names.
* Remove the else if stuff, and empty function lists. Add the else precedence ↵David Walter Seikel2012-01-301-1/+0
| | | | hack back in.
* Patch up some more parser stuff.David Walter Seikel2012-01-301-6/+8
|
* More comment++David Walter Seikel2012-01-301-0/+1
|
* Change the way blocks start and end, the look ahead was screwing things.David Walter Seikel2012-01-301-9/+16
|
* 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
|