# File lib/racc/grammar.rb, line 372 372: def higher 373: if @prechigh_seen 374: raise CompileError, "prechigh used twice" 375: end 376: @prechigh_seen = true 377: end
# File lib/racc/grammar.rb, line 389 389: def left(*syms) 390: @grammar.declare_precedence :Left, syms.map {|s| @grammar.intern(s) } 391: end
# File lib/racc/grammar.rb, line 379 379: def lower 380: if @preclow_seen 381: raise CompileError, "preclow used twice" 382: end 383: if @prechigh_seen 384: @reverse = true 385: end 386: @preclow_seen = true 387: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.