acspec-parser 0.4.3 → 0.5.2

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.
@@ -11,7 +11,7 @@ export declare const AcspecTerminals: {
11
11
  SL_COMMENT: RegExp;
12
12
  };
13
13
  export type AcspecTerminalNames = keyof typeof AcspecTerminals;
14
- export type AcspecKeywordNames = "," | "check" | "check!" | "check_action" | "check_action!" | "check_alarm" | "check_alarm!" | "count" | "delay" | "init" | "loop" | "schedule" | "unit" | "unwatch" | "unwatch!" | "use" | "watch" | "watch!" | "write" | "write!" | "{" | "}";
14
+ export type AcspecKeywordNames = "," | "check" | "check!" | "check_action" | "check_action!" | "check_alarm" | "check_alarm!" | "count" | "delay" | "delay!" | "init" | "loop" | "schedule" | "unit" | "unwatch" | "unwatch!" | "use" | "watch" | "watch!" | "write" | "write!" | "{" | "|" | "}";
15
15
  export type AcspecTokenNames = AcspecTerminalNames | AcspecKeywordNames;
16
16
  export type BlockCommand = CountCommand | LoopCommand | ScheduleCommand;
17
17
  export declare const BlockCommand = "BlockCommand";
@@ -37,6 +37,7 @@ export interface CheckAlarmCommand extends langium.AstNode {
37
37
  readonly $container: CountCommand | LoopCommand | Model | ScheduleCommand;
38
38
  readonly $type: 'CheckAlarmCommand';
39
39
  codes: Array<CodeParam>;
40
+ codes2: Array<CodeParam>;
40
41
  }
41
42
  export declare const CheckAlarmCommand = "CheckAlarmCommand";
42
43
  export declare function isCheckAlarmCommand(item: unknown): item is CheckAlarmCommand;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acspec-parser",
3
- "version": "0.4.3",
3
+ "version": "0.5.2",
4
4
  "keywords": [
5
5
  "AcSpec",
6
6
  "acspec"