Sha256: 90b39463a86f201ea470235ac0bd4e3de840a2d5449d74920b182e1e53ca6a70
Contents?: true
Size: 462 Bytes
Versions: 171
Compression:
Stored size: 462 Bytes
Contents
module Expressir module Model module Statements # Specified in ISO 10303-11:2004 # - section 13.5 Compound statement class Compound < Statement model_attr_accessor :statements, 'Array<Statement>' # @param [Hash] options # @option options [Array<Statement>] :statements def initialize(options = {}) @statements = options[:statements] || [] super end end end end end
Version data entries
171 entries across 171 versions & 1 rubygems