-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix #3305 and #3309 #3314
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #3305 and #3309 #3314
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
scala> ; | ||
scala> ;; | ||
scala> 1; 2 | ||
val res0: Int = 1 | ||
val res1: Int = 2 | ||
scala> 1; | ||
val res2: Int = 1 | ||
scala> 1;; 2 | ||
val res3: Int = 1 | ||
val res4: Int = 2 | ||
scala> } | ||
1 | } | ||
| ^ | ||
| eof expected, but '}' found | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @felixmulder Why do I need a space after There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sounds like it! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am trying to isolate the underlying exception. This is based on nothing but experiment:
I am sure there is a better a way to do it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We really need tests for all of those :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Working on it