@abaplint/core 2.102.49 → 2.102.50
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.
|
@@ -102,7 +102,7 @@ class Select {
|
|
|
102
102
|
let type = new basic_1.VoidType("SELECT_todo");
|
|
103
103
|
if (dbType instanceof basic_1.StructureType) {
|
|
104
104
|
type = dbType.getComponentByName(field.code);
|
|
105
|
-
if (type) {
|
|
105
|
+
if (type === undefined) {
|
|
106
106
|
throw new Error(`handleInto, internal error, should be checked earlier`);
|
|
107
107
|
}
|
|
108
108
|
}
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.50",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"@microsoft/api-extractor": "^7.37.1",
|
|
54
54
|
"@types/chai": "^4.3.6",
|
|
55
55
|
"@types/mocha": "^10.0.2",
|
|
56
|
-
"@types/node": "^20.7.
|
|
56
|
+
"@types/node": "^20.7.1",
|
|
57
57
|
"chai": "^4.3.9",
|
|
58
58
|
"eslint": "^8.50.0",
|
|
59
59
|
"mocha": "^10.2.0",
|