class Iba::LocalVariableExpression

Public Class Methods

new(lvar_name) click to toggle source
# File lib/iba.rb, line 151
def initialize lvar_name
  @_lvar_name = lvar_name
end

Public Instance Methods

_evaluate(bnd) click to toggle source
# File lib/iba.rb, line 159
def _evaluate bnd
  bnd.local_variable_get @_lvar_name
end
_to_s() click to toggle source
# File lib/iba.rb, line 155
def _to_s
  @_lvar_name.to_s
end