Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

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

    rd565449 r0c6b92a  
    77var _index = require("./path/index.js");
    88var _t = require("@babel/types");
     9var _context = require("./path/context.js");
    910const {
    1011  VISITOR_KEYS
     
    7778      const path = queue[visitIndex];
    7879      visitIndex++;
    79       path.resync();
     80      _context.resync.call(path);
    8081      if (path.contexts.length === 0 || path.contexts[path.contexts.length - 1] !== this) {
    81         path.pushContext(this);
     82        _context.pushContext.call(path, this);
    8283      }
    8384      if (path.key === null) continue;
     
    99100    }
    100101    for (let i = 0; i < visitIndex; i++) {
    101       queue[i].popContext();
     102      _context.popContext.call(queue[i]);
    102103    }
    103104    this.queue = null;
Note: See TracChangeset for help on using the changeset viewer.