| 526 | } |
| 527 | |
| 528 | boost::shared_ptr<code_gen::function> |
| 529 | compiler::find_function(std::string const& name) const |
| 530 | { |
| 531 | function_table::const_iterator i = functions.find(name); |
| 532 | if (i == functions.end()) |
| 533 | return boost::shared_ptr<code_gen::function>(); |
| 534 | else |
| 535 | return i->second; |
| 536 | } |
| 537 | }} |
| 538 |