Sha256: 6cf0999762c39a374b970b687e32ee2d4a07ca9b64a4bed797a33a3ce8454428
Contents?: true
Size: 385 Bytes
Versions: 3
Compression:
Stored size: 385 Bytes
Contents
module Expressir module Model module Expressions class UnaryExpression MINUS = :MINUS NOT = :NOT PLUS = :PLUS attr_accessor :operator attr_accessor :operand def initialize(options = {}) @operator = options[:operator] @operand = options[:operand] end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems