# File lib/transitions/state.rb, line 13
    def ==(other)
      if other.is_a? Symbol
        name == other
      else
        name == other.name
      end
    end