Skip to content

Commit

Permalink
Merge pull request #82 from yui-knk/cannot_use_aux_in_windows
Browse files Browse the repository at this point in the history
Rename Aux to Auxiliary
  • Loading branch information
yui-knk committed Aug 16, 2023
2 parents 8b0d6ac + c35dc0e commit 5e2803b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions lib/lrama/grammar.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "lrama/grammar/aux"
require "lrama/grammar/auxiliary"
require "lrama/grammar/code"
require "lrama/grammar/error_token"
require "lrama/grammar/precedence"
Expand Down Expand Up @@ -36,7 +36,7 @@ def initialize
@error_symbol = nil
@undef_symbol = nil
@accept_symbol = nil
@aux = Aux.new
@aux = Auxiliary.new

append_special_symbols
end
Expand Down
7 changes: 0 additions & 7 deletions lib/lrama/grammar/aux.rb

This file was deleted.

7 changes: 7 additions & 0 deletions lib/lrama/grammar/auxiliary.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module Lrama
class Grammar
# Grammar file information not used by States but by Output
class Auxiliary < Struct.new(:prologue_first_lineno, :prologue, :epilogue_first_lineno, :epilogue, keyword_init: true)
end
end
end

0 comments on commit 5e2803b

Please sign in to comment.