-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Fix scala runner exit codes #15604
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
Merged
Merged
Fix scala runner exit codes #15604
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
6d06661
fix exit codes
rochala 01c1855
fix dead code, return Either instead of throwing error
rochala 479fb8c
add exit code tests, fix exit code for tastyprinter flag, improve tem…
rochala 7287584
add unsafe nulls import
rochala 6fa07cf
move exit code tests into separate directory to don't check if they c…
rochala 6d7a873
refactor tests to guarantee file deletion, fix leftover test output f…
rochala 7d96568
undo changes added by mistake
rochala c39ff5b
don't print compile error stacktrace for -e flag
rochala 6507a32
Delete scoverage.coverage
rochala File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,88 @@ | ||
# Coverage data, format version: 3.0 | ||
# Statement data: | ||
# - id | ||
# - source path | ||
# - package name | ||
# - class name | ||
# - class type (Class, Object or Trait) | ||
# - full class name | ||
# - method name | ||
# - start offset | ||
# - end offset | ||
# - line number | ||
# - symbol name | ||
# - tree name | ||
# - is branch | ||
# - invocations count | ||
# - is ignored | ||
# - description (can be multi-line) | ||
# '' sign | ||
# ------------------------------------------ | ||
0 | ||
../dotty/src/main/scala/Macro.scala | ||
example | ||
Test$ | ||
Object | ||
example.Test$ | ||
x | ||
212 | ||
217 | ||
13 | ||
x | ||
DefDef | ||
false | ||
0 | ||
false | ||
|
||
|
||
1 | ||
src/main/scala/Main.scala | ||
example | ||
Test$ | ||
Object | ||
example.Test$ | ||
foo | ||
52 | ||
59 | ||
5 | ||
foo | ||
DefDef | ||
false | ||
0 | ||
false | ||
def foo | ||
|
||
2 | ||
src/main/scala/Main.scala | ||
example | ||
Test$ | ||
Object | ||
example.Test$ | ||
hello | ||
99 | ||
112 | ||
8 | ||
println | ||
Apply | ||
false | ||
0 | ||
false | ||
println("JD") | ||
|
||
3 | ||
src/main/scala/Main.scala | ||
example | ||
Test$ | ||
Object | ||
example.Test$ | ||
hello | ||
75 | ||
90 | ||
7 | ||
hello | ||
DefDef | ||
false | ||
0 | ||
false | ||
@main def hello | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.