(sctx *super.Context, typ super.Type, length uint32)
| 159 | } |
| 160 | |
| 161 | func NewNone(sctx *super.Context, typ super.Type, length uint32) *None { |
| 162 | return NewNoneWithError(typ, NewMissing(sctx, length)) |
| 163 | } |
| 164 | |
| 165 | func NewNoneWithError(typ super.Type, err *Error) *None { |
| 166 | return &None{typ: typ, Error: err} |
no test coverage detected