Method: BOAST.register_funccall
- Defined in:
- lib/BOAST/Parens.rb
.register_funccall(name) ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'lib/BOAST/Parens.rb', line 26 def BOAST.register_funccall(name) s =" def BOAST.\#{name}(*args)\n return BOAST::FuncCall(\"\#{name}\", *args)\n end\n" eval s end |