summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/prism/fixtures/defined.txt3
-rw-r--r--test/prism/snapshots/defined.txt29
2 files changed, 23 insertions, 9 deletions
diff --git a/test/prism/fixtures/defined.txt b/test/prism/fixtures/defined.txt
index 9cf153a853..247fa94e3a 100644
--- a/test/prism/fixtures/defined.txt
+++ b/test/prism/fixtures/defined.txt
@@ -5,3 +5,6 @@ defined?(x %= 2)
defined?(foo and bar)
defined? 1
+
+defined?("foo"
+)
diff --git a/test/prism/snapshots/defined.txt b/test/prism/snapshots/defined.txt
index 1d52354f68..e4f872bc8f 100644
--- a/test/prism/snapshots/defined.txt
+++ b/test/prism/snapshots/defined.txt
@@ -1,8 +1,8 @@
-@ ProgramNode (location: (1,0)-(7,10))
+@ ProgramNode (location: (1,0)-(10,1))
├── locals: [:x]
└── statements:
- @ StatementsNode (location: (1,0)-(7,10))
- └── body: (length: 4)
+ @ StatementsNode (location: (1,0)-(10,1))
+ └── body: (length: 5)
├── @ AndNode (location: (1,0)-(1,25))
│ ├── left:
│ │ @ DefinedNode (location: (1,0)-(1,10))
@@ -64,10 +64,21 @@
│ │ └── operator_loc: (5,13)-(5,16) = "and"
│ ├── rparen_loc: (5,20)-(5,21) = ")"
│ └── keyword_loc: (5,0)-(5,8) = "defined?"
- └── @ DefinedNode (location: (7,0)-(7,10))
- ├── lparen_loc: ∅
+ ├── @ DefinedNode (location: (7,0)-(7,10))
+ │ ├── lparen_loc: ∅
+ │ ├── value:
+ │ │ @ IntegerNode (location: (7,9)-(7,10))
+ │ │ └── flags: decimal
+ │ ├── rparen_loc: ∅
+ │ └── keyword_loc: (7,0)-(7,8) = "defined?"
+ └── @ DefinedNode (location: (9,0)-(10,1))
+ ├── lparen_loc: (9,8)-(9,9) = "("
├── value:
- │ @ IntegerNode (location: (7,9)-(7,10))
- │ └── flags: decimal
- ├── rparen_loc: ∅
- └── keyword_loc: (7,0)-(7,8) = "defined?"
+ │ @ StringNode (location: (9,9)-(9,14))
+ │ ├── flags: ∅
+ │ ├── opening_loc: (9,9)-(9,10) = "\""
+ │ ├── content_loc: (9,10)-(9,13) = "foo"
+ │ ├── closing_loc: (9,13)-(9,14) = "\""
+ │ └── unescaped: "foo"
+ ├── rparen_loc: (10,0)-(10,1) = ")"
+ └── keyword_loc: (9,0)-(9,8) = "defined?"