[Prism] Implement defined? for PM_RATIONAL_NODE

Ruby code:

```ruby
defined?(1.2r)
```

Instructions:

```
"********* Ruby *************"
== disasm: #<ISeq:<compiled>@<compiled>:1 (1,0)-(59,16)>
0000 putobject                              "expression"              (  59)[Li]
0002 leave
"********* PRISM *************"
== disasm: #<ISeq:<compiled>@<compiled>:58 (58,0)-(58,16)>
0000 putobject                              "expression"              (  58)[Li]
0002 leave
```

Related: ruby/prism#2188
This commit is contained in:
eileencodes 2024-01-17 11:00:08 -05:00 committed by Kevin Newton
parent 913772a08a
commit d2000e0e6c
2 changed files with 2 additions and 0 deletions

View File

@ -2560,6 +2560,7 @@ pm_compile_defined_expr0(rb_iseq_t *iseq, const pm_node_t *node, LINK_ANCHOR *co
case PM_NEXT_NODE:
case PM_OR_NODE:
case PM_RANGE_NODE:
case PM_RATIONAL_NODE:
case PM_REDO_NODE:
case PM_REGULAR_EXPRESSION_NODE:
case PM_RETRY_NODE:

View File

@ -258,6 +258,7 @@ module Prism
assert_prism_eval("defined?(/(?<foo>bar)/ =~ 'barbar')")
assert_prism_eval("defined?(1 => 1)")
assert_prism_eval("defined?(module M; end)")
assert_prism_eval("defined?(1.2r)")
end
def test_GlobalVariableReadNode