method

new

new(input, filename = nil, line = 0, pos = 0)
public

No documentation available.

# File lib/rubygems/request_set/lockfile/tokenizer.rb, line 12
  def initialize input, filename = nil, line = 0, pos = 0
    @line     = line
    @line_pos = pos
    @tokens   = []
    @filename = filename
    tokenize input
  end