| 561 | instruction_ref module::add_literal(literal l) { return insert_literal(begin(), std::move(l)); } |
| 562 | |
| 563 | instruction_ref module::add_outline(const shape& s) |
| 564 | { |
| 565 | impl->push_front({builtin::outline{s}, s, {}}); |
| 566 | return impl->instructions.begin(); |
| 567 | } |
| 568 | |
| 569 | instruction_ref module::add_parameter(std::string name, shape s) |
| 570 | { |