Sha256: 9f52472ecdbfbf04e6861c943a3abac61ed482a63d88c20db119955559ae9708
Contents?: true
Size: 894 Bytes
Versions: 28
Compression:
Stored size: 894 Bytes
Contents
module Expressir module Model module Statements class Repeat < ModelElement include Identifier attr_accessor :bound1 attr_accessor :bound2 attr_accessor :increment attr_accessor :while_expression attr_accessor :until_expression attr_accessor :statements def initialize(options = {}) @id = options[:id] @remarks = options.fetch(:remarks, []) @source = options[:source] @bound1 = options[:bound1] @bound2 = options[:bound2] @increment = options[:increment] @while_expression = options[:while_expression] @until_expression = options[:until_expression] @statements = options.fetch(:statements, []) super end def children [ self ] end end end end end
Version data entries
28 entries across 28 versions & 1 rubygems