Fast track s and raw string interpolators#7779
Merged
adriaanm merged 1 commit intoscala:2.13.xfrom Mar 15, 2019
Merged
Conversation
Second half of fix for bug 11366
eed3si9n
reviewed
Mar 13, 2019
eed3si9n
approved these changes
Mar 15, 2019
gslowikowski
added a commit
to scoverage/scalac-scoverage-plugin
that referenced
this pull request
Apr 28, 2019
- upgrade Scala version from 2.13.0-M5 to 2.13.0-RC1 in `build.sbt` and `.travis.yml` - upgrade scalatest version from 3.0.6-SNAP4 to 3.0.8-RC2 - upgrade stala-xml version from 1.1.1 to 1.2.0 Some fixes in tests were required: - 's' and 'raw' string interpolators are now implemented as macros and macros are not instrumented; 's"Hello, $name"' expression was changed to explicit strings concatenation '"Hello, " + name' so the number of instrumented statements is the same in all Scala versions see: scala/scala@0cebcdf#diff-648e8f7f409d844c3c99b2d5a0d0dfe5R94 scala/scala#7779 - special symbol for all compilation phases was changed from "all" to "_" see: scala/scala@4d29431#diff-d686e8e67add4d42682f22193d20494bR1246 scala/scala#7908
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Second half of fix for scala/bug#11366