@abaplint/core 2.82.1 → 2.82.2

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.
@@ -84,7 +84,10 @@ class Lexer {
84
84
  const col = this.stream.getCol();
85
85
  const row = this.stream.getRow();
86
86
  let whiteBefore = false;
87
- const prev = this.stream.prevChar();
87
+ let prev = this.stream.prevChar();
88
+ if (s.length === 2) {
89
+ prev = this.stream.prevPrevChar().substr(0, 1);
90
+ }
88
91
  if (prev === " " || prev === "\n" || prev === "\t" || prev === ":") {
89
92
  whiteBefore = true;
90
93
  }
@@ -68,7 +68,7 @@ class Registry {
68
68
  }
69
69
  static abaplintVersion() {
70
70
  // magic, see build script "version.sh"
71
- return "2.82.1";
71
+ return "2.82.2";
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.82.1",
3
+ "version": "2.82.2",
4
4
  "description": "abaplint - Core API",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/abaplint.d.ts",