Class: Stupidedi::Values::TableVal

Inherits:
AbstractVal show all
Extended by:
Forwardable
Includes:
SegmentValGroup
Defined in:
lib/stupidedi/values/table_val.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SegmentValGroup

#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.



16
17
18
19
# File 'lib/stupidedi/values/table_val.rb', line 16

def initialize(definition, children)
  @definition, @children =
    definition, children
end

Instance Attribute Details

#childrenArray<SegmentVal, LoopVal> (readonly)

Returns:



11
12
13
# File 'lib/stupidedi/values/table_val.rb', line 11

def children
  @children
end

#definitionTableDef (readonly)

Returns:

  • (TableDef)


8
9
10
# File 'lib/stupidedi/values/table_val.rb', line 8

def definition
  @definition
end

Instance Method Details

#==(other) ⇒ Boolean

Returns:

  • (Boolean)


59
60
61
62
63
# File 'lib/stupidedi/values/table_val.rb', line 59

def ==(other)
  eql?(other) or
   (other.definition == @definition and
    other.children   == @children)
end

#copy(changes = {}) ⇒ TableVal

Returns:



22
23
24
25
26
# File 'lib/stupidedi/values/table_val.rb', line 22

def copy(changes = {})
  TableVal.new \
    changes.fetch(:definition, @definition),
    changes.fetch(:children, @children)
end

#inspectString

Returns:



54
55
56
# File 'lib/stupidedi/values/table_val.rb', line 54

def inspect
  ansi.table("Table") << "(#{@children.map(&:inspect).join(', ')})"
end

#pretty_print(q) ⇒ void

This method returns an undefined value.



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/stupidedi/values/table_val.rb', line 35

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

Returns:

  • true



30
31
32
# File 'lib/stupidedi/values/table_val.rb', line 30

def table?
  true
end