ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
24 lines (22 loc) • 591 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class Signature {
/**
* Initializes a new instance of Signature.
* @internal
* @param global - GlobalContainer.
* @param signature - Compiler signature.
*/
constructor(global, signature) {
this.global = global;
this._compilerSignature = signature;
}
/**
* Gets the underlying compiler signature.
*/
get compilerSignature() {
return this._compilerSignature;
}
}
exports.Signature = Signature;
//# sourceMappingURL=Signature.js.map