Class: Value

Inherits:
InstanceCall show all
Defined in:
lib/core/instance_call/instance_calls.rb

Instance Method Summary collapse

Methods inherited from InstanceCall

#closure, #describe, #destructive?, #requirements, #response, #to_declaration, #to_literal_string, #use, #valid_syntax?

Methods inherited from Array

#cauldron_method_calls, #contains?, #select_all, #to_declaration, #to_intrinsic, #to_literal, #to_var

Constructor Details

#initializeValue

Returns a new instance of Value.



3
4
5
# File 'lib/core/instance_call/instance_calls.rb', line 3

def initialize
  super
end

Instance Method Details

#copyObject



11
12
13
14
# File 'lib/core/instance_call/instance_calls.rb', line 11

def copy
  # TODO  Move this to the InstanceCall class
  return Value.new
end

#writeObject



7
8
9
# File 'lib/core/instance_call/instance_calls.rb', line 7

def write
  return '.value'
end