class Racc::Sym
Stands terminal and nonterminal symbols.
Attributes
cache
Public Class Methods
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1051 def initialize(value, dummyp) @ident = nil @value = value @dummyp = dummyp @term = nil @nterm = nil @should_terminal = false @precedence = nil case value when Symbol @to_s = value.to_s @serialized = value.inspect @string = false when String @to_s = value.inspect @serialized = value.dump @string = true when false @to_s = '$end' @serialized = 'false' @string = false else raise ArgumentError, "unknown symbol value: #{value.class}" end @heads = [] @locate = [] @snull = nil @null = nil @expand = nil @useless = nil end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1086 def once_writer(nm) nm = nm.id2name module_eval(<<-EOS) def #{nm}=(v) raise 'racc: fatal: @#{nm} != nil' unless @#{nm}.nil? @#{nm} = v end EOS end
Public Instance Methods
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1149 def |(x) rule() | x.rule end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1104 def dummy? @dummyp end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1112 def nonterminal? @nterm end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1174 def null=(n) @null = n end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1170 def nullable? @null end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1153 def rule Rule.new(nil, [self], UserAction.empty) end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1164 def self_null? @snull end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1134 def serialize @serialized end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1122 def should_terminal @should_terminal = true end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1126 def should_terminal? @should_terminal end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1130 def string_symbol? @string end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1116 def term=(t) raise 'racc: fatal: term= called twice' unless @term.nil? @term = t @nterm = !t end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1108 def terminal? @term end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1143 def to_s @to_s.dup end
Also aliased as: inspect
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1185 def useless=(f) @useless = f end
Source
# File bundled-src/racc-1.8.1/lib/racc/grammar.rb, line 1181 def useless? @useless end