newGroup creates a new Group with empty maps for identifiers and functions.
()
| 165 | |
| 166 | // newGroup creates a new Group with empty maps for identifiers and functions. |
| 167 | func newGroup() *Group { |
| 168 | return &Group{ |
| 169 | idents: make(map[string]*decls.VariableDecl), |
| 170 | functions: make(map[string]*decls.FunctionDecl), |
| 171 | } |
| 172 | } |