Skip to content

Commit d621cb8

Browse files
Open and use grammar enhancements
1 parent 64b9cf7 commit d621cb8

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"printableName": "Cache Web Terminal",
66
"description": "Web-based terminal emulator for Caché administering.",
77
"author": "ZitRo",
8-
"version": "4.0.0-beta.19",
8+
"version": "4.0.0-beta.20",
99
"gaID": "UA-83005064-2",
1010
"releaseNumber": 26,
1111
"scripts": {

src/client/js/parser/grammar.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -462,11 +462,13 @@ rule("cosCommand").split(
462462
).end();
463463

464464
rule("deviceParameters").branch().split(
465-
char({ value: "/", class: "special" }).id({ class: "special" }).char("=").call("expression")
466-
.split(
467-
char(":").merge(),
468-
any()
469-
),
465+
char({ value: "/", class: "special" }).id({ class: "special" }).split(
466+
char("=").call("expression"),
467+
any()
468+
).split(
469+
char(":").merge(),
470+
any()
471+
),
470472
string().split(
471473
char(":").merge(),
472474
any()

0 commit comments

Comments
 (0)