Method: ANTLR3::CompileTask::GrammarFile::Imported#initialize

Defined in:
lib/antlr3/task.rb

#initialize(owner, path) ⇒ Imported

Returns a new instance of Imported.



437
438
439
440
441
442
443
444
445
# File 'lib/antlr3/task.rb', line 437

def initialize( owner, path )
  @owner = owner
  @path = path.to_s
  @imports = []
  @language = 'Java'
  @token_vocab = nil
  study
  fetch_imports
end