class Iba::InstanceVariableExpression

Public Class Methods

new(ivar_name) click to toggle source
# File lib/iba.rb, line 137
def initialize ivar_name
  @_ivar_name = ivar_name
end

Public Instance Methods

_evaluate(bnd) click to toggle source
# File lib/iba.rb, line 145
def _evaluate bnd
  bnd.receiver.instance_variable_get @_ivar_name
end
_to_s() click to toggle source
# File lib/iba.rb, line 141
def _to_s
  @_ivar_name.to_s
end