-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from rpinchbeck/1.7.2
Support case-insensitive prefixes on num-val and char-val
- Loading branch information
Showing
134 changed files
with
1,650 additions
and
925 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace AbnfToAntlr.Tests | ||
{ | ||
public enum ExpectedReturnValueEnum | ||
{ | ||
Success = 0, | ||
SyntaxError = 1, | ||
RecognitionError = 2 | ||
} | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...oAntlr.Tests/FileDrivenTests/AlternationTests/Alternation_With_Two_Alternatives.input.txt
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 @@ | ||
rule-with-two-alternatives-1 = "1" / "2" | ||
rule-with-two-alternatives-2 = "1" /"2" | ||
rule-with-two-alternatives-3 = "1"/ "2" | ||
rule-with-two-alternatives-4 = "1"/"2" | ||
rule-with-two-alternatives-4 = "1"/"2" |
2 changes: 1 addition & 1 deletion
2
...ests/FileDrivenTests/AlternationTests/Alternation_With_Two_Alternatives.output.direct.txt
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 @@ | ||
RULE_WITH_TWO_ALTERNATIVES_1 : '1' | '2'; | ||
RULE_WITH_TWO_ALTERNATIVES_2 : '1' |'2'; | ||
RULE_WITH_TWO_ALTERNATIVES_3 : '1'| '2'; | ||
RULE_WITH_TWO_ALTERNATIVES_4 : '1'|'2'; | ||
RULE_WITH_TWO_ALTERNATIVES_4 : '1'|'2'; |
4 changes: 3 additions & 1 deletion
4
.../FileDrivenTests/CharValTests/CaseInsensitiveString_With_No_Characters_Is_Empty.input.txt
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 +1,3 @@ | ||
case-insensitive-string-with-no-characters = %i"" | ||
case-insensitive-string-with-no-characters = %i"" | ||
|
||
case-insensitive-string-with-no-characters = %I"" |
2 changes: 2 additions & 0 deletions
2
...venTests/CharValTests/CaseInsensitiveString_With_No_Characters_Is_Empty.output.direct.txt
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 +1,3 @@ | ||
CASE_INSENSITIVE_STRING_WITH_NO_CHARACTERS : ; | ||
|
||
CASE_INSENSITIVE_STRING_WITH_NO_CHARACTERS : ; |
2 changes: 2 additions & 0 deletions
2
...nTests/CharValTests/CaseInsensitiveString_With_No_Characters_Is_Empty.output.indirect.txt
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 +1,3 @@ | ||
case_insensitive_string_with_no_characters : ; | ||
|
||
case_insensitive_string_with_no_characters : ; |
4 changes: 3 additions & 1 deletion
4
...Tests/CharValTests/CaseInsensitiveString_With_One_Character_Is_Case_Insentitive.input.txt
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 +1,3 @@ | ||
case-insensitive-string-with-one-character = %i"A" | ||
case-insensitive-string-with-one-character = %i"A" | ||
|
||
case-insensitive-string-with-one-character = %I"A" |
2 changes: 2 additions & 0 deletions
2
...arValTests/CaseInsensitiveString_With_One_Character_Is_Case_Insentitive.output.direct.txt
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 +1,3 @@ | ||
CASE_INSENSITIVE_STRING_WITH_ONE_CHARACTER : ('A' | 'a'); | ||
|
||
CASE_INSENSITIVE_STRING_WITH_ONE_CHARACTER : ('A' | 'a'); |
2 changes: 2 additions & 0 deletions
2
...ValTests/CaseInsensitiveString_With_One_Character_Is_Case_Insentitive.output.indirect.txt
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
...ivenTests/CharValTests/CaseInsensitiveString_With_One_Digit_Has_No_Alternatives.input.txt
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 +1,3 @@ | ||
case-insensitive-string-with-one-digit = %i"1" | ||
case-insensitive-string-with-one-digit = %i"1" | ||
|
||
case-insensitive-string-with-one-digit = %I"1" |
2 changes: 2 additions & 0 deletions
2
...s/CharValTests/CaseInsensitiveString_With_One_Digit_Has_No_Alternatives.output.direct.txt
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 +1,3 @@ | ||
CASE_INSENSITIVE_STRING_WITH_ONE_DIGIT : '1'; | ||
|
||
CASE_INSENSITIVE_STRING_WITH_ONE_DIGIT : '1'; |
2 changes: 2 additions & 0 deletions
2
...CharValTests/CaseInsensitiveString_With_One_Digit_Has_No_Alternatives.output.indirect.txt
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
...ests/CharValTests/CaseInsensitiveString_With_Two_Characters_Is_Case_Insentitive.input.txt
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 +1,3 @@ | ||
case-insensitive-string-with-two-characters = %i"Ab" | ||
case-insensitive-string-with-two-characters = %i"Ab" | ||
|
||
case-insensitive-string-with-two-characters = %I"Ab" |
2 changes: 2 additions & 0 deletions
2
...rValTests/CaseInsensitiveString_With_Two_Characters_Is_Case_Insentitive.output.direct.txt
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 +1,3 @@ | ||
CASE_INSENSITIVE_STRING_WITH_TWO_CHARACTERS : (('A' | 'a') ('B' | 'b')); | ||
|
||
CASE_INSENSITIVE_STRING_WITH_TWO_CHARACTERS : (('A' | 'a') ('B' | 'b')); |
2 changes: 2 additions & 0 deletions
2
...alTests/CaseInsensitiveString_With_Two_Characters_Is_Case_Insentitive.output.indirect.txt
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
...venTests/CharValTests/CaseInsensitiveString_With_Two_Digits_Has_No_Alternatives.input.txt
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 +1,3 @@ | ||
case-insensitive-string-with-two-digits = %i"12" | ||
case-insensitive-string-with-two-digits = %i"12" | ||
|
||
case-insensitive-string-with-two-digits = %I"12" |
2 changes: 2 additions & 0 deletions
2
.../CharValTests/CaseInsensitiveString_With_Two_Digits_Has_No_Alternatives.output.direct.txt
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 +1,3 @@ | ||
CASE_INSENSITIVE_STRING_WITH_TWO_DIGITS : ('1' '2'); | ||
|
||
CASE_INSENSITIVE_STRING_WITH_TWO_DIGITS : ('1' '2'); |
2 changes: 2 additions & 0 deletions
2
...harValTests/CaseInsensitiveString_With_Two_Digits_Has_No_Alternatives.output.indirect.txt
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
...ts/FileDrivenTests/CharValTests/CaseSensitiveString_With_No_Characters_Is_Empty.input.txt
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 +1,3 @@ | ||
case-sensitive-string-with-no-characters = %s"" | ||
case-sensitive-string-with-no-characters = %s"" | ||
|
||
case-sensitive-string-with-no-characters = %S"" |
2 changes: 2 additions & 0 deletions
2
...rivenTests/CharValTests/CaseSensitiveString_With_No_Characters_Is_Empty.output.direct.txt
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 +1,3 @@ | ||
CASE_SENSITIVE_STRING_WITH_NO_CHARACTERS : ; | ||
|
||
CASE_SENSITIVE_STRING_WITH_NO_CHARACTERS : ; |
2 changes: 2 additions & 0 deletions
2
...venTests/CharValTests/CaseSensitiveString_With_No_Characters_Is_Empty.output.indirect.txt
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 +1,3 @@ | ||
case_sensitive_string_with_no_characters : ; | ||
|
||
case_sensitive_string_with_no_characters : ; |
4 changes: 3 additions & 1 deletion
4
...enTests/CharValTests/CaseSensitiveString_With_One_Character_Is_Case_Insentitive.input.txt
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 +1,3 @@ | ||
case-sensitive-string-with-one-character = %s"A" | ||
case-sensitive-string-with-one-character = %s"A" | ||
|
||
case-sensitive-string-with-one-character = %S"A" |
2 changes: 2 additions & 0 deletions
2
...CharValTests/CaseSensitiveString_With_One_Character_Is_Case_Insentitive.output.direct.txt
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 +1,3 @@ | ||
CASE_SENSITIVE_STRING_WITH_ONE_CHARACTER : 'A'; | ||
|
||
CASE_SENSITIVE_STRING_WITH_ONE_CHARACTER : 'A'; |
2 changes: 2 additions & 0 deletions
2
...arValTests/CaseSensitiveString_With_One_Character_Is_Case_Insentitive.output.indirect.txt
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
...DrivenTests/CharValTests/CaseSensitiveString_With_One_Digit_Has_No_Alternatives.input.txt
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 +1,3 @@ | ||
case-sensitive-string-with-one-digit = %s"1" | ||
case-sensitive-string-with-one-digit = %s"1" | ||
|
||
case-sensitive-string-with-one-digit = %S"1" |
2 changes: 2 additions & 0 deletions
2
...sts/CharValTests/CaseSensitiveString_With_One_Digit_Has_No_Alternatives.output.direct.txt
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 +1,3 @@ | ||
CASE_SENSITIVE_STRING_WITH_ONE_DIGIT : '1'; | ||
|
||
CASE_SENSITIVE_STRING_WITH_ONE_DIGIT : '1'; |
2 changes: 2 additions & 0 deletions
2
...s/CharValTests/CaseSensitiveString_With_One_Digit_Has_No_Alternatives.output.indirect.txt
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
...nTests/CharValTests/CaseSensitiveString_With_Two_Characters_Is_Case_Insentitive.input.txt
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 +1,3 @@ | ||
case-sensitive-string-with-two-characters = %s"Ab" | ||
case-sensitive-string-with-two-characters = %s"Ab" | ||
|
||
case-sensitive-string-with-two-characters = %S"Ab" |
2 changes: 2 additions & 0 deletions
2
...harValTests/CaseSensitiveString_With_Two_Characters_Is_Case_Insentitive.output.direct.txt
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 +1,3 @@ | ||
CASE_SENSITIVE_STRING_WITH_TWO_CHARACTERS : 'Ab'; | ||
|
||
CASE_SENSITIVE_STRING_WITH_TWO_CHARACTERS : 'Ab'; |
2 changes: 2 additions & 0 deletions
2
...rValTests/CaseSensitiveString_With_Two_Characters_Is_Case_Insentitive.output.indirect.txt
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
...rivenTests/CharValTests/CaseSensitiveString_With_Two_Digits_Has_No_Alternatives.input.txt
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 +1,3 @@ | ||
case-sensitive-string-with-two-digits = %s"12" | ||
case-sensitive-string-with-two-digits = %s"12" | ||
|
||
case-sensitive-string-with-two-digits = %S"12" |
2 changes: 2 additions & 0 deletions
2
...ts/CharValTests/CaseSensitiveString_With_Two_Digits_Has_No_Alternatives.output.direct.txt
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 +1,3 @@ | ||
CASE_SENSITIVE_STRING_WITH_TWO_DIGITS : '12'; | ||
|
||
CASE_SENSITIVE_STRING_WITH_TWO_DIGITS : '12'; |
2 changes: 2 additions & 0 deletions
2
.../CharValTests/CaseSensitiveString_With_Two_Digits_Has_No_Alternatives.output.indirect.txt
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: 1 addition & 1 deletion
2
....Tests/FileDrivenTests/CharValTests/CharVal_With_No_Characters_Is_Empty.output.direct.txt
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 +1 @@ | ||
CHAR_VAL_WITH_NO_CHARACTERS : ; | ||
CHAR_VAL_WITH_NO_CHARACTERS : ; |
2 changes: 1 addition & 1 deletion
2
...ests/FileDrivenTests/CharValTests/CharVal_With_No_Characters_Is_Empty.output.indirect.txt
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 +1 @@ | ||
char_val_with_no_characters : ; | ||
char_val_with_no_characters : ; |
2 changes: 1 addition & 1 deletion
2
...DrivenTests/CharValTests/CharVal_With_One_Character_Is_Case_Insentitive.output.direct.txt
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 +1 @@ | ||
CHAR_VAL_WITH_ONE_CHARACTER : ('A' | 'a'); | ||
CHAR_VAL_WITH_ONE_CHARACTER : ('A' | 'a'); |
2 changes: 1 addition & 1 deletion
2
...FileDrivenTests/CharValTests/CharVal_With_One_Digit_Has_No_Alternatives.output.direct.txt
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 +1 @@ | ||
CHAR_VAL_WITH_ONE_DIGIT : '1'; | ||
CHAR_VAL_WITH_ONE_DIGIT : '1'; |
2 changes: 1 addition & 1 deletion
2
...rivenTests/CharValTests/CharVal_With_Two_Characters_Is_Case_Insentitive.output.direct.txt
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 +1 @@ | ||
CHAR_VAL_WITH_TWO_CHARACTERS : (('A' | 'a') ('B' | 'b')); | ||
CHAR_VAL_WITH_TWO_CHARACTERS : (('A' | 'a') ('B' | 'b')); |
2 changes: 1 addition & 1 deletion
2
...ileDrivenTests/CharValTests/CharVal_With_Two_Digits_Has_No_Alternatives.output.direct.txt
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 +1 @@ | ||
CHAR_VAL_WITH_TWO_DIGITS : ('1' '2'); | ||
CHAR_VAL_WITH_TWO_DIGITS : ('1' '2'); |
2 changes: 1 addition & 1 deletion
2
...nTests/ConcatenationTests/Concatenation_Has_Precedence_Over_Alternation.output.direct.txt
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 +1 @@ | ||
concatenation_and_alternation_without_grouping : (concatenation1 concatenation2) | (concatenation3 concatenation4); | ||
concatenation_and_alternation_without_grouping : (concatenation1 concatenation2) | (concatenation3 concatenation4); |
2 changes: 1 addition & 1 deletion
2
...ests/ConcatenationTests/Concatenation_Has_Precedence_Over_Alternation.output.indirect.txt
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 +1 @@ | ||
concatenation_and_alternation_without_grouping : (concatenation1 concatenation2) | (concatenation3 concatenation4); | ||
concatenation_and_alternation_without_grouping : (concatenation1 concatenation2) | (concatenation3 concatenation4); |
2 changes: 1 addition & 1 deletion
2
...ts/FileDrivenTests/ConcatenationTests/Concatenation_With_One_Repetition.output.direct.txt
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 +1 @@ | ||
CONCATENATION_WITH_ONE_REPETITION : '1'; | ||
CONCATENATION_WITH_ONE_REPETITION : '1'; |
2 changes: 1 addition & 1 deletion
2
...tlr.Tests/FileDrivenTests/ConcatenationTests/Concatenation_With_Two_Repetitions.input.txt
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 +1 @@ | ||
concatenation-with-two-repetitions = "1" "2" | ||
concatenation-with-two-repetitions = "1" "2" |
2 changes: 1 addition & 1 deletion
2
...s/FileDrivenTests/ConcatenationTests/Concatenation_With_Two_Repetitions.output.direct.txt
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 +1 @@ | ||
CONCATENATION_WITH_TWO_REPETITIONS : '1' '2'; | ||
CONCATENATION_WITH_TWO_REPETITIONS : '1' '2'; |
Oops, something went wrong.