Private stuff. cacheAST is a cache of parsed Go sources.
| 23 | |
| 24 | // cacheAST is a cache of parsed Go sources. |
| 25 | type cacheAST struct { |
| 26 | files map[string][]byte |
| 27 | parsed map[string]*parsedFile |
| 28 | } |
| 29 | |
| 30 | // augmentGoroutine processes source files to improve call to be more |
| 31 | // descriptive. |
nothing calls this directly
no outgoing calls
no test coverage detected