(args, options=nil, context=nil)
| 19 | class Function |
| 20 | alias_method :execute_raw, :execute |
| 21 | def execute(args, options=nil, context=nil) |
| 22 | options = resolve_options(options) |
| 23 | execute_raw(args, options, context) |
| 24 | end |
| 25 | alias_method :call, :execute |
| 26 | |
| 27 | def resolve_options(options) |
no outgoing calls