aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LuaSL_LSL_tree.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2012-01-16Missed a debug ifdef.David Walter Seikel1-0/+2
2012-01-16Auto test file with no arguments.David Walter Seikel1-0/+8
2012-01-16Clean up space.David Walter Seikel1-3/+3
2012-01-16Fill out the rest of theparser symbols, and partiallyimplement typecasting.David Walter Seikel1-29/+52
2012-01-16Actually make use of the lexers line and column numbers.David Walter Seikel1-2/+0
2012-01-15Get multi file parsing working.David Walter Seikel1-113/+101
2012-01-15Updated comment about modulo.David Walter Seikel1-1/+1
2012-01-14Little bit of clean up.David Walter Seikel1-1/+1
2012-01-13Generic type handling, and add the float type.David Walter Seikel1-197/+408
2012-01-12Big comment about type casting and the various operations an types.David Walter Seikel1-0/+56
2012-01-12Change the order of conditionals, with more comments. Resort the upper tag ↵David Walter Seikel1-9/+10
types.
2012-01-12A failed attempt to handle multiple files.David Walter Seikel1-53/+42
2012-01-12Make the lexer more reentrant, and piss off yyerror.David Walter Seikel1-3/+5
2012-01-12Allow output to a file, and compare the output with the input.David Walter Seikel1-43/+72
2012-01-12More clean up.David Walter Seikel1-10/+6
2012-01-12Some general cleanup.David Walter Seikel1-24/+8
2012-01-12Switch to the lemon parser.David Walter Seikel1-110/+136
2012-01-10Leaf cloner.David Walter Seikel1-6/+10
2012-01-10Get rid of the LSL_AST structure, it's all in LSL_Leaf now.David Walter Seikel1-100/+84
2012-01-10Move more things into the LSL_Leaf structure, and some clean up related to that.David Walter Seikel1-71/+69
2012-01-10Almost got white space and comments working. Still a bug left somewhere, I ↵David Walter Seikel1-57/+75
think it's in operations ordering.
2012-01-09Moved yyerror() into the flex source. Added a count function, CHAR, STRING, ↵David Walter Seikel1-6/+0
and comment stripping. Well, half of comment stripping, it will fail without the other half. lol
2012-01-09One of these days I'll get spaces to work. Another hack at it.David Walter Seikel1-4/+11
2012-01-09Add most of the rest of the tokens, but ignore them.David Walter Seikel1-44/+55
2012-01-08Rearrange everything, to be consistant order.David Walter Seikel1-62/+71
2012-01-08Bite the bullet and get rid of my dreams to use enums, yacc insists on #defines.David Walter Seikel1-30/+24
2012-01-08Use character classes, some clean up. Tried to add space storing, but it ↵David Walter Seikel1-3/+14
did not work.
2012-01-08Parenthesis and statement parsing.David Walter Seikel1-4/+60
2012-01-08Parse an actual file.David Walter Seikel1-44/+109
2012-01-07Forget to save first. lolDavid Walter Seikel1-0/+1
2012-01-07More expression cleanup.David Walter Seikel1-157/+168
2012-01-07Clean up. exp -> ast. No more addExpression or outputExpression. ↵David Walter Seikel1-110/+100
Operations output themselves.
2012-01-07We don't need LSL_Expression.David Walter Seikel1-32/+7
2012-01-07Evaluate expressions using the new token table.David Walter Seikel1-152/+119
2012-01-07Make the parser more generic with function pointers and a big arse table.David Walter Seikel1-92/+183
2012-01-07Convert the parser from dealing with just expressions, to dealing with the ↵David Walter Seikel1-139/+167
entire AST.
2012-01-06Added most of the expression parser.David Walter Seikel1-15/+16
2012-01-06Even more debugging stuff, and make it selectable if the parser uses ↵David Walter Seikel1-102/+165
#defines or enums for tokens. NOTE - enum does not work anyway with btyacc.
2012-01-06Use the LSL_ enums for parser tokens. Some clean up and debugging.David Walter Seikel1-96/+99
OK, so the parsers prefer to make them defines instead of enums. sigh
2012-01-06Add more LSL parsing structure.David Walter Seikel1-43/+235
2012-01-05Consolidate the parser includes.David Walter Seikel1-2/+1
2012-01-05Clean up the parser.David Walter Seikel1-45/+67
2012-01-05Add a simple flex + btyacc stub.David Walter Seikel1-0/+63
Will be fleshed out soon with LSL grammer.