Skip to content

Commit 0e90d3f

Browse files
Add symbol # to allowed syntax
1 parent 88a940b commit 0e90d3f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

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.7.0",
8+
"version": "4.7.1",
99
"gaID": "UA-83005064-2",
1010
"releaseNumber": 26,
1111
"scripts": {

src/client/js/parser/grammar.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,8 @@ rule("expression").split(
642642
),
643643
char({ value: "|", class: "special" }).char({ value: "|", class: "special" }),
644644
char({ value: "[", class: "special" }),
645-
char({ value: "]", class: "special" })
645+
char({ value: "]", class: "special" }),
646+
char({ value: "#", class: "special" })
646647
).optWhitespace().call("expression"),
647648
any()
648649
).exit().end();

0 commit comments

Comments
 (0)