@abaplint/core 2.83.10 → 2.83.11

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.
@@ -16,7 +16,7 @@ class DecFloat16Type extends _abstract_type_1.AbstractType {
16
16
  return false;
17
17
  }
18
18
  toCDS() {
19
- return "abap.TODO_DECFLOAT16";
19
+ return "abap.d16n";
20
20
  }
21
21
  }
22
22
  exports.DecFloat16Type = DecFloat16Type;
@@ -16,7 +16,7 @@ class DecFloat34Type extends _abstract_type_1.AbstractType {
16
16
  return false;
17
17
  }
18
18
  toCDS() {
19
- return "abap.TODO_DECFLOAT34";
19
+ return "abap.d34n";
20
20
  }
21
21
  }
22
22
  exports.DecFloat34Type = DecFloat34Type;
@@ -16,7 +16,7 @@ class StringType extends _abstract_type_1.AbstractType {
16
16
  return false;
17
17
  }
18
18
  toCDS() {
19
- return "abap.TODO_STRING";
19
+ return "abap.string";
20
20
  }
21
21
  }
22
22
  exports.StringType = StringType;
@@ -16,7 +16,7 @@ class UTCLongType extends _abstract_type_1.AbstractType {
16
16
  return false;
17
17
  }
18
18
  toCDS() {
19
- return "abap.TODO_UTCLONG";
19
+ return "abap.utcl";
20
20
  }
21
21
  }
22
22
  exports.UTCLongType = UTCLongType;
@@ -16,7 +16,7 @@ class XStringType extends _abstract_type_1.AbstractType {
16
16
  return false;
17
17
  }
18
18
  toCDS() {
19
- return "abap.TODO_XSTRING";
19
+ return "abap.rawstring";
20
20
  }
21
21
  }
22
22
  exports.XStringType = XStringType;
@@ -82,7 +82,10 @@ class CDSLexer {
82
82
  }
83
83
  // multi line comment handling
84
84
  if (mode === Mode.MultiLineComment) {
85
- if (prev === "*" && next === "/") {
85
+ if (next === "\n") {
86
+ row++;
87
+ }
88
+ else if (prev === "*" && next === "/") {
86
89
  mode = Mode.Default;
87
90
  }
88
91
  continue;
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.83.10";
71
+ return "2.83.11";
72
72
  }
73
73
  getDDICReferences() {
74
74
  return this.references;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.83.10",
3
+ "version": "2.83.11",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",