(data []byte, pfc *package_file_cache)
| 72 | } |
| 73 | |
| 74 | func (p *gc_bin_parser) init(data []byte, pfc *package_file_cache) { |
| 75 | p.data = data |
| 76 | p.version = -1 // unknown version |
| 77 | p.strList = []string{""} // empty string is mapped to 0 |
| 78 | p.pathList = []string{""} // empty string is mapped to 0 |
| 79 | p.pfc = pfc |
| 80 | } |
| 81 | |
| 82 | func (p *gc_bin_parser) parse_export(callback func(string, ast.Decl)) { |
| 83 | p.callback = callback |
nothing calls this directly
no outgoing calls
no test coverage detected