ngrx-uml
Version:
NGRX to Plant UML diagram
23 lines (22 loc) • 633 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.CallExpression = void 0;
const type_kind_enum_1 = require("../type-kind.enum");
class CallExpression {
constructor(name, typeArguments) {
this.name = name;
this.typeArguments = typeArguments;
this.kind = type_kind_enum_1.TypeKind.CallExpression;
this.kindText = 'CallExpression';
}
getChildren() {
return [];
}
getExportName() {
return this.name || this.kindText;
}
setName(name) {
this.createdVariableName = name;
}
}
exports.CallExpression = CallExpression;
;