0
I Use This!
Inactive

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
Aug 22, 2025 — Aug 22, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
adding the notion of existence -- postfixing an expression with a question mark will check if to see if it's not null or undefined More... over 16 years ago
commenting the lexer a bit more More... over 16 years ago
expanding the list of tokens that regexes may not follow, according to the Mozilla JS 2.0 docs More... over 16 years ago
adding steps to range comprehensions More... over 16 years ago
fixing precedence order, so that you can nest range comprehensions More... over 16 years ago
making range comprehensions compile safely, even when you assign to the same variable as your endposts. More... over 16 years ago
-- More... over 16 years ago
allowing indentation within function calls More... over 16 years ago
adding a test for expressions in range comprehensions More... over 16 years ago
test for uminus More... over 16 years ago
allowing expressions within range literals More... over 16 years ago
fixing the regex lexer to make it less agressive when we know it can't possibly be a regex More... over 16 years ago
fix for multiple splats in a function call More... over 16 years ago
adding splats as arguments to function calls More... over 16 years ago
adding a note in the docs about how to build the parser and install the gem More... over 16 years ago
comment about test_execution being the most important More... over 16 years ago
reserving variables for splats the regular way, not through a custom 'var' declaration More... over 16 years ago
adding splats to function definitions More... over 16 years ago
expressions nested in expressions made for some indentation issues -- statements are now responsible for their own leading indentation More... over 16 years ago
adding a test for multiline-array-comprehension-with-filter More... over 16 years ago
enabling multi-line array and object comprehensions More... over 16 years ago
adding a filtered object comprehension test More... over 16 years ago
using push for comprehension results so that it works with object keys, and adding a test for object comprehensions More... over 16 years ago
adding weepy's suggestion to use (for .. in) for array comprehensions, which means that they're now object comprehensions as well More... over 16 years ago
done commenting the rewriter More... over 16 years ago
detailed scan_tokens so that the calling function can indicate the number of spaces to move forward (or backward) in the token stream More... over 16 years ago
making assignment token detection a regex like all the others More... over 16 years ago
pulled out all token-stream-rewriting logic into the CoffeeScript::Rewriter -- let the lexer be simpleminded More... over 16 years ago
adding a rake:ultraviolet build syntax highlighter task, and regenerating the docs with correct highlighting More... over 16 years ago
adding a test case for named functions More... over 16 years ago