| 10 | ) |
| 11 | |
| 12 | type cursor_context struct { |
| 13 | decl *decl |
| 14 | partial string |
| 15 | struct_field bool |
| 16 | decl_import bool |
| 17 | |
| 18 | // store expression that was supposed to be deduced to "decl", however |
| 19 | // if decl is nil, then deduction failed, we could try to resolve it to |
| 20 | // unimported package instead |
| 21 | expr ast.Expr |
| 22 | } |
| 23 | |
| 24 | type token_iterator struct { |
| 25 | tokens []token_item |
nothing calls this directly
no outgoing calls
no test coverage detected