Sha256: 03e3120c5901f78979e5bf0ab0bd00892e40acc8a1783e4553daf5d8f916c0d6
Contents?: true
Size: 586 Bytes
Versions: 6
Compression:
Stored size: 586 Bytes
Contents
module Lrama # Command line options. class Options attr_accessor :skeleton, :header, :header_file, :report_file, :outfile, :error_recovery, :grammar_file, :trace_opts, :report_opts, :y, :debug def initialize @skeleton = "bison/yacc.c" @header = false @header_file = nil @report_file = nil @outfile = "y.tab.c" @error_recovery = false @grammar_file = nil @trace_opts = nil @report_opts = nil @y = STDIN @debug = false end end end
Version data entries
6 entries across 6 versions & 1 rubygems