summaryrefslogtreecommitdiff
path: root/tool/lrama/lib/lrama/state/reduce_reduce_conflict.rb
blob: 0a0e4dc20ae7f3e97dd02342f9f0f9d03209ee46 (plain)
1
2
3
4
5
6
7
8
9
module Lrama
  class State
    class ReduceReduceConflict < Struct.new(:symbols, :reduce1, :reduce2, keyword_init: true)
      def type
        :reduce_reduce
      end
    end
  end
end