1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
--------------------------------------------------------------------------------
. 10 . 20
01
02 define f()
03 @res.name
04 end
05
Failed to match sequence (LINE_SEPARATOR? BLOCK LINE_SEPARATOR?) at line 2 char 5.
`- Expected one of [DEFINE_BLOCK, BEGIN_BLOCK] at line 2 char 5.
|- Failed to match sequence (define:'define' SPACE name:IDENTIFIER '()' BODY 'end') at line 2 char 15.
| `- Failed to match sequence (body:((LINE_SEPARATOR (BLOCK / EXPRESSION)){1, }) LINE_SEPARATOR) at line 3 char 11.
| `- Expected at least 1 of SPACE? (COMMENT? NEWLINE / ';') SPACE? at line 3 char 11.
| `- Failed to match sequence (SPACE? (COMMENT? NEWLINE / ';') SPACE?) at line 3 char 11.
| `- Expected one of [COMMENT? NEWLINE, ';'] at line 3 char 11.
| |- Failed to match sequence (COMMENT? NEWLINE) at line 3 char 11.
| | `- Expected "()", but got "\n " at line 3 char 16.
| `- Expected "()", but got "\n " at line 3 char 16.
`- Failed to match sequence (pre:((type:'concurrent' SPACE)?) begin:'begin' BODY 'end') at line 2 char 5.
`- Expected "()", but got "\n " at line 3 char 16.
--------------------------------------------------------------------------------
. 10 . 20
01
02 define f()
03 begin
04 @res.name
05 end
06 end
07
Failed to match sequence (LINE_SEPARATOR? BLOCK LINE_SEPARATOR?) at line 2 char 5.
`- Expected one of [DEFINE_BLOCK, BEGIN_BLOCK] at line 2 char 5.
|- Failed to match sequence (define:'define' SPACE name:IDENTIFIER '()' BODY 'end') at line 2 char 15.
| `- Failed to match sequence (body:((LINE_SEPARATOR (BLOCK / EXPRESSION)){1, }) LINE_SEPARATOR) at line 2 char 15.
| `- Expected at least 1 of LINE_SEPARATOR (BLOCK / EXPRESSION) at line 2 char 15.
| `- Failed to match sequence (LINE_SEPARATOR (BLOCK / EXPRESSION)) at line 3 char 7.
| `- Expected one of [BLOCK, EXPRESSION] at line 3 char 7.
| |- Expected one of [DEFINE_BLOCK, BEGIN_BLOCK] at line 3 char 7.
| | |- Failed to match sequence (define:'define' SPACE name:IDENTIFIER '()' BODY 'end') at line 3 char 7.
| | | `- Expected "define", but got "begin\n" at line 3 char 7.
| | `- Failed to match sequence (pre:((type:'concurrent' SPACE)?) begin:'begin' BODY 'end') at line 3 char 12.
| | `- Failed to match sequence (body:((LINE_SEPARATOR (BLOCK / EXPRESSION)){1, }) LINE_SEPARATOR) at line 4 char 13.
| | `- Expected at least 1 of SPACE? (COMMENT? NEWLINE / ';') SPACE? at line 4 char 13.
| | `- Failed to match sequence (SPACE? (COMMENT? NEWLINE / ';') SPACE?) at line 4 char 13.
| | `- Expected one of [COMMENT? NEWLINE, ';'] at line 4 char 13.
| | |- Failed to match sequence (COMMENT? NEWLINE) at line 4 char 13.
| | | `- Expected "()", but got "\n " at line 4 char 18.
| | `- Expected "()", but got "\n " at line 4 char 18.
| `- Failed to match sequence (RES_ACTIONS res_field:((':' name:IDENTIFIER)?)) at line 3 char 7.
| `- Failed to match sequence (resources:REFERENCE res_actions:(res_action:RES_ACTION_OR_LINK{0, })) at line 3 char 7.
| `- Failed to match sequence ('@'{1, 2} IDENTIFIER) at line 3 char 7.
| `- Expected at least 1 of '@' at line 3 char 7.
| `- Expected "()", but got "\n " at line 4 char 18.
`- Failed to match sequence (pre:((type:'concurrent' SPACE)?) begin:'begin' BODY 'end') at line 2 char 5.
`- Expected "()", but got "\n " at line 4 char 18.
--------------------------------------------------------------------------------
|