aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_lexer.l (follow)
Commit message (Collapse)AuthorAgeFilesLines
* White space clean up.David Walter Seikel2012-02-051-2/+1
|
* LSL "else if" -> Lua "elseif", and it was a bitch. lolDavid Walter Seikel2012-02-031-0/+1
|
* Numby magic.David Walter Seikel2012-02-021-2/+2
|
* ignorableText -> ignorable coz it's neater. lolDavid Walter Seikel2012-01-311-3/+3
|
* Change the way blocks start and end, the look ahead was screwing things.David Walter Seikel2012-01-301-2/+2
|
* token -> toKen. Seems to be a key word somewhere, best to be safe.David Walter Seikel2012-01-301-1/+1
|
* Replace #ifdef with if or #if.David Walter Seikel2012-01-231-1/+1
| | | | Letting the compiler remove things with unreachable code optimisations, but still allowing it to check the code it removes.
* The default state is a different syntax from the other states.David Walter Seikel2012-01-211-0/+1
|
* Comments about LSL identifier quirks.David Walter Seikel2012-01-211-1/+3
|
* Allow to compile out the diff check, and the ignore text stuff as that's ↵David Walter Seikel2012-01-201-0/+2
| | | | it's only purpose.
* Using eina string buffer for ignorable text.David Walter Seikel2012-01-171-13/+2
|
* Only need one of each in the value union.David Walter Seikel2012-01-171-1/+1
|
* Use stringshare, and const.David Walter Seikel2012-01-171-4/+4
|
* Store the lexer provided length.David Walter Seikel2012-01-171-66/+67
|
* Should point to the start of the symbol, not the end.David Walter Seikel2012-01-171-3/+4
|
* Change that butt ugly name.David Walter Seikel2012-01-171-15/+15
|
* Cleanups for EFL.David Walter Seikel2012-01-171-2/+1
|
* Merge the compiler into the test harness. Remove excess files.David Walter Seikel2012-01-171-1/+1
|
* Parser now understands state, function, and variable derlarations. ↵David Walter Seikel2012-01-171-2/+2
| | | | Including scope. :-P
* yylineno does not track colums, so do it myself.David Walter Seikel2012-01-161-3/+16
|
* Make sure identifiers get, er, identified.David Walter Seikel2012-01-161-12/+12
|
* Add key and string to the parser.David Walter Seikel2012-01-161-0/+3
|
* Actually make use of the lexers line and column numbers.David Walter Seikel2012-01-161-15/+2
|
* Get multi file parsing working.David Walter Seikel2012-01-151-28/+18
|
* Updated float matching rule.David Walter Seikel2012-01-151-2/+2
|
* Little bit of clean up.David Walter Seikel2012-01-141-1/+0
|
* Generic type handling, and add the float type.David Walter Seikel2012-01-131-3/+3
|
* Add a hex integer format, and comment about variations for float.David Walter Seikel2012-01-121-3/+6
|
* A failed attempt to handle multiple files.David Walter Seikel2012-01-121-2/+12
|
* Make the lexer more reentrant, and piss off yyerror.David Walter Seikel2012-01-121-88/+78
|
* More clean up.David Walter Seikel2012-01-121-4/+1
|
* Switch to the lemon parser.David Walter Seikel2012-01-121-2/+2
|
* Get rid of the comment function.David Walter Seikel2012-01-101-15/+2
|
* Get rid of the LSL_AST structure, it's all in LSL_Leaf now.David Walter Seikel2012-01-101-1/+0
|
* Move more things into the LSL_Leaf structure, and some clean up related to that.David Walter Seikel2012-01-101-78/+80
|
* Almost got white space and comments working. Still a bug left somewhere, I ↵David Walter Seikel2012-01-101-76/+96
| | | | think it's in operations ordering.
* The other half of the comment scanner.David Walter Seikel2012-01-091-3/+16
|
* Moved yyerror() into the flex source. Added a count function, CHAR, STRING, ↵David Walter Seikel2012-01-091-2/+34
| | | | | | and comment stripping. Well, half of comment stripping, it will fail without the other half. lol
* One of these days I'll get spaces to work. Another hack at it.David Walter Seikel2012-01-091-1/+1
|
* Missed a keyword.David Walter Seikel2012-01-091-0/+1
|
* Add most of the rest of the tokens, but ignore them.David Walter Seikel2012-01-091-1/+38
|
* Rearrange everything, to be consistant order.David Walter Seikel2012-01-081-7/+13
|
* Use character classes, some clean up. Tried to add space storing, but it ↵David Walter Seikel2012-01-081-12/+7
| | | | did not work.
* Parenthesis and statement parsing.David Walter Seikel2012-01-081-0/+1
|
* Parse an actual file.David Walter Seikel2012-01-081-4/+5
|
* Flex performance tweaks, and other options.David Walter Seikel2012-01-061-7/+16
|
* Added most of the expression parser.David Walter Seikel2012-01-061-5/+31
|
* Remove errant empty line.David Walter Seikel2012-01-061-1/+0
|
* Even more debugging stuff, and make it selectable if the parser uses ↵David Walter Seikel2012-01-061-9/+18
| | | | | | #defines or enums for tokens. NOTE - enum does not work anyway with btyacc.
* Use the LSL_ enums for parser tokens. Some clean up and debugging.David Walter Seikel2012-01-061-13/+10
| | | | OK, so the parsers prefer to make them defines instead of enums. sigh