Class | OpenWFE::WithTemplateExpression |
In: |
lib/openwfe/expressions/wtemplate.rb
|
Parent: | FlowExpression |
A parent class for CursorExpression and IteratorExpression. Takes care of removing templates before replying to the parent expression.
this overriden method takes care of removing all the children (templates) before replying to its parent.
# File lib/openwfe/expressions/wtemplate.rb, line 56 56: def reply_to_parent (workitem) 57: 58: #@children.each do |child| 59: # get_expression_pool.remove child 60: #end 61: clean_children 62: 63: super workitem 64: end