2013-02-25 23:30:23 -05:00
|
|
|
# Error Formating
|
|
|
|
# ---------------
|
|
|
|
|
|
|
|
# Ensure that errors of different kinds (lexer, parser and compiler) are shown
|
|
|
|
# in a consistent way.
|
|
|
|
|
|
|
|
assertErrorFormat = (code, expectedErrorFormat) ->
|
2013-03-21 02:11:31 -04:00
|
|
|
throws (-> CoffeeScript.run code), (err) ->
|
2013-07-31 07:27:49 -04:00
|
|
|
err.colorful = no
|
|
|
|
eq expectedErrorFormat, "#{err}"
|
2013-02-25 23:30:23 -05:00
|
|
|
yes
|
|
|
|
|
|
|
|
test "lexer errors formating", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
normalObject = {}
|
|
|
|
insideOutObject = }{
|
|
|
|
''',
|
|
|
|
'''
|
2013-07-31 07:27:49 -04:00
|
|
|
[stdin]:2:19: error: unmatched }
|
2013-02-25 23:30:23 -05:00
|
|
|
insideOutObject = }{
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "parser error formating", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
foo in bar or in baz
|
|
|
|
''',
|
|
|
|
'''
|
2014-01-21 21:44:50 -05:00
|
|
|
[stdin]:1:15: error: unexpected in
|
2013-02-25 23:30:23 -05:00
|
|
|
foo in bar or in baz
|
|
|
|
^^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "compiler error formatting", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
evil = (foo, eval, bar) ->
|
|
|
|
''',
|
|
|
|
'''
|
2013-07-31 07:27:49 -04:00
|
|
|
[stdin]:1:14: error: parameter name "eval" is not allowed
|
2013-02-25 23:30:23 -05:00
|
|
|
evil = (foo, eval, bar) ->
|
|
|
|
^^^^
|
2013-03-21 02:11:31 -04:00
|
|
|
'''
|
|
|
|
|
2014-07-16 05:50:15 -04:00
|
|
|
test "compiler error formatting with mixed tab and space", ->
|
|
|
|
assertErrorFormat """
|
|
|
|
\t if a
|
|
|
|
\t test
|
|
|
|
""",
|
|
|
|
'''
|
|
|
|
[stdin]:1:4: error: unexpected if
|
|
|
|
\t if a
|
|
|
|
\t ^^
|
|
|
|
'''
|
|
|
|
|
2013-06-13 15:54:20 -04:00
|
|
|
|
2014-01-27 11:55:20 -05:00
|
|
|
if require?
|
|
|
|
fs = require 'fs'
|
|
|
|
path = require 'path'
|
2013-03-21 02:11:31 -04:00
|
|
|
|
2014-01-27 11:55:20 -05:00
|
|
|
test "patchStackTrace line patching", ->
|
|
|
|
err = new Error 'error'
|
|
|
|
ok err.stack.match /test[\/\\]error_messages\.coffee:\d+:\d+\b/
|
2013-03-21 02:11:31 -04:00
|
|
|
|
2014-02-07 07:01:01 -05:00
|
|
|
test "patchStackTrace stack prelude consistent with V8", ->
|
|
|
|
err = new Error
|
|
|
|
ok err.stack.match /^Error\n/ # Notice no colon when no message.
|
|
|
|
|
|
|
|
err = new Error 'error'
|
|
|
|
ok err.stack.match /^Error: error\n/
|
|
|
|
|
2014-01-27 11:55:20 -05:00
|
|
|
test "#2849: compilation error in a require()d file", ->
|
|
|
|
# Create a temporary file to require().
|
|
|
|
ok not fs.existsSync 'test/syntax-error.coffee'
|
|
|
|
fs.writeFileSync 'test/syntax-error.coffee', 'foo in bar or in baz'
|
2014-02-07 07:01:01 -05:00
|
|
|
|
2014-01-27 11:55:20 -05:00
|
|
|
try
|
|
|
|
assertErrorFormat '''
|
|
|
|
require './test/syntax-error'
|
|
|
|
''',
|
|
|
|
"""
|
|
|
|
#{path.join __dirname, 'syntax-error.coffee'}:1:15: error: unexpected in
|
|
|
|
foo in bar or in baz
|
|
|
|
^^
|
|
|
|
"""
|
|
|
|
finally
|
|
|
|
fs.unlink 'test/syntax-error.coffee'
|
2014-01-21 21:44:50 -05:00
|
|
|
|
2014-02-07 07:01:01 -05:00
|
|
|
|
2014-01-21 21:44:50 -05:00
|
|
|
test "#1096: unexpected generated tokens", ->
|
|
|
|
# Unexpected interpolation
|
|
|
|
assertErrorFormat '{"#{key}": val}', '''
|
Refactor interpolation (and string and regex) handling in lexer
- Fix #3394: Unclosed single-quoted strings (both regular ones and heredocs)
used to pass through the lexer, causing a parsing error later, while
double-quoted strings caused an error already in the lexing phase. Now both
single and double-quoted unclosed strings error out in the lexer (which is the
more logical option) with consistent error messages. This also fixes the last
comment by @satyr in #3301.
- Similar to the above, unclosed heregexes also used to pass through the lexer
and not error until in the parsing phase, which resulted in confusing error
messages. This has been fixed, too.
- Fix #3348, by adding passing tests.
- Fix #3529: If a string starts with an interpolation, an empty string is no
longer emitted before the interpolation (unless it is needed to coerce the
interpolation into a string).
- Block comments cannot contain `*/`. Now the error message also shows exactly
where the offending `*/`. This improvement might seem unrelated, but I had to
touch that code anyway to refactor string and regex related code, and the
change was very trivial. Moreover, it's consistent with the next two points.
- Regexes cannot start with `*`. Now the error message also shows exactly where
the offending `*` is. (It might actually not be exatly at the start in
heregexes.) It is a very minor improvement, but it was trivial to add.
- Octal escapes in strings are forbidden in CoffeeScript (just like in
JavaScript strict mode). However, this used to be the case only for regular
strings. Now they are also forbidden in heredocs. Moreover, the errors now
point at the offending octal escape.
- Invalid regex flags are no longer allowed. This includes repeated modifiers
and unknown ones. Moreover, invalid modifiers do not stop a heregex from
being matched, which results in better error messages.
- Fix #3621: `///a#{1}///` compiles to `RegExp("a" + 1)`. So does
`RegExp("a#{1}")`. Still, those two code snippets used to generate different
tokens, which is a bit weird, but more importantly causes problems for
coffeelint (see clutchski/coffeelint#340). This required lots of tests in
test/location.coffee to be updated. Note that some updates to those tests are
unrelated to this point; some have been updated to be more consistent (I
discovered this because the refactored code happened to be seemingly more
correct).
- Regular regex literals used to erraneously allow newlines to be escaped,
causing invalid JavaScript output. This has been fixed.
- Heregexes may now be completely empty (`//////`), instead of erroring out with
a confusing message.
- Fix #2388: Heredocs and heregexes used to be lexed simply, which meant that
you couldn't nest a heredoc within a heredoc (double-quoted, that is) or a
heregex inside a heregex.
- Fix #2321: If you used division inside interpolation and then a slash later in
the string containing that interpolation, the division slash and the latter
slash was erraneously matched as a regex. This has been fixed.
- Indentation inside interpolations in heredocs no longer affect how much
indentation is removed from each line of the heredoc (which is more
intuitive).
- Whitespace is now correctly trimmed from the start and end of strings in a few
edge cases.
- Last but not least, the lexing of interpolated strings now seems to be more
efficient. For a regular double-quoted string, we used to use a custom
function to find the end of it (taking interpolations and interpolations
within interpolations etc. into account). Then we used to re-find the
interpolations and recursively lex their contents. In effect, the same string
was processed twice, or even more in the case of deeper nesting of
interpolations. Now the same string is processed just once.
- Code duplication between regular strings, heredocs, regular regexes and
heregexes has been reduced.
- The above two points should result in more easily read code, too.
2015-01-03 17:40:43 -05:00
|
|
|
[stdin]:1:3: error: unexpected interpolation
|
2014-01-21 21:44:50 -05:00
|
|
|
{"#{key}": val}
|
|
|
|
^^
|
|
|
|
'''
|
|
|
|
# Implicit ends
|
|
|
|
assertErrorFormat 'a:, b', '''
|
|
|
|
[stdin]:1:3: error: unexpected ,
|
|
|
|
a:, b
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
# Explicit ends
|
|
|
|
assertErrorFormat '(a:)', '''
|
|
|
|
[stdin]:1:4: error: unexpected )
|
|
|
|
(a:)
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
# Unexpected end of file
|
|
|
|
assertErrorFormat 'a:', '''
|
|
|
|
[stdin]:1:3: error: unexpected end of input
|
|
|
|
a:
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
# Unexpected implicit object
|
|
|
|
assertErrorFormat '''
|
|
|
|
for i in [1]:
|
|
|
|
1
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:13: error: unexpected :
|
|
|
|
for i in [1]:
|
|
|
|
^
|
|
|
|
'''
|
2014-01-26 00:25:13 -05:00
|
|
|
|
|
|
|
test "#3325: implicit indentation errors", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
i for i in a then i
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:14: error: unexpected then
|
|
|
|
i for i in a then i
|
|
|
|
^^^^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "explicit indentation errors", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
a = b
|
|
|
|
c
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:1: error: unexpected indentation
|
|
|
|
c
|
|
|
|
^^
|
|
|
|
'''
|
Refactor interpolation (and string and regex) handling in lexer
- Fix #3394: Unclosed single-quoted strings (both regular ones and heredocs)
used to pass through the lexer, causing a parsing error later, while
double-quoted strings caused an error already in the lexing phase. Now both
single and double-quoted unclosed strings error out in the lexer (which is the
more logical option) with consistent error messages. This also fixes the last
comment by @satyr in #3301.
- Similar to the above, unclosed heregexes also used to pass through the lexer
and not error until in the parsing phase, which resulted in confusing error
messages. This has been fixed, too.
- Fix #3348, by adding passing tests.
- Fix #3529: If a string starts with an interpolation, an empty string is no
longer emitted before the interpolation (unless it is needed to coerce the
interpolation into a string).
- Block comments cannot contain `*/`. Now the error message also shows exactly
where the offending `*/`. This improvement might seem unrelated, but I had to
touch that code anyway to refactor string and regex related code, and the
change was very trivial. Moreover, it's consistent with the next two points.
- Regexes cannot start with `*`. Now the error message also shows exactly where
the offending `*` is. (It might actually not be exatly at the start in
heregexes.) It is a very minor improvement, but it was trivial to add.
- Octal escapes in strings are forbidden in CoffeeScript (just like in
JavaScript strict mode). However, this used to be the case only for regular
strings. Now they are also forbidden in heredocs. Moreover, the errors now
point at the offending octal escape.
- Invalid regex flags are no longer allowed. This includes repeated modifiers
and unknown ones. Moreover, invalid modifiers do not stop a heregex from
being matched, which results in better error messages.
- Fix #3621: `///a#{1}///` compiles to `RegExp("a" + 1)`. So does
`RegExp("a#{1}")`. Still, those two code snippets used to generate different
tokens, which is a bit weird, but more importantly causes problems for
coffeelint (see clutchski/coffeelint#340). This required lots of tests in
test/location.coffee to be updated. Note that some updates to those tests are
unrelated to this point; some have been updated to be more consistent (I
discovered this because the refactored code happened to be seemingly more
correct).
- Regular regex literals used to erraneously allow newlines to be escaped,
causing invalid JavaScript output. This has been fixed.
- Heregexes may now be completely empty (`//////`), instead of erroring out with
a confusing message.
- Fix #2388: Heredocs and heregexes used to be lexed simply, which meant that
you couldn't nest a heredoc within a heredoc (double-quoted, that is) or a
heregex inside a heregex.
- Fix #2321: If you used division inside interpolation and then a slash later in
the string containing that interpolation, the division slash and the latter
slash was erraneously matched as a regex. This has been fixed.
- Indentation inside interpolations in heredocs no longer affect how much
indentation is removed from each line of the heredoc (which is more
intuitive).
- Whitespace is now correctly trimmed from the start and end of strings in a few
edge cases.
- Last but not least, the lexing of interpolated strings now seems to be more
efficient. For a regular double-quoted string, we used to use a custom
function to find the end of it (taking interpolations and interpolations
within interpolations etc. into account). Then we used to re-find the
interpolations and recursively lex their contents. In effect, the same string
was processed twice, or even more in the case of deeper nesting of
interpolations. Now the same string is processed just once.
- Code duplication between regular strings, heredocs, regular regexes and
heregexes has been reduced.
- The above two points should result in more easily read code, too.
2015-01-03 17:40:43 -05:00
|
|
|
|
|
|
|
test "unclosed strings", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
'
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing '
|
|
|
|
'
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing "
|
|
|
|
"
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat """
|
|
|
|
'''
|
|
|
|
""", """
|
|
|
|
[stdin]:1:1: error: missing '''
|
|
|
|
'''
|
|
|
|
^
|
|
|
|
"""
|
|
|
|
assertErrorFormat '''
|
|
|
|
"""
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing """
|
|
|
|
"""
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"#{"
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:4: error: missing "
|
|
|
|
"#{"
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"""#{"
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:6: error: missing "
|
|
|
|
"""#{"
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"#{"""
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:4: error: missing """
|
|
|
|
"#{"""
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"""#{"""
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:6: error: missing """
|
|
|
|
"""#{"""
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
///#{"""
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:6: error: missing """
|
|
|
|
///#{"""
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"a
|
|
|
|
#{foo """
|
|
|
|
bar
|
|
|
|
#{ +'12 }
|
|
|
|
baz
|
|
|
|
"""} b"
|
|
|
|
''', '''
|
|
|
|
[stdin]:4:11: error: missing '
|
|
|
|
#{ +'12 }
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
# https://github.com/jashkenas/coffeescript/issues/3301#issuecomment-31735168
|
|
|
|
assertErrorFormat '''
|
|
|
|
# Note the double escaping; this would be `"""a\"""` real code.
|
|
|
|
"""a\\"""
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:1: error: missing """
|
|
|
|
"""a\\"""
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "unclosed heregexes", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
///
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing ///
|
|
|
|
///
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
# https://github.com/jashkenas/coffeescript/issues/3301#issuecomment-31735168
|
|
|
|
assertErrorFormat '''
|
|
|
|
# Note the double escaping; this would be `///a\///` real code.
|
|
|
|
///a\\///
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:1: error: missing ///
|
|
|
|
///a\\///
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "unexpected token after string", ->
|
|
|
|
# Parsing error.
|
|
|
|
assertErrorFormat '''
|
|
|
|
'foo'bar
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:6: error: unexpected bar
|
|
|
|
'foo'bar
|
|
|
|
^^^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"foo"bar
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:6: error: unexpected bar
|
|
|
|
"foo"bar
|
|
|
|
^^^
|
|
|
|
'''
|
|
|
|
# Lexing error.
|
|
|
|
assertErrorFormat '''
|
|
|
|
'foo'bar'
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:9: error: missing '
|
|
|
|
'foo'bar'
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"foo"bar"
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:9: error: missing "
|
|
|
|
"foo"bar"
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "#3348: Location data is wrong in interpolations with leading whitespace", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
"#{ {"#{key}": val} }"
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:7: error: unexpected interpolation
|
|
|
|
"#{ {"#{key}": val} }"
|
|
|
|
^^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "octal escapes", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
"a\\0\\tb\\\\\\07c"
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:10: error: octal escape sequences are not allowed \\07
|
|
|
|
"a\\0\\tb\\\\\\07c"
|
|
|
|
\ \ \ \ ^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "illegal herecomment", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
###
|
|
|
|
Regex: /a*/g
|
|
|
|
###
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:12: error: block comments cannot contain */
|
|
|
|
Regex: /a*/g
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "#1724: regular expressions beginning with *", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
/* foo/
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:2: error: regular expressions cannot begin with *
|
|
|
|
/* foo/
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
///
|
|
|
|
* foo
|
|
|
|
///
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:3: error: regular expressions cannot begin with *
|
|
|
|
* foo
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
|
|
|
|
test "invalid regex flags", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
/a/ii
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:4: error: invalid regular expression flags ii
|
|
|
|
/a/ii
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
/a/G
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:4: error: invalid regular expression flags G
|
|
|
|
/a/G
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
/a/gimi
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:4: error: invalid regular expression flags gimi
|
|
|
|
/a/gimi
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
/a/g_
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:4: error: invalid regular expression flags g_
|
|
|
|
/a/g_
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
///a///ii
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:8: error: invalid regular expression flags ii
|
|
|
|
///a///ii
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
doesNotThrow -> CoffeeScript.compile '/a/ymgi'
|
2015-01-03 18:28:23 -05:00
|
|
|
|
|
|
|
test "missing `)`, `}`, `]`", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
(
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing )
|
|
|
|
(
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
{
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing }
|
|
|
|
{
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
[
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing ]
|
|
|
|
[
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
obj = {a: [1, (2+
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:15: error: missing )
|
|
|
|
obj = {a: [1, (2+
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"#{
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:3: error: missing }
|
|
|
|
"#{
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
"""
|
|
|
|
foo#{ bar "#{1}"
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:7: error: missing }
|
|
|
|
foo#{ bar "#{1}"
|
|
|
|
^
|
|
|
|
'''
|
2015-01-09 19:48:00 -05:00
|
|
|
|
|
|
|
test "unclosed regexes", ->
|
|
|
|
assertErrorFormat '''
|
|
|
|
/
|
|
|
|
''', '''
|
|
|
|
[stdin]:1:1: error: missing / (unclosed regex)
|
|
|
|
/
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
# Note the double escaping; this would be `/a\/` real code.
|
|
|
|
/a\\/
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:1: error: missing / (unclosed regex)
|
|
|
|
/a\\/
|
|
|
|
^
|
|
|
|
'''
|
|
|
|
assertErrorFormat '''
|
|
|
|
/// ^
|
|
|
|
a #{""" ""#{if /[/].test "|" then 1 else 0}"" """}
|
|
|
|
///
|
|
|
|
''', '''
|
|
|
|
[stdin]:2:18: error: missing / (unclosed regex)
|
|
|
|
a #{""" ""#{if /[/].test "|" then 1 else 0}"" """}
|
|
|
|
^
|
|
|
|
'''
|