Sha256: 96744b7c831c56c5d75c777736cab7bc38d77ddc4bca9a6c3aa1c87a213ad253

Contents?: true

Size: 222 Bytes

Versions: 1

Compression:

Stored size: 222 Bytes

Contents

class UState::Query
  class Or < Node
    def initialize(a,b)
      @a = a
      @b = b
    end

    def ===(state)
      @a === state or @b === state
    end

    def inspect
      inspect_helper @a, @b
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ustate-client-0.0.7 lib/ustate/query/or.rb