Sha256: 46829445a1bb03d9807281459453242cfa515de71467a46434fb4658bd932147
Contents?: true
Size: 411 Bytes
Versions: 35
Compression:
Stored size: 411 Bytes
Contents
module Expressir module Model module Expressions class UnaryExpression < ModelElement MINUS = :MINUS NOT = :NOT PLUS = :PLUS model_attr_accessor :operator model_attr_accessor :operand def initialize(options = {}) @operator = options[:operator] @operand = options[:operand] super end end end end end
Version data entries
35 entries across 35 versions & 1 rubygems