@abaplint/runtime 2.10.37 → 2.10.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/src/types/table.js +2 -2
- package/package.json +2 -2
package/build/src/types/table.js
CHANGED
|
@@ -375,13 +375,13 @@ class Table {
|
|
|
375
375
|
}
|
|
376
376
|
getHeader() {
|
|
377
377
|
if (this.header === undefined) {
|
|
378
|
-
throw "table, getHeader";
|
|
378
|
+
throw new Error("table, getHeader");
|
|
379
379
|
}
|
|
380
380
|
return this.header;
|
|
381
381
|
}
|
|
382
382
|
get() {
|
|
383
383
|
if (this.header === undefined) {
|
|
384
|
-
throw "table, no header line";
|
|
384
|
+
throw new Error("table, no header line");
|
|
385
385
|
}
|
|
386
386
|
return this.header.get();
|
|
387
387
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/runtime",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.38",
|
|
4
4
|
"description": "Transpiler - Runtime",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/src/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"chai": "^4.5.0",
|
|
35
35
|
"mocha": "^11.1.0",
|
|
36
36
|
"source-map-support": "^0.5.21",
|
|
37
|
-
"typescript": "^5.8.
|
|
37
|
+
"typescript": "^5.8.3"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"temporal-polyfill": "^0.2.5"
|