Class: Peruby::Op::ReadlineCondition
Overview
Perl's readline-in-while shorthand assigns $_ and tests definedness.
Instance Method Summary collapse
-
#initialize(readline) ⇒ ReadlineCondition
constructor
A new instance of ReadlineCondition.
- #run(env, context) ⇒ Object
Methods inherited from Base
#argument_cells, #local_slot, #lvalue, #run_subroutine, #to_callable, #warning_directive?
Constructor Details
#initialize(readline) ⇒ ReadlineCondition
Returns a new instance of ReadlineCondition.
101 102 103 |
# File 'lib/peruby/op/io.rb', line 101 def initialize(readline) @readline = readline end |