@abaplint/core 2.93.4 → 2.93.7
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/abap/5_syntax/basic_types.js +2 -2
- package/build/src/registry.js +1 -1
- package/package.json +1 -1
- package/lexer_performance.abap +0 -113325
|
@@ -322,8 +322,8 @@ class BasicTypes {
|
|
|
322
322
|
{ name: "option", type: new Types.CharacterType(2) },
|
|
323
323
|
{ name: "low", type: found },
|
|
324
324
|
{ name: "high", type: found },
|
|
325
|
-
]
|
|
326
|
-
return new Types.TableType(structure, options);
|
|
325
|
+
]);
|
|
326
|
+
return new Types.TableType(structure, options, name);
|
|
327
327
|
}
|
|
328
328
|
else if (text.startsWith("LIKE RANGE OF ")) {
|
|
329
329
|
const sub = node.findFirstExpression(Expressions.SimpleFieldChain);
|
package/build/src/registry.js
CHANGED