mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
58 lines
1.4 KiB
CoffeeScript
58 lines
1.4 KiB
CoffeeScript
# Ensure that carriage returns don't break compilation on Windows.
|
|
|
|
js: CoffeeScript.compile("one\r\ntwo", {no_wrap: on})
|
|
|
|
ok js is "one;\ntwo;"
|
|
|
|
|
|
# Try out language extensions to CoffeeScript.
|
|
|
|
# Create the Node were going to add -- a literal syntax for splitting
|
|
# strings into letters.
|
|
class SplitNode extends BaseNode
|
|
type: 'Split'
|
|
|
|
constructor: (variable) ->
|
|
@variable: variable
|
|
|
|
compile_node: (o) ->
|
|
"'${@variable}'.split('')"
|
|
|
|
# Extend CoffeeScript with our lexing function that matches --wordgoeshere--
|
|
# and creates a SplitNode.
|
|
CoffeeScript.extend ->
|
|
return false unless variable: @match(/^--(\w+)--/, 1)
|
|
@i += variable.length + 4
|
|
@token 'EXTENSION', new SplitNode(variable)
|
|
true
|
|
|
|
# Compile with the extension.
|
|
js: CoffeeScript.compile 'return --tobesplit--', {no_wrap: on}
|
|
|
|
ok js is "return 'tobesplit'.split('');"
|
|
|
|
|
|
# Let's try a different extension, for Ruby-style array literals.
|
|
|
|
class WordArrayNode extends BaseNode
|
|
type: 'WordArray'
|
|
|
|
constructor: (words) ->
|
|
@words: words
|
|
|
|
compile_node: (o) ->
|
|
strings = ("\"$word\"" for word in @words).join ', '
|
|
"[$strings]"
|
|
|
|
CoffeeScript.extend ->
|
|
return false unless words: @chunk.match(/^%w\{(.*?)\}/)
|
|
@i += words[0].length
|
|
@token 'EXTENSION', new WordArrayNode(words[1].split(/\s+/))
|
|
true
|
|
|
|
js: CoffeeScript.compile 'puts %w{one two three}', {no_wrap: on}
|
|
|
|
ok js is 'puts(["one", "two", "three"]);'
|
|
|
|
Lexer.extensions: []
|
|
|