lib/cpee/processtransformation/structures.rb in cpee-1.3.149 vs lib/cpee/processtransformation/structures.rb in cpee-1.3.150
- old
+ new
@@ -101,14 +101,16 @@
end
end #}}}
class InfiniteLoop < Array #{{{
include Container
def condition?; false; end
+ attr_reader :attributes
attr_accessor :id, :type
def initialize(id)
@container = true
@id = id
@type = :loop
+ @attributes = {}
end
end #}}}
class Loop < Array #{{{
include Container
attr_accessor :id, :type, :condition, :condition_type