(n ast.Node, seq sem.Seq)
| 464 | } |
| 465 | |
| 466 | func (s *selectScope) endScope(n ast.Node, seq sem.Seq) (sem.Seq, *staticTable) { |
| 467 | if s.out == nil { |
| 468 | return seq, badTable |
| 469 | } |
| 470 | return valuesExpr(sem.NewThis(n, []string{"out"}), seq), s.out |
| 471 | } |
| 472 | |
| 473 | func (s *staticTable) endScope(n ast.Node, seq sem.Seq) (sem.Seq, *staticTable) { |
| 474 | return seq, s |
nothing calls this directly
no test coverage detected