X7ROOT File Manager
Current Path:
/opt/alt/ruby32/share/ruby/racc
opt
/
alt
/
ruby32
/
share
/
ruby
/
racc
/
??
..
??
compat.rb
(538 B)
??
debugflags.rb
(1.29 KB)
??
exception.rb
(272 B)
??
grammar.rb
(22.18 KB)
??
grammarfileparser.rb
(14.81 KB)
??
info.rb
(297 B)
??
iset.rb
(1.24 KB)
??
logfilegenerator.rb
(5.04 KB)
??
parser-text.rb
(18 KB)
??
parser.rb
(17.93 KB)
??
parserfilegenerator.rb
(10.58 KB)
??
sourcetext.rb
(539 B)
??
state.rb
(19.81 KB)
??
statetransitiontable.rb
(7.83 KB)
??
static.rb
(137 B)
Editing: sourcetext.rb
#-- # # # # Copyright (c) 1999-2006 Minero Aoki # # This program is free software. # You can distribute/modify this program under the same terms of ruby. # see the file "COPYING". # #++ module Racc class SourceText def initialize(text, filename, lineno) @text = text @filename = filename @lineno = lineno end attr_reader :text attr_reader :filename attr_reader :lineno def to_s "#<SourceText #{location()}>" end def location "#{@filename}:#{@lineno}" end end end
Upload File
Create Folder