| 47 | } |
| 48 | |
| 49 | void program::print_variables(std::vector<int> const& stack) const |
| 50 | { |
| 51 | typedef std::pair<std::string, int> pair; |
| 52 | BOOST_FOREACH(pair const& p, variables) |
| 53 | { |
| 54 | std::cout << " " << p.first << ": " << stack[p.second] << std::endl; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | void program::print_assembler() const |
| 59 | { |