We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0228053 commit e967a80Copy full SHA for e967a80
2 files changed
package.json
@@ -5,7 +5,7 @@
5
"printableName": "Cache Web Terminal",
6
"description": "Web-based terminal emulator for Caché administering.",
7
"author": "ZitRo",
8
- "version": "4.0.0-beta.3",
+ "version": "4.0.0-beta.4",
9
"gaID": "UA-83005064-2",
10
"releaseNumber": 26,
11
"scripts": {
src/client/js/parser/grammar.js
@@ -354,6 +354,10 @@ rule("cosCommand").split(
354
char(",").optWhitespace().merge(),
355
any().exit()
356
),
357
+ id([
358
+ { CI, value: "zload", class: "keyword" },
359
+ { CI, value: "zl", class: "keyword" }
360
+ ]).call("postCondition").whitespace().branch().id({ type: "routine", class: "global" }).exit(),
361
id([
362
{ CI, value: "znspace", class: "keyword" },
363
{ CI, value: "zn", class: "keyword" }
@@ -414,7 +418,10 @@ rule("postCondition").split(
414
418
).exit().end();
415
419
416
420
rule("doArgument").split(
417
- char({ value: "^", class: "global" }).branch().id({ type: "routine", class: "global" }).split(
421
+ char({ value: "^", class: "global" }).branch().split(
422
+ char({ type: "routine", class: "global" }),
423
+ any
424
+ ).id({ type: "routine", class: "global" }).split(
425
char({ value: ".", type: "routine", class: "global" }).merge(),
426
any()
427
0 commit comments