UNPKG

@abaplint/runtime

Version:
32 lines 746 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UTCLong = void 0; class UTCLong { constructor(input) { this.clear(); this.qualifiedName = input?.qualifiedName; } clone() { const n = new UTCLong({ qualifiedName: this.qualifiedName }); n.value = this.value; return n; } getQualifiedName() { return this.qualifiedName; } getOffset(_input) { throw new Error("Method not implemented, getOffset(), utcLong"); } set(_value) { // todo return this; } clear() { this.value = ""; } get() { return this.value; } } exports.UTCLong = UTCLong; //# sourceMappingURL=utc_long.js.map