ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
34 lines (33 loc) • 1.39 kB
JavaScript
;
var __extends = (this && this.__extends)/* istanbul ignore next */ || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var Node_1 = require("./Node");
var QualifiedName = /** @class */ (function (_super) {
__extends(QualifiedName, _super);
function QualifiedName() {
return _super !== null && _super.apply(this, arguments) || this;
}
/**
* Gets the left side of the qualified name.
*/
QualifiedName.prototype.getLeft = function () {
return this.global.compilerFactory.getNodeFromCompilerNode(this.compilerNode.left, this.sourceFile);
};
/**
* Gets the right identifier of the qualified name.
*/
QualifiedName.prototype.getRight = function () {
return this.global.compilerFactory.getNodeFromCompilerNode(this.compilerNode.right, this.sourceFile);
};
return QualifiedName;
}(Node_1.Node));
exports.QualifiedName = QualifiedName;