Instructions - useful list data structure for convienience
| 662 | |
| 663 | // Instructions - useful list data structure for convienience |
| 664 | type Instructions struct { |
| 665 | instructions []Instruction |
| 666 | } |
| 667 | |
| 668 | func (s *Instructions) Add(ins ...Instruction) { |
| 669 | for _, i := range ins { |
nothing calls this directly
no outgoing calls
no test coverage detected