summaryrefslogtreecommitdiff
path: root/src/node_modules/inversify/amd/planning/context.js
blob: cf2a0b52c078ff37e9f02f1a874543c6623b6c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
define(["require", "exports", "../utils/id"], function (require, exports, id_1) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var Context = (function () {
        function Context(container) {
            this.id = id_1.id();
            this.container = container;
        }
        Context.prototype.addPlan = function (plan) {
            this.plan = plan;
        };
        Context.prototype.setCurrentRequest = function (currentRequest) {
            this.currentRequest = currentRequest;
        };
        return Context;
    }());
    exports.Context = Context;
});