Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@babel/traverse/lib/scope/index.js
r0c6b92a r79a0317 633 633 this.uids = Object.create(null); 634 634 this.data = Object.create(null); 635 const programParent = this.getProgramParent(); 636 if (programParent.crawling) return; 635 let scope = this; 636 do { 637 if (scope.crawling) return; 638 if (scope.path.isProgram()) { 639 break; 640 } 641 } while (scope = scope.parent); 642 const programParent = scope; 637 643 const state = { 638 644 references: [],
Note:
See TracChangeset
for help on using the changeset viewer.