Method: ANTLR3::AST::CommonTreeNodeStream#consume
- Defined in:
- lib/antlr3/tree.rb
#consume ⇒ Object
1088 1089 1090 1091 1092 1093 |
# File 'lib/antlr3/tree.rb', line 1088 def consume @position == -1 and fill_buffer node = @nodes.fetch( @position, @eof ) @position += 1 return( node ) end |