Class: Delorean::BlockParameter
Direct Known Subclasses
Instance Method Summary collapse
- #check(context) ⇒ Object
- #force_def(context) ⇒ Object
- #force_undef(context) ⇒ Object
- #rewrite(context) ⇒ Object
Instance Method Details
#check(context) ⇒ Object
422 423 424 425 |
# File 'lib/delorean/nodes.rb', line 422 def check(context) context.parse_define_var(i.text_value) context.parse_undef_var(i.text_value) end |
#force_def(context) ⇒ Object
437 438 439 |
# File 'lib/delorean/nodes.rb', line 437 def force_def(context) context.parse_define_var(i.text_value) end |
#force_undef(context) ⇒ Object
441 442 443 |
# File 'lib/delorean/nodes.rb', line 441 def force_undef(context) context.parse_undef_var(i.text_value) end |