Creates an empty code sequence. */
| 34 | public: |
| 35 | /** Creates an empty code sequence. */ |
| 36 | Code() : std::vector<Instruction>() {} |
| 37 | /** Creates a code sequence using initializer list syntax. */ |
| 38 | Code(const std::initializer_list<Instruction>& is) : std::vector<Instruction>(is) {} |
| 39 | /** Creates a code sequence using the instruction in an stl container. */ |
nothing calls this directly
no outgoing calls
no test coverage detected