newGroup creates a new Group with empty maps for identifiers and functions.
()
| 144 | |
| 145 | // newGroup creates a new Group with empty maps for identifiers and functions. |
| 146 | func newGroup() *Group { |
| 147 | return &Group{ |
| 148 | idents: make(map[string]*decls.VariableDecl), |
| 149 | functions: make(map[string]*decls.FunctionDecl), |
| 150 | } |
| 151 | } |
no outgoing calls
no test coverage detected