Class: Stupidedi::Values::TableVal
Instance Attribute Summary collapse
Instance Method Summary
collapse
#leaf?
Methods inherited from AbstractVal
#blank?, #characters, #component?, #composite?, #element?, #empty?, #functional_group?, #interchange?, #invalid?, #loop?, #present?, #repeated?, #segment?, #separator?, #simple?, #size, #transaction_set?, #transmission?, #valid?
Methods included from Color
ansi, #ansi
Constructor Details
#initialize(definition, children) ⇒ TableVal
Returns a new instance of TableVal.
19
20
21
22
|
# File 'lib/stupidedi/values/table_val.rb', line 19
def initialize(definition, children)
@definition, @children =
definition, children
end
|
Instance Attribute Details
15
16
17
|
# File 'lib/stupidedi/values/table_val.rb', line 15
def children
@children
end
|
#definition ⇒ TableDef
12
13
14
|
# File 'lib/stupidedi/values/table_val.rb', line 12
def definition
@definition
end
|
Instance Method Details
#==(other) ⇒ Boolean
62
63
64
65
66
|
# File 'lib/stupidedi/values/table_val.rb', line 62
def ==(other)
eql?(other) or
(other.definition == @definition and
other.children == @children)
end
|
#copy(changes = {}) ⇒ TableVal
25
26
27
28
29
|
# File 'lib/stupidedi/values/table_val.rb', line 25
def copy(changes = {})
TableVal.new \
changes.fetch(:definition, @definition),
changes.fetch(:children, @children)
end
|
#inspect ⇒ String
57
58
59
|
# File 'lib/stupidedi/values/table_val.rb', line 57
def inspect
ansi.table("Table") << "(#{@children.map(&:inspect).join(', ')})"
end
|
#pretty_print(q) ⇒ void
This method returns an undefined value.
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
# File 'lib/stupidedi/values/table_val.rb', line 38
def pretty_print(q)
id = @definition.try do |d|
ansi.bold("[#{d.id.to_s}]")
end
q.text(ansi.table("TableVal#{id}"))
q.group(2, "(", ")") do
q.breakable ""
@children.each do |e|
unless q.current_group.first?
q.text ","
q.breakable
end
q.pp e
end
end
end
|
#table? ⇒ Object
33
34
35
|
# File 'lib/stupidedi/values/table_val.rb', line 33
def table?
true
end
|