-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds whitespace to the end of tests, as they are reused in another project which requires this as a current workaround.
- Loading branch information
1 parent
9b85725
commit 98bf92f
Showing
5 changed files
with
14 additions
and
11 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
OrderedDictionary { | ||
'packages\/Ohm-Grammars.package' : #SquotCypressCodeSerializer, | ||
'packages\/Ohm-Support.package' : #SquotCypressCodeSerializer, | ||
'packages\/Ohm-Semantics.package' : #SquotCypressCodeSerializer, | ||
'packages\/Ohm-Core.package' : #SquotCypressCodeSerializer, | ||
'packages\/BaselineOfOhm.package' : #SquotCypressCodeSerializer | ||
'packages/Ohm-Grammars.package' : #SquotCypressCodeSerializer, | ||
'packages/Ohm-Support.package' : #SquotCypressCodeSerializer, | ||
'packages/Ohm-Semantics.package' : #SquotCypressCodeSerializer, | ||
'packages/Ohm-Core.package' : #SquotCypressCodeSerializer, | ||
'packages/BaselineOfOhm.package' : #SquotCypressCodeSerializer | ||
} |
7 changes: 5 additions & 2 deletions
7
...dsSmalltalkGrammarTest.class/instance/testGrammarParsesConstantReferencesInExpressions.st
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,11 +1,14 @@ | ||
tests | ||
testGrammarParsesConstantReferencesInExpressions | ||
|
||
startRule := #Expression. | ||
self shouldParse: 'nil+3' to: #(Expression | ||
(KeywordMessageSend | ||
(KeywordMessageReceiver | ||
(BinaryMessageSend | ||
(BinaryMessageReceiver (UnaryMessageSend (UnaryMessageSend_base (Operand (Literal 'nil'))))) | ||
(BinaryMessage '+3'))) | ||
(_list))) | ||
(_list))) | ||
|
||
|
||
|
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: 2 additions & 2 deletions
4
...hmSmalltalkGrammarTest.class/instance/testGrammarParsesConstantReferencesInExpressions.st
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,9 +1,9 @@ | ||
tests | ||
testGrammarParsesConstantReferencesInExpressions | ||
|
||
startRule := #Expression. | ||
self shouldParse: 'nil+3' to: #( | ||
Expression | ||
(Operand (Literal 'nil')) | ||
(MessageChain '+3') | ||
(_list)) | ||
(_list)) |
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