summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiroshi SHIBATA <[email protected]>2024-09-17 15:37:20 +0900
committerHiroshi SHIBATA <[email protected]>2024-09-17 15:37:20 +0900
commitc0116860ba2e1d3efed71de35942f0ac298bc8e6 (patch)
tree7afa679fcc7da05f3f65ca1cc06ed6e402c130e3
parentd81b0588bb3c97167d1f7e2d2a74185e0c19b68c (diff)
Removed accidentally commit for snapshot file of prism
-rw-r--r--test/prism/snapshots/regex_escape_encoding.txt43
1 files changed, 0 insertions, 43 deletions
diff --git a/test/prism/snapshots/regex_escape_encoding.txt b/test/prism/snapshots/regex_escape_encoding.txt
deleted file mode 100644
index 0f2dcc2c54..0000000000
--- a/test/prism/snapshots/regex_escape_encoding.txt
+++ /dev/null
@@ -1,43 +0,0 @@
-@ ProgramNode (location: (2,0)-(3,21))
-├── flags: ∅
-├── locals: [:str]
-└── statements:
- @ StatementsNode (location: (2,0)-(3,21))
- ├── flags: ∅
- └── body: (length: 2)
- ├── @ LocalVariableWriteNode (location: (2,0)-(2,18))
- │ ├── flags: newline
- │ ├── name: :str
- │ ├── depth: 0
- │ ├── name_loc: (2,0)-(2,3) = "str"
- │ ├── value:
- │ │ @ StringNode (location: (2,6)-(2,18))
- │ │ ├── flags: forced_binary_encoding
- │ │ ├── opening_loc: (2,6)-(2,7) = "\""
- │ │ ├── content_loc: (2,7)-(2,17) = "hello \\xFC"
- │ │ ├── closing_loc: (2,17)-(2,18) = "\""
- │ │ └── unescaped: "hello \xFC"
- │ └── operator_loc: (2,4)-(2,5) = "="
- └── @ CallNode (location: (3,0)-(3,21))
- ├── flags: newline
- ├── receiver:
- │ @ LocalVariableReadNode (location: (3,0)-(3,3))
- │ ├── flags: ∅
- │ ├── name: :str
- │ └── depth: 0
- ├── call_operator_loc: ∅
- ├── name: :=~
- ├── message_loc: (3,4)-(3,6) = "=~"
- ├── opening_loc: ∅
- ├── arguments:
- │ @ ArgumentsNode (location: (3,7)-(3,21))
- │ ├── flags: ∅
- │ └── arguments: (length: 1)
- │ └── @ RegularExpressionNode (location: (3,7)-(3,21))
- │ ├── flags: static_literal, forced_utf8_encoding
- │ ├── opening_loc: (3,7)-(3,8) = "/"
- │ ├── content_loc: (3,8)-(3,20) = "hello \\u{fc}"
- │ ├── closing_loc: (3,20)-(3,21) = "/"
- │ └── unescaped: "hello \\u{fc}"
- ├── closing_loc: ∅
- └── block: ∅