(args ...vector.Any)
| 159 | } |
| 160 | |
| 161 | func (t *TypeOf) Call(args ...vector.Any) vector.Any { |
| 162 | val := t.sctx.LookupTypeValue(args[0].Type()) |
| 163 | return vector.NewConstType(val.Bytes(), args[0].Len()) |
| 164 | } |
| 165 | |
| 166 | type TypeName struct { |
| 167 | sctx *super.Context |
nothing calls this directly
no test coverage detected