()
| 68 | } |
| 69 | |
| 70 | func (this *token_iterator) go_back() bool { |
| 71 | if this.token_index <= 0 { |
| 72 | return false |
| 73 | } |
| 74 | this.token_index-- |
| 75 | return true |
| 76 | } |
| 77 | |
| 78 | var bracket_pairs_map = map[token.Token]token.Token{ |
| 79 | token.RPAREN: token.LPAREN, |
no outgoing calls
no test coverage detected