(t *Token, end int)
| 30 | } |
| 31 | |
| 32 | func (s *stack) push(t *Token, end int) { |
| 33 | s.open = append(s.open, t) |
| 34 | s.closeat = append(s.closeat, end) |
| 35 | } |
| 36 | |
| 37 | // closes type with indefinite length |
| 38 | func (s *stack) popIndefiniteEnd() (*Token, error) { |
no outgoing calls
no test coverage detected