| Commit message (Expand) | Author | Files | Lines |
2014-09-14 | Support LSL multi line strings. | David Walter Seikel | 1 | -0/+2 |
2014-08-14 | Clean up the compiler output. Threaded compiling is much faster when it's no... | David Walter Seikel | 1 | -1/+1 |
2014-04-22 | Move all source into the new src directory, and shuffle a few other things ar... | David Walter Seikel | 1 | -0/+0 |
2014-04-22 | Move LuaSL source up one directory. | David Walter Seikel | 1 | -0/+0 |
2012-02-05 | White space clean up. | David Walter Seikel | 1 | -2/+1 |
2012-02-03 | LSL "else if" -> Lua "elseif", and it was a bitch. lol | David Walter Seikel | 1 | -0/+1 |
2012-02-02 | Numby magic. | David Walter Seikel | 1 | -2/+2 |
2012-01-31 | ignorableText -> ignorable coz it's neater. lol | David Walter Seikel | 1 | -3/+3 |
2012-01-30 | Change the way blocks start and end, the look ahead was screwing things. | David Walter Seikel | 1 | -2/+2 |
2012-01-30 | token -> toKen. Seems to be a key word somewhere, best to be safe. | David Walter Seikel | 1 | -1/+1 |
2012-01-23 | Replace #ifdef with if or #if. | David Walter Seikel | 1 | -1/+1 |
2012-01-21 | The default state is a different syntax from the other states. | David Walter Seikel | 1 | -0/+1 |
2012-01-21 | Comments about LSL identifier quirks. | David Walter Seikel | 1 | -1/+3 |
2012-01-20 | Allow to compile out the diff check, and the ignore text stuff as that's it's... | David Walter Seikel | 1 | -0/+2 |
2012-01-17 | Using eina string buffer for ignorable text. | David Walter Seikel | 1 | -13/+2 |
2012-01-17 | Only need one of each in the value union. | David Walter Seikel | 1 | -1/+1 |
2012-01-17 | Use stringshare, and const. | David Walter Seikel | 1 | -4/+4 |
2012-01-17 | Store the lexer provided length. | David Walter Seikel | 1 | -66/+67 |
2012-01-17 | Should point to the start of the symbol, not the end. | David Walter Seikel | 1 | -3/+4 |
2012-01-17 | Change that butt ugly name. | David Walter Seikel | 1 | -15/+15 |
2012-01-17 | Cleanups for EFL. | David Walter Seikel | 1 | -2/+1 |
2012-01-17 | Merge the compiler into the test harness. Remove excess files. | David Walter Seikel | 1 | -1/+1 |
2012-01-17 | Parser now understands state, function, and variable derlarations. Including... | David Walter Seikel | 1 | -2/+2 |
2012-01-16 | yylineno does not track colums, so do it myself. | David Walter Seikel | 1 | -3/+16 |
2012-01-16 | Make sure identifiers get, er, identified. | David Walter Seikel | 1 | -12/+12 |
2012-01-16 | Add key and string to the parser. | David Walter Seikel | 1 | -0/+3 |
2012-01-16 | Actually make use of the lexers line and column numbers. | David Walter Seikel | 1 | -15/+2 |
2012-01-15 | Get multi file parsing working. | David Walter Seikel | 1 | -28/+18 |
2012-01-15 | Updated float matching rule. | David Walter Seikel | 1 | -2/+2 |
2012-01-14 | Little bit of clean up. | David Walter Seikel | 1 | -1/+0 |
2012-01-13 | Generic type handling, and add the float type. | David Walter Seikel | 1 | -3/+3 |
2012-01-12 | Add a hex integer format, and comment about variations for float. | David Walter Seikel | 1 | -3/+6 |
2012-01-12 | A failed attempt to handle multiple files. | David Walter Seikel | 1 | -2/+12 |
2012-01-12 | Make the lexer more reentrant, and piss off yyerror. | David Walter Seikel | 1 | -88/+78 |
2012-01-12 | More clean up. | David Walter Seikel | 1 | -4/+1 |
2012-01-12 | Switch to the lemon parser. | David Walter Seikel | 1 | -2/+2 |
2012-01-10 | Get rid of the comment function. | David Walter Seikel | 1 | -15/+2 |
2012-01-10 | Get rid of the LSL_AST structure, it's all in LSL_Leaf now. | David Walter Seikel | 1 | -1/+0 |
2012-01-10 | Move more things into the LSL_Leaf structure, and some clean up related to that. | David Walter Seikel | 1 | -78/+80 |
2012-01-10 | Almost got white space and comments working. Still a bug left somewhere, I t... | David Walter Seikel | 1 | -76/+96 |
2012-01-09 | The other half of the comment scanner. | David Walter Seikel | 1 | -3/+16 |
2012-01-09 | Moved yyerror() into the flex source. Added a count function, CHAR, STRING, ... | David Walter Seikel | 1 | -2/+34 |
2012-01-09 | One of these days I'll get spaces to work. Another hack at it. | David Walter Seikel | 1 | -1/+1 |
2012-01-09 | Missed a keyword. | David Walter Seikel | 1 | -0/+1 |
2012-01-09 | Add most of the rest of the tokens, but ignore them. | David Walter Seikel | 1 | -1/+38 |
2012-01-08 | Rearrange everything, to be consistant order. | David Walter Seikel | 1 | -7/+13 |
2012-01-08 | Use character classes, some clean up. Tried to add space storing, but it did... | David Walter Seikel | 1 | -12/+7 |
2012-01-08 | Parenthesis and statement parsing. | David Walter Seikel | 1 | -0/+1 |
2012-01-08 | Parse an actual file. | David Walter Seikel | 1 | -4/+5 |
2012-01-06 | Flex performance tweaks, and other options. | David Walter Seikel | 1 | -7/+16 |