Skip to content

Commit

Permalink
argh, sleepy
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Aug 5, 2024
1 parent 8f138e9 commit 160f98c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions packages/cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@abaplint/transpiler-cli",
"version": "2.10.8",
"version": "2.10.9",
"description": "Transpiler - Command Line Interface",
"funding": "https://github.com/sponsors/larshp",
"bin": {
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@abaplint/runtime",
"version": "2.10.8",
"version": "2.10.9",
"description": "Transpiler - Runtime",
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
Expand Down
3 changes: 3 additions & 0 deletions packages/runtime/src/statements/create_data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ export function createData(target: DataReference | FieldSymbol, options?: ICreat
case "XSTRING":
target.assign(new XString());
break;
case "UTCLONG":
target.assign(new UTCLong());
break;
default:
// @ts-ignore
if (abap.DDIC[options.typeName.trimEnd()]) {
Expand Down
4 changes: 2 additions & 2 deletions packages/transpiler/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/transpiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@abaplint/transpiler",
"version": "2.10.8",
"version": "2.10.9",
"description": "Transpiler",
"main": "build/src/index.js",
"typings": "build/src/index.d.ts",
Expand Down

0 comments on commit 160f98c

Please sign in to comment.