-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Properly track line numbers for keyword binary operators
- Loading branch information
Showing
3 changed files
with
31 additions
and
0 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,12 @@ | ||
true and false | ||
true or false | ||
false or | ||
true | ||
|
||
true and | ||
false or | ||
maybe? and | ||
some_other_things! | ||
|
||
|
||
do_stuff! if should_do_thing_one? and should_do_thing_two? |
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,10 @@ | ||
true and false | ||
true or false | ||
false or true | ||
|
||
true and | ||
false or | ||
maybe? and | ||
some_other_things! | ||
|
||
do_stuff! if should_do_thing_one? and should_do_thing_two? |
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