* @param {object} boundaryNode * @param {?array} path * @return {?object} node
(boundaryNode, path, node)
| 13053 | * @return {?object} node |
| 13054 | */ |
| 13055 | function initScopeMetadata(boundaryNode, path, node) { |
| 13056 | return { |
| 13057 | boundaryNode: boundaryNode, |
| 13058 | bindingPath: path, |
| 13059 | bindingNode: node |
| 13060 | }; |
| 13061 | } |
| 13062 | |
| 13063 | function declareIdentInLocalScope(identName, metaData, state) { |
| 13064 | state.localScope.identifiers[identName] = { |
no outgoing calls
no test coverage detected