Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@babel/traverse/lib/context.js
rd565449 r0c6b92a 7 7 var _index = require("./path/index.js"); 8 8 var _t = require("@babel/types"); 9 var _context = require("./path/context.js"); 9 10 const { 10 11 VISITOR_KEYS … … 77 78 const path = queue[visitIndex]; 78 79 visitIndex++; 79 path.resync();80 _context.resync.call(path); 80 81 if (path.contexts.length === 0 || path.contexts[path.contexts.length - 1] !== this) { 81 path.pushContext(this);82 _context.pushContext.call(path, this); 82 83 } 83 84 if (path.key === null) continue; … … 99 100 } 100 101 for (let i = 0; i < visitIndex; i++) { 101 queue[i].popContext();102 _context.popContext.call(queue[i]); 102 103 } 103 104 this.queue = null;
Note:
See TracChangeset
for help on using the changeset viewer.