resolution-context.js 212 B

12345678
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. class ResolutionContext {
  4. constructor() {
  5. this.scopedResolutions = new Map();
  6. }
  7. }
  8. exports.default = ResolutionContext;