Jeremy Ashkenas
45f442bd73
allowing Klass::['dynamic-property'] syntax. Issue #392
2010-05-31 22:32:43 -04:00
Jeremy Ashkenas
b8a4adbdc7
whitespace adjustments
2010-05-31 19:54:28 -04:00
Jeremy Ashkenas
7402aea9f2
cleaner generated code for range comprehensions, but you have to use an explicit step to go downwards. Forked the code path for cleaner range literals as well.
2010-05-31 19:38:45 -04:00
Jeremy Ashkenas
12587d8295
reworking Stan's nodes.coffee type/children work a bit for issue 386
2010-05-31 10:36:50 -04:00
Stan Angeloff
e17bb4ff11
FIXES #397 : Can't use @variable in switch in instance method
2010-05-26 21:58:11 +03:00
Stan Angeloff
aba19841ee
FIXES #390 : super() calls in constructor of classes that are defined as object properties
2010-05-25 09:15:46 +03:00
Stan Angeloff
4c3271728d
OOP love for nodes.coffee
2010-05-19 23:24:55 +03:00
Stan Angeloff
57231ae75d
Merging type, children and statement functions
2010-05-19 22:53:05 +03:00
Stan Angeloff
97c2a70593
Baby steps fixing #386
2010-05-19 22:37:42 +03:00
Jeremy Ashkenas
485346f0e5
CoffeeScript 0.6.2
2010-05-15 01:18:05 -04:00
Jeremy Ashkenas
dfb3a13246
Fixed lingering CoffeeScript Compiler running live in Internet Explorer bugs. Implemented helpers.index_of and removed named functions. Ticket #366
2010-05-14 23:40:04 -04:00
Jeremy Ashkenas
f84eb9ed47
fixing heredoc indentation from herecomment tweaks
2010-05-14 21:50:17 -04:00
Jeremy Ashkenas
45669e08c6
better indentation handling for far-left heredocs and herecomments
2010-05-12 21:49:46 -04:00
Jeremy Ashkenas
a5db69e1af
better indentation handling for far-left heredocs and herecomments
2010-05-12 21:47:31 -04:00
Jeremy Ashkenas
8aceef20e1
Adding initial implementation of here-comments (block comments) Issue #368
2010-05-12 20:56:44 -04:00
Jeremy Ashkenas
4d0acc9b02
fixing andreyvit's issue with parentheses not being applied to multi-operators as the condition clause of a switch...
2010-05-10 22:50:11 -04:00
Jeremy Ashkenas
393fbf1b66
merging in gfxmonk's cleanup to how children of nodes are determined. Removing some (so far) unused portions.
2010-05-10 22:41:18 -04:00
gfxmonk
3324b03a5d
Merge remote branch 'upstream/master'
...
Conflicts:
src/nodes.coffee
2010-05-10 21:09:00 +10:00
gfxmonk
eb91f9922d
determine @children dynamically based on attribute names, instead of manual bookkeeping
2010-05-10 20:58:01 +10:00
Jeremy Ashkenas
9a7420ccd0
adding support for calling variadic functions with less than the requested number of arguments.
2010-05-08 12:44:54 -04:00
Jeremy Ashkenas
be72120311
further minor cleanup to varargs
2010-05-08 12:20:14 -04:00
Jeremy Ashkenas
c452c3a101
minor cleanup to varargs
2010-05-08 12:15:47 -04:00
Tim Jones
0b3bb66708
Added safe soaking on non-existent variables.
2010-05-05 21:58:48 +12:00
Tim Jones
ae70d10996
Removing obsolete delete calls.
2010-05-03 21:17:30 -04:00
Tim Jones
52e6399e02
Added missing or to IndexNode.
2010-05-03 21:17:23 -04:00
Tim Jones
ac05f62f2f
Wrapping all soaked chains that are involved in operations.
2010-05-03 21:17:16 -04:00
Tim Jones
4d935efd09
Stop anonymous supers.
2010-05-03 21:16:50 -04:00
gfxmonk
c8e0f8b149
Cleaned up IfNodes
...
- renamed rewrite_condition() to switches_over(),
and @switcher to @switch_subject
- removed unused else_body constructor parameter, as well
as unnecessary push() method
- ensure both @body and @else_body are always Expressions
(previously they could be either Expressions or IfNode)
2010-05-02 00:39:34 +10:00
Dan Holmsand
144c096ae6
Remove unused variable index_var from for loops
2010-04-30 09:48:30 +02:00
Jeremy Ashkenas
adbcd320b2
adding until loops as the inverse of while loops
2010-04-28 22:08:00 -04:00
Jeremy Ashkenas
17ba44056e
changing 'filter' to 'guard' to get around Express' clobbering of Object.prototype.
2010-04-28 21:46:47 -04:00
Jeremy Ashkenas
502abade7c
rewriting the compiler using 'unless' blocks where appropriate.
2010-04-27 19:38:24 -04:00
Jeremy Ashkenas
b5606a247d
adding pattern matching for comprehensions.
2010-04-26 23:46:35 -04:00
Jeremy Ashkenas
d62baf5a5d
Merge branch 'for_destructuring' of git://github.com/StanAngeloff/coffee-script
2010-04-26 23:34:07 -04:00
Stan Angeloff
76f9596f22
Cleaning up.
2010-04-26 21:54:31 +03:00
Stan Angeloff
2a3a713811
Allowing pattern matching within for..loops
2010-04-26 21:35:35 +03:00
Tim Jones
95367a4a63
Fixing silly mistake with the comments.
2010-04-26 16:00:12 +12:00
Tim Jones
8950c3c4c8
Fixing invalid pattern matching and object creation.
2010-04-26 15:54:47 +12:00
Jeremy Ashkenas
2d1abd099d
rewriting the Lexer, CommandLine, Nodes, and Rewriter to take advantage of the new DRY object pattern matching.
2010-04-25 22:29:43 -04:00
Jeremy Ashkenas
a894db35fd
Got the DRY object pattern matching style working properly, from Harmony. {name, age}: person now works correctly.
2010-04-25 22:21:53 -04:00
Jeremy Ashkenas
ca4ea7649d
Throwing an error when pattern matching has a non-identifier on the left-hand side.
2010-04-25 11:22:15 -04:00
Jeremy Ashkenas
08c877ec7b
Fixing string keys in pattern matching on objects (ticket 325)
2010-04-25 11:07:09 -04:00
Jeremy Ashkenas
1438cecfad
Fixing splats-with-super()-in-classes, an oversight.
2010-04-24 15:57:15 -04:00
Jeremy Ashkenas
065bf54094
generated closures should only call() or apply() when necessary.
2010-04-10 14:40:05 -04:00
Jeremy Ashkenas
f36acc27e5
safely preserving the arguments object through generated closure wrappers.
2010-04-10 14:20:32 -04:00
Chris Lloyd
19ed63129e
Interpolated strings are expressions.
2010-04-04 17:05:52 +10:00
Jeremy Ashkenas
ad1c5e1884
merging non-func-constructor-fix, but a little more forgiving.
2010-04-03 14:53:26 -04:00
Stan Angeloff
9958cedd89
Throwing proper error when "constructor" is not a function within a class body.
2010-04-03 21:43:42 +03:00
Jeremy Ashkenas
44765907b3
tiny tweak
2010-04-03 11:16:49 -04:00
Jeremy Ashkenas
3605168e85
fixing single evaluation of functions used in chained comparisons wrapped in parentheses.
2010-03-31 22:48:47 -04:00