-
-
Notifications
You must be signed in to change notification settings - Fork 353
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Add ability to watch T.input
s and interp.watchValue
s
#2489
Merged
Merged
Changes from 2 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
391ea9d
wip
lihaoyi 020964e
.
lihaoyi f1ca4c5
.
lihaoyi 590b09f
.
lihaoyi 8e05639
Merge branch 'main' into watch-inputs
lihaoyi 467c0f2
compiles after moving recalc to Evaluator.EvalResult
lihaoyi 02f0cef
wip
lihaoyi 0524586
wip
lihaoyi f2a797e
things pass converted to Val
lihaoyi a823018
things pass converted to Val
lihaoyi bd4326f
fix crash
lihaoyi ad0f6f9
wip
lihaoyi d36b1f2
Merge branch 'main' into watch-inputs
lihaoyi 6f443cf
WatchSourceInputTests pass
lihaoyi 1e3e92d
wip
lihaoyi 2d79417
pass
lihaoyi 1a69380
.
lihaoyi 2ff49e4
.
lihaoyi d227ee6
update-patch
lihaoyi e7ded2d
.
lihaoyi d38944e
cleanup
lihaoyi f406c10
wip
lihaoyi a07fc7d
wip
lihaoyi 5eae381
.
lihaoyi 080527d
fix main.__.test
lihaoyi 137e479
.
lihaoyi 28d6ac4
.
lihaoyi 8a623c4
cleanups
lihaoyi 3a35c1f
.
lihaoyi 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 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,8 +38,8 @@ object HelloNativeWorldTests extends TestSuite { | |
extends Cross.ToSegments[ReleaseMode](v => List(v.toString)) | ||
|
||
val matrix = for { | ||
scala <- Seq("3.2.1", "3.1.3", scala213, "2.12.13", "2.11.12") | ||
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. Is this version no longer supported? |
||
scalaNative <- Seq(scalaNative04, "0.4.9") | ||
scala <- Seq("3.2.1", scala213, "2.12.13", "2.11.12") | ||
scalaNative <- Seq(scalaNative04) | ||
mode <- List(ReleaseMode.Debug, ReleaseMode.ReleaseFast) | ||
if !(ZincWorkerUtil.isScala3(scala) && scalaNative == scalaNative04) | ||
} yield (scala, scalaNative, mode) | ||
|
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.
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.
Are these versions no longer supported? AFAIK, those partly changed/extended their API, and those tests make sure we can still build against them.
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 thought we could kill them, but I'll revert this and leave it for another PR