-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
После псевдокомментария может следовать любое количество имён, запятых и точек с запятой (знаки пунктуации игнорируются), имя должно быть как минимум одно.
- Loading branch information
Showing
27 changed files
with
359 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
* TREE | ||
|
||
$ENTRY Go { | ||
/* empty */ = /* empty */; | ||
|
||
X = <Test '******************************' ()>; | ||
} | ||
|
||
*$NODRIVE Test, Double | ||
|
||
Test { | ||
'*' e.Count (e.Acc) = <Test e.Count (<Double (e.Acc)>)>; | ||
|
||
/* empty */ (e.Acc) = e.Acc; | ||
} | ||
|
||
Double { | ||
(e.Acc) = (e.Acc) (e.Acc) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
* TREE | ||
|
||
$ENTRY Go { | ||
/* empty */ = /* empty */; | ||
|
||
X = <Test '******************************' ()>; | ||
} | ||
|
||
Test { | ||
'*' e.Count (e.Acc) = <Test e.Count ((e.Acc) (e.Acc))>; | ||
|
||
*$NOOPT Test | ||
|
||
/* empty */ (e.Acc) = e.Acc; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
* TREE | ||
|
||
$ENTRY Go { | ||
/* empty */ = /* empty */; | ||
|
||
X = <Test '******************************' ()>; | ||
} | ||
|
||
*$NOOPT Test | ||
|
||
Test { | ||
'*' e.Count (e.Acc) = <Test e.Count ((e.Acc) (e.Acc))>; | ||
|
||
/* empty */ (e.Acc) = e.Acc; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
* TREE | ||
|
||
$ENTRY Go { | ||
/* empty */ = /* empty */; | ||
|
||
X = <Test '******************************' ()>; | ||
} | ||
|
||
*$NODRIVE Test | ||
*$NOSPEC Test | ||
|
||
Test { | ||
'*' e.Count (e.Acc) = <Test e.Count ((e.Acc) (e.Acc))>; | ||
|
||
/* empty */ (e.Acc) = e.Acc; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* NO-WARNINGS | ||
|
||
*$EXTENDED; | ||
|
||
*$DRIVE Foo, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
* NO-WARNINGS | ||
|
||
*$EXTENDED; | ||
|
||
*$SPEC Func s.STAT (s.dyn); | ||
*$SPEC Func;,;,; | ||
|
||
Func { | ||
s.Stat (s.Dyn) = s.Stat s.Dyn; | ||
|
2 changes: 1 addition & 1 deletion
2
...eudocomments-warnings-classic.WARNING.ref → ...seudocomments-warning-classic.WARNING.ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
* WARNING ignored-pseudocomments | ||
* WARNING pseudocomment | ||
|
||
*$CLASSIC; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* WARNING pseudocomment | ||
|
||
*$SPEC S; | ||
*$NOSPEC S; | ||
|
||
$ENTRY S { = } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
* WARNING pseudocomment | ||
|
||
*$OPT Undefined; | ||
|
||
$ENTRY Go { = } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
* WARNING pseudocomment | ||
|
||
*$OPT | ||
|
||
$ENTRY Test { | ||
/* empty */ = /* empty */ | ||
} |
4 changes: 2 additions & 2 deletions
4
...eudocomments-warning-extended.WARNING.ref → ...pseudocomments-warning-lexer1.WARNING.ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
...pseudocomments-error-lexer.BAD-SYNTAX.ref → ...pseudocomments-warning-lexer2.WARNING.ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
...docomments-error-multiunit.BAD-SYNTAX.ref → ...udocomments-warning-multiunit.WARNING.ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* WARNING pseudocomment | ||
|
||
*$EXTENDED; | ||
|
||
*$DRIVE D; $INLINE F; | ||
|
2 changes: 2 additions & 0 deletions
2
...seudocomments-error-syntax.BAD-SYNTAX.ref → ...pseudocomments-warning-syntax.WARNING.ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* WARNING pseudocomment | ||
|
||
*$EXTENDED; | ||
|
||
*$SPEC Func s.STAT (s.dyn; | ||
|
2 changes: 2 additions & 0 deletions
2
...docomments-error-semantics.BAD-SYNTAX.ref → ...nts-warning-unexpected-format.WARNING.ref
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
* WARNING pseudocomment | ||
|
||
*$EXTENDED; | ||
|
||
*$SPEC Func (s.STAT) s.dyn; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.