(v []byte, length uint32)
| 67 | return &Const{vec, length} |
| 68 | } |
| 69 | func NewConstType(v []byte, length uint32) *Const { |
| 70 | vec := NewTypeValue(newBytesTableWithValue(v)) |
| 71 | return &Const{vec, length} |
| 72 | } |
| 73 | |
| 74 | func NewConstFromValue(val super.Value, length uint32) *Const { |
| 75 | switch id := val.Type().ID(); { |
no test coverage detected