Class: Stupidedi::Values::LoopVal
- Inherits:
-
AbstractVal
show all
- Includes:
- SegmentValGroup
- Defined in:
- lib/stupidedi/values/loop_val.rb
Overview
Instance Attribute Summary (collapse)
Instance Method Summary
(collapse)
#leaf?
Methods inherited from AbstractVal
#blank?, #characters, #component?, #composite?, #element?, #empty?, #functional_group?, #interchange?, #invalid?, #present?, #repeated?, #segment?, #separator?, #simple?, #size, #table?, #transaction_set?, #transmission?, #valid?
Methods included from Color
ansi, #ansi
Constructor Details
- (LoopVal) initialize(definition, children)
A new instance of LoopVal
19
20
21
22
|
# File 'lib/stupidedi/values/loop_val.rb', line 19
def initialize(definition, children)
@definition, @children =
definition, children
end
|
Instance Attribute Details
15
16
17
|
# File 'lib/stupidedi/values/loop_val.rb', line 15
def children
@children
end
|
- (LoopDef) definition
12
13
14
|
# File 'lib/stupidedi/values/loop_val.rb', line 12
def definition
@definition
end
|
Instance Method Details
- (Boolean) ==(other)
62
63
64
65
66
|
# File 'lib/stupidedi/values/loop_val.rb', line 62
def ==(other)
eql?(other) or
(other.definition == @definition and
other.children == @children)
end
|
- (LoopVal) copy(changes = {})
25
26
27
28
29
|
# File 'lib/stupidedi/values/loop_val.rb', line 25
def copy(changes = {})
LoopVal.new \
changes.fetch(:definition, @definition),
changes.fetch(:children, @children)
end
|
57
58
59
|
# File 'lib/stupidedi/values/loop_val.rb', line 57
def inspect
ansi.loop("Loop") << "(#{@children.map(&:inspect).join(', ')})"
end
|
- loop?
33
34
35
|
# File 'lib/stupidedi/values/loop_val.rb', line 33
def loop?
true
end
|
- pretty_print(q)
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/loop_val.rb', line 38
def pretty_print(q)
id = @definition.try do |d|
ansi.bold("[#{d.id.to_s}]")
end
q.text(ansi.loop("LoopVal#{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
|