UNPKG

231 BJavaScriptView Raw
1var Context = function Context(expect) {
2 this.expect = expect;
3 this.level = 0;
4};
5
6Context.prototype.child = function child () {
7 var child = Object.create(this);
8 child.level++;
9 return child;
10};
11
12module.exports = Context;