[Source]
# File markup/to_flow.rb, line 14 14: def initialize(type) 15: @type = type 16: @contents = [] 17: end
# File markup/to_flow.rb, line 18 18: def <<(stuff) 19: @contents << stuff 20: end
[Validate]