(tv scode.Bytes)
| 587 | } |
| 588 | |
| 589 | func DecodeLength(tv scode.Bytes) (int, scode.Bytes) { |
| 590 | namelen, n := binary.Uvarint(tv) |
| 591 | if n <= 0 { |
| 592 | return 0, nil |
| 593 | } |
| 594 | return int(namelen), tv[n:] |
| 595 | } |
| 596 | |
| 597 | func (c *Context) Missing() Value { |
| 598 | return NewValue(c.StringTypeError(), Missing) |
no outgoing calls
no test coverage detected