class ANTLR3::Rewrite::Delete

Represents rewrite operation:

skip over the tokens indexed within the range op.index .. op.last_index and do not add any text to the rewrite buffer

Public Class Methods

new( stream, location ) click to toggle source
Calls superclass method ANTLR3::Rewrite::Replace::new
# File lib/antlr3/streams/rewrite.rb, line 159
def initialize( stream, location )
  super( stream, location, nil )
end