moved the coffeescript extension over from .cs to .coffee -- let's leave C# in peace. Changed array comprehensions to always return their mapped result, even when unassigned

This commit is contained in:
Jeremy Ashkenas
2009-12-25 14:18:05 -08:00
parent e494d520ea
commit d46bf8ee71
51 changed files with 127 additions and 147 deletions

View File

@@ -43,7 +43,7 @@ class LexerTest < Test::Unit::TestCase
end
def test_lexing
tokens = @lex.tokenize(File.read('test/fixtures/each.cs'))
tokens = @lex.tokenize(File.read('test/fixtures/each.coffee'))
assert tokens.inspect == File.read('test/fixtures/each.tokens')
end