(t *translator)
| 21 | } |
| 22 | |
| 23 | func newChecker(t *translator) *checker { |
| 24 | return &checker{ |
| 25 | t: t, |
| 26 | unknown: t.sctx.LookupTypeError(t.sctx.MustLookupTypeRecord(nil)), |
| 27 | checked: make(map[super.Type]super.Type), |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | func (c *checker) seq(typ super.Type, seq sem.Seq) super.Type { |
| 32 | for len(seq) > 0 { |
no test coverage detected