(pos uint64)
| 106 | } |
| 107 | |
| 108 | func (t *TokenReader) SetPos(pos uint64) { |
| 109 | if pos >= 0 && int(pos) < len(t.tokens) { |
| 110 | t.pos = pos |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | // IntDeclare int a=10+1*2 |
| 115 | func IntDeclare(tokenReader *TokenReader) (*ASTNode, error) { |
no outgoing calls
no test coverage detected