class Given::EvalErr

Public Class Methods

new(str) click to toggle source
  # File lib/given/evaluator.rb
4 def initialize(str)
5   @string = str
6 end

Public Instance Methods

inspect() click to toggle source
   # File lib/given/evaluator.rb
13 def inspect
14   @string
15 end
size() click to toggle source
  # File lib/given/evaluator.rb
7 def size
8   inspect.size
9 end
to_s() click to toggle source
   # File lib/given/evaluator.rb
10 def to_s
11   @string
12 end