(blocks ...[]Instruction)
| 672 | } |
| 673 | |
| 674 | func (s *Instructions) AddBlocks(blocks ...[]Instruction) { |
| 675 | for _, block := range blocks { |
| 676 | s.Add(block...) |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | func (s *Instructions) Get() []Instruction { |
| 681 | return s.instructions |
no test coverage detected