class Flor::Pro::RegularExpressionString

Public Instance Methods

execute_child(index=0, sub=nil, h=nil) click to toggle source
Calls superclass method Flor::Procedure#execute_child
# File lib/flor/pcore/_rxs.rb, line 13
def execute_child(index=0, sub=nil, h=nil)

  payload['ret'] = node_payload_ret
    # always pass the noe_payload_ret to children

  super
end
pre_execute() click to toggle source
# File lib/flor/pcore/_rxs.rb, line 7
def pre_execute

  @node['rets'] = []
  @node['atts'] = []
end
receive_last() click to toggle source
# File lib/flor/pcore/_rxs.rb, line 21
def receive_last

  rex = [ '_rxs', "/#{@node['rets'].join}/#{att('rxopts')}", tree[2] ]

  wrap('ret' => rex)
end