Jeremy Ashkenas
|
0e86fa534e
|
todo
|
2010-01-02 01:00:03 -05:00 |
|
Jeremy Ashkenas
|
1dbf257df7
|
adding splice literals, with tests
|
2010-01-02 00:20:24 -05:00 |
|
Jeremy Ashkenas
|
5cbd94bf14
|
rebuilding narwhal uncovered a bug with named functions
|
2010-01-01 22:00:34 -05:00 |
|
Jeremy Ashkenas
|
fa3f3e41d4
|
fixing the food/eat array comprehension in the docs to not pretend like there's a made-up method on String.prototype
|
2010-01-01 17:16:34 -05:00 |
|
Jeremy Ashkenas
|
94bab256b4
|
adding consistent highlighting to variable assignment, whether functions or values
|
2010-01-01 17:11:48 -05:00 |
|
Jeremy Ashkenas
|
dfa2f50076
|
better existence test, with tests
|
2010-01-01 12:41:55 -05:00 |
|
Jeremy Ashkenas
|
e2de88544d
|
adding the notion of existence -- postfixing an expression with a question mark will check if to see if it's not null or undefined
|
2010-01-01 12:31:05 -05:00 |
|
Jeremy Ashkenas
|
010a2dde11
|
commenting the lexer a bit more
|
2010-01-01 12:11:35 -05:00 |
|
Jeremy Ashkenas
|
2fb8f48e75
|
expanding the list of tokens that regexes may not follow, according to the Mozilla JS 2.0 docs
|
2010-01-01 12:08:36 -05:00 |
|
Jeremy Ashkenas
|
271ea24b20
|
adding steps to range comprehensions
|
2010-01-01 11:54:59 -05:00 |
|
Jeremy Ashkenas
|
792fd359bd
|
fixing precedence order, so that you can nest range comprehensions
|
2010-01-01 11:19:57 -05:00 |
|
Jeremy Ashkenas
|
acf4a5ee47
|
making range comprehensions compile safely, even when you assign to the same variable as your endposts.
|
2010-01-01 10:55:43 -05:00 |
|
Jeremy Ashkenas
|
d9afe2cf44
|
--
|
2010-01-01 10:40:29 -05:00 |
|
Jeremy Ashkenas
|
ee304485b8
|
allowing indentation within function calls
|
2010-01-01 10:38:28 -05:00 |
|
Jeremy Ashkenas
|
5957ba624a
|
adding a test for expressions in range comprehensions
|
2010-01-01 10:20:29 -05:00 |
|
Jeremy Ashkenas
|
2b40607b57
|
test for uminus
|
2010-01-01 10:17:33 -05:00 |
|
Jeremy Ashkenas
|
8da4185bbf
|
allowing expressions within range literals
|
2010-01-01 10:15:22 -05:00 |
|
Jeremy Ashkenas
|
e8df8abf7a
|
fixing the regex lexer to make it less agressive when we know it can't possibly be a regex
|
2010-01-01 09:49:18 -05:00 |
|
Jeremy Ashkenas
|
b7ef9510c9
|
fix for multiple splats in a function call
|
2009-12-31 20:02:15 -05:00 |
|
Jeremy Ashkenas
|
fba131c5a4
|
adding splats as arguments to function calls
|
2009-12-31 19:52:13 -05:00 |
|
Jeremy Ashkenas
|
4985a400e6
|
adding a note in the docs about how to build the parser and install the gem
|
2009-12-31 18:22:51 -05:00 |
|
Jeremy Ashkenas
|
2ed041b5e1
|
comment about test_execution being the most important
|
2009-12-31 18:09:48 -05:00 |
|
Jeremy Ashkenas
|
5bcb2b2629
|
reserving variables for splats the regular way, not through a custom 'var' declaration
|
2009-12-31 18:03:39 -05:00 |
|
Jeremy Ashkenas
|
adca8183de
|
adding splats to function definitions
|
2009-12-31 17:50:12 -05:00 |
|
Jeremy Ashkenas
|
c187f2160f
|
expressions nested in expressions made for some indentation issues -- statements are now responsible for their own leading indentation
|
2009-12-31 16:50:46 -05:00 |
|
Jeremy Ashkenas
|
959c9a31cb
|
adding a test for multiline-array-comprehension-with-filter
|
2009-12-31 16:13:52 -05:00 |
|
Jeremy Ashkenas
|
9f6233473e
|
enabling multi-line array and object comprehensions
|
2009-12-31 16:09:27 -05:00 |
|
Jeremy Ashkenas
|
32b0f9fa4f
|
adding a filtered object comprehension test
|
2009-12-31 15:08:54 -05:00 |
|
Jeremy Ashkenas
|
f7e49eaae4
|
using push for comprehension results so that it works with object keys, and adding a test for object comprehensions
|
2009-12-31 15:03:32 -05:00 |
|
Jeremy Ashkenas
|
3042a50f87
|
adding weepy's suggestion to use (for .. in) for array comprehensions, which means that they're now object comprehensions as well
|
2009-12-31 14:52:14 -05:00 |
|
Jeremy Ashkenas
|
c8e820e851
|
done commenting the rewriter
|
2009-12-31 13:45:07 -05:00 |
|
Jeremy Ashkenas
|
66f92e770d
|
detailed scan_tokens so that the calling function can indicate the number of spaces to move forward (or backward) in the token stream
|
2009-12-31 13:43:24 -05:00 |
|
Jeremy Ashkenas
|
f3472b7437
|
making assignment token detection a regex like all the others
|
2009-12-31 13:26:38 -05:00 |
|
Jeremy Ashkenas
|
fdf2a76c53
|
pulled out all token-stream-rewriting logic into the CoffeeScript::Rewriter -- let the lexer be simpleminded
|
2009-12-31 13:22:33 -05:00 |
|
Jeremy Ashkenas
|
d11569b434
|
adding a rake:ultraviolet build syntax highlighter task, and regenerating the docs with correct highlighting
|
2009-12-31 13:01:10 -05:00 |
|
Jeremy Ashkenas
|
86be82f3ae
|
adding a test case for named functions
|
2009-12-31 10:52:00 -05:00 |
|
Jeremy Ashkenas
|
bcc5aa2bc3
|
updating docs -- need to get back on the computer that has the syntax highlighter for UV installed
|
2009-12-30 23:43:55 -05:00 |
|
Jeremy Ashkenas
|
5658b2b41f
|
updating tests for named functions
|
2009-12-30 23:14:29 -05:00 |
|
Jeremy Ashkenas
|
34bf4ce325
|
making all functions named functions, if children of an immediate assignment
|
2009-12-30 23:13:22 -05:00 |
|
Jeremy Ashkenas
|
4251aa30c6
|
adding proper auto-newline escaping
|
2009-12-30 22:49:25 -05:00 |
|
Jeremy Ashkenas
|
3ad9316fd0
|
allowing any manner of indentation in the comments, by adjusting them in the lexer
|
2009-12-30 22:24:40 -05:00 |
|
Jeremy Ashkenas
|
e4ae324e8f
|
don't print the confusing indentation numbers when raising ParseErrors for indentation
|
2009-12-30 21:57:03 -05:00 |
|
Jeremy Ashkenas
|
370d05148d
|
getting there, finally ... all tests are green for whitespace
|
2009-12-30 21:51:23 -05:00 |
|
Jeremy Ashkenas
|
3f27b0ff72
|
the underscore example parses now -- added line number information to parenthetical nodes
|
2009-12-30 21:44:51 -05:00 |
|
Jeremy Ashkenas
|
71cf6ab031
|
moving the newline escaping detection up higher so indents don't overrule it
|
2009-12-30 21:41:01 -05:00 |
|
Jeremy Ashkenas
|
f3e9a18c3c
|
lex indents with higher precedence than comments
|
2009-12-30 21:20:30 -05:00 |
|
Jeremy Ashkenas
|
d2176acf25
|
more fiddling with the lexer -- the indentation is super fragile
|
2009-12-30 21:15:54 -05:00 |
|
Jeremy Ashkenas
|
62725c5a52
|
more fiddling with the lexer -- the indentation is super fragile
|
2009-12-30 21:11:54 -05:00 |
|
Jeremy Ashkenas
|
cc66b31e69
|
rolling back MULTI_DENT regex
|
2009-12-30 20:41:32 -05:00 |
|
Jeremy Ashkenas
|
199d314903
|
regex cleanup -- eliminating some lookahead because Ruby regexps blow chunks (stackoverflows) when you look (ahead) at them funny.
|
2009-12-30 20:36:47 -05:00 |
|