Class: Marker::ListNode
- Inherits:
-
ParseNode
- Object
- Treetop::Runtime::SyntaxNode
- ParseNode
- Marker::ListNode
- Defined in:
- lib/marker/lists.rb
Direct Known Subclasses
Instance Method Summary collapse
Methods inherited from Treetop::Runtime::SyntaxNode
Instance Method Details
#builder ⇒ Object
161 162 163 164 165 166 167 |
# File 'lib/marker/lists.rb', line 161 def builder if content ListBuilder.new( type, ItemBuilder.new( type, content ) ) else ListBuilder.new( type, ItemBuilder.new( type, item.builder ) ) end end |