Home | History | Annotate | Download | only in parser

Lines Matching full:identifiers

8     grammar Identifiers;
12 @identifiers = []
17 attr_reader :reported_errors, :identifiers
20 @identifiers << name
38 lexer = Identifiers::Lexer.new( input )
40 parser = Identifiers::Parser.new( tokens )
45 parser.identifiers.should == %w(blah_de_blah)
51 lexer = Identifiers::Lexer.new( '' )
52 parser = Identifiers::Parser.new( lexer )
64 parser = Identifiers::Parser.new( 'blah_de_blah', :file => 'blah.txt' )
69 parser.identifiers.should == %w(blah_de_blah)