MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / constructor

Method constructor

lib/models/builder.js:24–34  ·  view source on GitHub ↗
(options)

Source from the content-addressed store, hash-verified

22 */
23class Builder extends CoreObject {
24 constructor(options) {
25 super(options);
26
27 this._instantiationStack = new Error().stack.replace(/[^\n]*\n/, '');
28 this._cleanup = this.cleanup.bind(this);
29
30 this._cleanupStarted = false;
31 this._onProcessInterrupt = options.onProcessInterrupt || onProcessInterrupt;
32
33 this._onProcessInterrupt.addHandler(this._cleanup);
34 }
35
36 /**
37 * @private

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected