summaryrefslogtreecommitdiff
path: root/src/node_modules/inversify/lib/planning/plan.js
blob: 18b1943d69974382dca779208d3810a7294f438c (plain)
1
2
3
4
5
6
7
8
9
10
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Plan = (function () {
    function Plan(parentContext, rootRequest) {
        this.parentContext = parentContext;
        this.rootRequest = rootRequest;
    }
    return Plan;
}());
exports.Plan = Plan;