(ins ...Instruction)
| 666 | } |
| 667 | |
| 668 | func (s *Instructions) Add(ins ...Instruction) { |
| 669 | for _, i := range ins { |
| 670 | s.instructions = append(s.instructions, i) |
| 671 | } |
| 672 | } |
| 673 | |
| 674 | func (s *Instructions) AddBlocks(blocks ...[]Instruction) { |
| 675 | for _, block := range blocks { |
no outgoing calls
no test coverage detected