Coffeescript allows multiline strings. The codo parser throws an error if the source contains a multiline string with interpolation.
class Test
constructor: (a, b) ->
@thing = "#{a} >
#{b}"
Gives the error:
error: Cannot parse Coffee file Test.coffee: missing "
The same code passes through the CoffeeScript compiler (and coffeelint) without error.