Ignore:
Timestamp:
01/21/25 03:08:24 (4 days ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
0c6b92a
Message:

F4 Finalna Verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/@babel/traverse/lib/scope/index.js

    r0c6b92a r79a0317  
    633633    this.uids = Object.create(null);
    634634    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;
    637643    const state = {
    638644      references: [],
Note: See TracChangeset for help on using the changeset viewer.