Issue #795 -- clean up low precedence levels

This commit is contained in:
Jeremy Ashkenas
2010-10-24 14:02:59 -04:00
parent 3a64e6a711
commit d6d46697d0
6 changed files with 20 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
# Expression conversion under explicit returns.
first = ->
return 'do' for x in [1,2,3]
return ('do' for x in [1,2,3])
second = ->
return ['re' for x in [1,2,3]]