class Dramaturg::Value::Base

Public Class Methods

new(value) click to toggle source
# File lib/dramaturg/value/base.rb, line 4
def initialize(value)
  @value = value
end

Public Instance Methods

for_debug_prompt() click to toggle source
# File lib/dramaturg/value/base.rb, line 12
def for_debug_prompt
  @value
end
for_prompt() click to toggle source
# File lib/dramaturg/value/base.rb, line 8
def for_prompt
  @value
end
for_run() click to toggle source
# File lib/dramaturg/value/base.rb, line 16
def for_run
  @value
end
to_s() click to toggle source

should match parser input

# File lib/dramaturg/value/base.rb, line 26
def to_s
  for_prompt
end