Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Jun 14, 2021
1 parent 5bd5686 commit fad6be1
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -671,8 +671,9 @@ const thisContextVisitor = traverse.visitors.merge([

const innerReferencesVisitor = {
ReferencedIdentifier(path, state) {
const { name } = path.node;
if (path.scope.bindingIdentifierEquals(path.node.name, state.innerBinding)) {
if (
path.scope.bindingIdentifierEquals(path.node.name, state.innerBinding)
) {
state.needsClassRef = true;
path.node.name = state.classRef.name;
}
Expand Down

0 comments on commit fad6be1

Please sign in to comment.