Show last: 20 , 50 , 100 , All
Next page

Date File Revision Author Diff Revision Log
2008/07/03 18:25:25 29028 29028 tene HTML | TEXT
[lolcode]
* Store params in $?BLOCK symtable.
* Store subs in $?BLOCK symtable.
* Start building a parse tree for expressions at compile time.
* Minor PCT typo fix.
2008/07/01 07:45:24 28887 28887 tene HTML | TEXT
[lolcode]
* First draft of adding proper block handling
* First draft of support for globals
2008/05/07 23:50:58 27387 27387 pmichaud HTML | TEXT
* Convert a variety of <foo: xyz> into <foo: 'xyz'>. (RT#53606)
2008/03/05 03:38:48 26219 26219 tene HTML | TEXT
Actually let lolcode parse multiple arguments to function definitions.
There's a big problem here either with PGE or my understanding.
Add isdecl(1) to variable declarations that don't provide an inital value.
2008/02/22 13:54:43 25988 25988 tene HTML | TEXT
Lots of fixes for lolcode.
Properly handle dispatching arguments to functions at runtime.
Allow definition of functions with parameters.
Miscellenous cleanups.
Add math functions.
2008/01/22 05:59:07 25125 25125 coke HTML | TEXT
[lolcode]

YARN parsing with basic escapes (RT #50052)

Courtesy sjansen++

2008/01/10 18:51:27 24728 24728 coke HTML | TEXT
[lolcode]

Our PGE blocker has a ticket number, use it.

2008/01/10 16:04:12 24726 24726 coke HTML | TEXT
[lolcode]

#49580: negative integers (NUMBRs) and floats (NUMBARs)

Courtesy sjansen++

Note: this needs tests.

2008/01/07 20:14:44 24660 24660 coke HTML | TEXT
[lolcode]

Applying #49490: [PATCH] [lolcode] Fixed ifthen support.

sjansen++

2008/01/05 13:17:42 24560 24560 kjs HTML | TEXT
[lolcode] add ITZ keyword.
2008/01/05 13:16:17 24559 24559 kjs HTML | TEXT
[lolcode] refactor TOP to re-use the block rule, making both grammar and actions cleaner.
2008/01/05 13:05:37 24558 24558 kjs HTML | TEXT
[lolcode] change 'I HAS A' into 3 separate (string) tokens, so that the amount of space between these words no longer matters.
2008/01/04 17:52:09 24548 24548 kjs HTML | TEXT
[lolcode] add more keywords.
2008/01/04 17:50:46 24546 24546 kjs HTML | TEXT
[lolcode] add more keywords.
2008/01/04 16:46:09 24535 24535 kjs HTML | TEXT
[lolcode] add switch statement rule and assoc. keywords.
no action yet (and not added as statement alternative)
2008/01/04 16:40:46 24534 24534 kjs HTML | TEXT
[lolcode] add some keywords. WIN , FAIL, FOUND
2008/01/04 16:33:38 24533 24533 kjs HTML | TEXT
[lolcode] add parse function for ifthen. No action yet.
Also, the keywords in the equally named rule are now
alphabetical, which makes keeping it up to date easier.
2008/01/04 15:15:06 24530 24530 particle HTML | TEXT
[lolcode]: keyword token should anchor on right word boundary -- pmichaud++
2008/01/04 07:46:05 24527 24527 simon HTML | TEXT
Allow the use of the IT variable.
2008/01/03 22:55:35 24511 24511 simon And this completes the implementation of nullary functions. Next, parameters!