newAttrResolution creates a new attribute resolution value.
(ident *decls.VariableDecl, requiresDisambiguation bool)
| 133 | |
| 134 | // newAttrResolution creates a new attribute resolution value. |
| 135 | func newAttrResolution(ident *decls.VariableDecl, requiresDisambiguation bool) *attributeResolution { |
| 136 | return &attributeResolution{ |
| 137 | VariableDecl: ident, |
| 138 | requiresDisambiguation: requiresDisambiguation, |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | // attributeResolution wraps an existing variable and denotes whether disambiguation is needed |
| 143 | // during variable resolution. |
no outgoing calls
no test coverage detected