diff options
| author | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-08-25 02:20:39 +0900 |
|---|---|---|
| committer | Nobuyoshi Nakada <nobu@ruby-lang.org> | 2023-08-25 20:07:10 +0900 |
| commit | 1f76e42b85be4031bdedcc3e457e8fa949195304 (patch) | |
| tree | d6a8416d0f1c9c1fba5a11bcecb2e50b9abae644 /test/ruby | |
| parent | 023b8ddd220f2451b51490ee2e48dedb211e2d1b (diff) | |
[Bug #19848] Flush BOM
The token just after BOM needs to position at column 0, so that the
indentation matches closing line.
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8281
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_ast.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ruby/test_ast.rb b/test/ruby/test_ast.rb index 8b565f531d..b4bcc03cfe 100644 --- a/test/ruby/test_ast.rb +++ b/test/ruby/test_ast.rb @@ -1082,6 +1082,12 @@ dummy assert_equal([[0, :backslash, "\\", [1, 0, 1, 1]]], node.children.last.tokens) end + def test_with_bom + assert_error_tolerant("\u{feff}nil", <<~EXP) + (SCOPE@1:0-1:3 tbl: [] args: nil body: (NIL@1:0-1:3)) + EXP + end + def assert_error_tolerant(src, expected, keep_tokens: false) begin verbose_bak, $VERBOSE = $VERBOSE, false |
