aboutsummaryrefslogtreecommitdiffstats
path: root/test/prism/snapshots/xstring.txt
diff options
context:
space:
mode:
authorKoichi ITO <koic.ito@gmail.com>2024-03-13 02:05:57 +0900
committergit <svn-admin@ruby-lang.org>2024-03-12 17:33:14 +0000
commitf8cab4ef8e214dc05efe8a0d4178864bce3b790a (patch)
tree27708629dd6957888f51fe91dc02f016afe51614 /test/prism/snapshots/xstring.txt
parent83790e5fe1e254c315552a6927891ed697da590a (diff)
downloadruby-f8cab4ef8e214dc05efe8a0d4178864bce3b790a.tar.gz
[ruby/prism] Fix a token incompatibility for `Prism::Translation::Parser::Lexer`
In practice, the `BACKTICK` is mapped either as `:tXSTRING_BEG` or `:tBACK_REF2`. The former is used in xstrings like `` `foo` ``, while the latter is utilized as a back reference in contexts like `` A::` ``. This PR will make corrections to differentiate the use of `BACKTICK`. This mistake was discovered through the investigation of xstring.txt file. The PR will run tests from xstring.txt file except for `` `f\oo` ``, which will still fail, hence it will be separated into xstring_with_backslash.txt file. This separation will facilitate addressing the correction at a different time. https://github.com/ruby/prism/commit/49ad8df40a
Diffstat (limited to 'test/prism/snapshots/xstring.txt')
-rw-r--r--test/prism/snapshots/xstring.txt20
1 files changed, 7 insertions, 13 deletions
diff --git a/test/prism/snapshots/xstring.txt b/test/prism/snapshots/xstring.txt
index 325a39afa5..0a9d075818 100644
--- a/test/prism/snapshots/xstring.txt
+++ b/test/prism/snapshots/xstring.txt
@@ -1,8 +1,8 @@
-@ ProgramNode (location: (1,0)-(7,5))
+@ ProgramNode (location: (1,0)-(5,5))
├── locals: []
└── statements:
- @ StatementsNode (location: (1,0)-(7,5))
- └── body: (length: 4)
+ @ StatementsNode (location: (1,0)-(5,5))
+ └── body: (length: 3)
├── @ XStringNode (location: (1,0)-(1,7))
│ ├── flags: ∅
│ ├── opening_loc: (1,0)-(1,3) = "%x["
@@ -41,15 +41,9 @@
│ │ ├── closing_loc: ∅
│ │ └── unescaped: " baz"
│ └── closing_loc: (3,15)-(3,16) = "`"
- ├── @ XStringNode (location: (5,0)-(5,6))
- │ ├── flags: ∅
- │ ├── opening_loc: (5,0)-(5,1) = "`"
- │ ├── content_loc: (5,1)-(5,5) = "f\\oo"
- │ ├── closing_loc: (5,5)-(5,6) = "`"
- │ └── unescaped: "foo"
- └── @ XStringNode (location: (7,0)-(7,5))
+ └── @ XStringNode (location: (5,0)-(5,5))
├── flags: ∅
- ├── opening_loc: (7,0)-(7,1) = "`"
- ├── content_loc: (7,1)-(7,4) = "foo"
- ├── closing_loc: (7,4)-(7,5) = "`"
+ ├── opening_loc: (5,0)-(5,1) = "`"
+ ├── content_loc: (5,1)-(5,4) = "foo"
+ ├── closing_loc: (5,4)-(5,5) = "`"
└── unescaped: "foo"