aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Workaround #1770: Run changeOwner at group end in ElimByNameGuillaume Martres2017-01-281-1/+5
| | | | | Using changeOwnerAfter would be more appropriate but currently fails with an assertion in LambdaLift
* dotty.ShowTests: fix cyclic references involving implicit valuesGuillaume Martres2017-01-281-2/+2
| | | | | | | | As reportd by dotty (same thing with showShop): cyclic reference involving implicit value showCar This happens when the right hand-side of value showCar's definition involves an implicit search. To avoid the error, give value showCar an explicit type.
* Fix some dotty compilation errorsGuillaume Martres2017-01-284-6/+12
|
* Use new sbt-based bootstrap for partest tooGuillaume Martres2017-01-272-51/+8
| | | | | | | `partest` and `partest-only` are now run through `dotty-compiler-bootstrapped`. The old bootstrapping mechanism is deleted since it has been unmaintained and broken for several months and that I do not wish to maintain two bootstrapping mechanisms.
* Enable sbt-based bootstrap in the CIGuillaume Martres2017-01-271-0/+1
|
* Add sbt-based bootstrapGuillaume Martres2017-01-271-50/+96
| | | | | | | | | | | | | | | | | | | | This adds two new project to the sbt build: dotty-library-bootstrapped and dotty-compiler bootstrapped. These projects use the same source files as dotty-library and dotty-compiler but are compiled using dotty itself. The main usecase for this is that we can now run the JUnit tests (which are _not_ just a subset of the tests run by partest, for example the REPL tests are only run through JUnit) with a bootstrapped compiler: $ sbt > publishLocal # Non-bootstrapped dotty needs to be published first > dotty-compiler-bootstrapped/test But this also allows one to experiment with a bootstrapped dotty much more easily in general. This revealed many issues in the compiler that are fixed in subsequent commits in this PR.
* Do not hardcode jars path in the tests, instead get them from sbtGuillaume Martres2017-01-272-13/+17
| | | | | This is necessary to run the tests with the bootstrapped projects and is just much better than hardcoding them anyway.
* Remove hardcoded classpath reorderingGuillaume Martres2017-01-272-10/+1
| | | | | | If something needs to be fixed, fix it at the source. This prevented dotty-compiler-bootstrapped from using the dotty-library-bootstrapped clases instead of the dotty-library jar
* Merge pull request #1912 from dotty-staging/upgrade-backendGuillaume Martres2017-01-272-3/+2
|\ | | | | Upgrade backend to fix Java interop for inner classes
| * Upgrade backend to fix Java interop for inner classesGuillaume Martres2017-01-272-3/+2
|/ | | | | | The upgraded backend contains a single new PR: https://github.com/DarkDimius/scala/pull/4 which fixes Java interop with Dotty-emitted inner classes in objects.
* Merge pull request #1904 from dotty-staging/fix-npe-implicitsodersky2017-01-161-8/+10
|\ | | | | Fix another NPE when compiling under -Yno-imports
| * Fix another NPE when compiling under -Yno-importsMartin Odersky2017-01-161-8/+10
| |
* | Merge pull request #1903 from dotty-staging/fix-npe-implicitsodersky2017-01-161-3/+11
|\| | | | | Fix NPE in Implicits
| * Fix NPE in ImplicitsMartin Odersky2017-01-161-3/+11
| | | | | | | | | | We got on NPE when compiling the collection strawman under -Yno-imports. We did not preview that the contextual implicit scope stack could be empty.
* | Merge pull request #1901 from dotty-staging/change-predef-importodersky2017-01-164-14/+23
|\| | | | | Adopt scala's scheme for root import hiding
| * Adopt scala's scheme for root import hidingMartin Odersky2017-01-154-14/+23
| | | | | | | | | | | | | | | | | | | | scalac hides a root import from Predef if there is an eplicit Predef import. We now do the same (previously we did this only if the overriding import undefined something, using a `x => _` syntax). To avoid cycles and races one had to be very careful not to force import symbols too early, so we now compare the name before the symbol proper. All this is likely temporary - the comment of ImportInfo#unimported points to a different, more systematic solution.
* | Merge pull request #1880 from dotty-staging/improve-whitelist-infrastructureodersky2017-01-126-705/+92
|\ \ | |/ |/| Improve whitelist infrastructure.
| * Add useExplicitWhiteList for debugging.Nicolas Stucki2017-01-111-1/+27
| |
| * Simplify blacklist paths.Nicolas Stucki2017-01-052-19/+22
| |
| * Remove whitelist and keep only blacklist.Nicolas Stucki2017-01-053-654/+8
| | | | | | | | | | | | Now that that the blacklist is fully know and is small enough, it will be simpler to maintain only the blacklist.
| * Add stdlib whitelist loader.Nicolas Stucki2017-01-054-42/+46
| |
* | Merge pull request #1883 from dotty-staging/fix-1877Dmitry Petrashko2017-01-1114-6/+195
|\ \ | | | | | | Fix #1877: Add forwarders for primitive/generic mixins.
| * | Add PrimitiveForwarders and fix forwarding on value classes.Nicolas Stucki2017-01-118-15/+102
| | |
| * | Fix #1877: Add forwarders for primitive/generic mixins.Nicolas Stucki2017-01-068-6/+108
| | |
* | | Merge pull request #1690 from dotty-staging/benchDmitry Petrashko2017-01-1111-3/+211
|\ \ \ | | | | | | | | Fix benchmarks and add multiple mini benchmark tests
| * | | restore curve name for backward data compatibilityliu fengyun2016-11-241-6/+4
| | | |
| * | | add mini tests to benchmarksliu fengyun2016-11-2410-3/+213
| | | |
| * | | fix benchmark testliu fengyun2016-11-241-1/+1
| | | |
* | | | Merge pull request #1894 from dotty-staging/fix/inner-class-emissionGuillaume Martres2017-01-113-1/+21
|\ \ \ \ | | | | | | | | | | Partially fix Java interop for emitted inner classes
| * | | | Partially fix Java interop for emitted inner classesGuillaume Martres2017-01-113-1/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The backend uses `rawname` to define the "inner name" of an InnerClass entry in a classfile, this should be the simple name of the class before any mangling takes place. Fixing this allows Java code to reference dotty inner classes, except if they're defined in objects which is still broken until https://github.com/DarkDimius/scala/pull/4 is merged and a new backend is published.
* | | | | Merge pull request #1893 from dotty-staging/fix-#1891odersky2017-01-113-2/+25
|\ \ \ \ \ | | | | | | | | | | | | Fix #1891: Don't add redundant constraint
| * | | | | Add more explanation.Martin Odersky2017-01-111-0/+3
| | | | | |
| * | | | | Fix #1891: Don't add redundant constraintMartin Odersky2017-01-103-2/+22
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before adding a constraint, make sure there is no way the two types are already in a subtype relation. Adding redundant constraints is problematic because we might introduce cycles. See i1891.scala for a test.
* | | | | Merge pull request #1890 from dotty-staging/remove-inlined-fieldsodersky2017-01-102-21/+29
|\ \ \ \ \ | |/ / / / |/| | | | Stop emitting fields for inlined fields.
| * | | | Fix #1878: Use Inline on final vals.Nicolas Stucki2017-01-104-20/+51
| | | | |
| * | | | Stop emitting fields for inlined fields.Nicolas Stucki2017-01-101-1/+2
| | | | |
| * | | | Revert "Fix #1878: Generate fields for final vars."Nicolas Stucki2017-01-103-25/+1
|/ / / / | | | | | | | | | | | | This reverts commit 63d68bf4d3cbac82f6d9faf19acd5589603a17ee.
* | | | Merge pull request #1889 from dotty-staging/fix/dummies-for-sbtFelix Mulder2017-01-091-1/+28
|\ \ \ \ | | | | | | | | | | Add dummy scala{-compiler,-reflect,p}
| * | | | Add dummy scala{-compiler,-reflect,p}Guillaume Martres2017-01-081-1/+28
|/ / / / | | | | | | | | | | | | | | | | This is needed to make dotty-compiled projects work with sbt 0.13.13, the other needed fix is https://github.com/sbt/sbt/pull/2897
* | | | Merge pull request #1888 from dotty-staging/bump-version-011Guillaume Martres2017-01-0887-180/+174
|\ \ \ \ | | | | | | | | | | Bump version from 0.1-SNAPSHOT to 0.1.1-SNAPSHOT
| * | | | Bump version from 0.1-SNAPSHOT to 0.1.1-SNAPSHOTGuillaume Martres2017-01-0887-180/+174
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is useful for two reasons: - All published Scala versions are of the form a.b.c and some tooling expect that, like sbt CrossVersion API. - Using 0.1.1 instead of 0.1.0 means that we match the version number of dotty-sbt-bridge, this is simpler and means that in the future sbt could automatically choose the correct version of dotty-sbt-bridge so that the user does not need to specify scalaCompilerBridgeSource in his build.sbt Note: it's awful that we have hardcoded paths to jars and that I had to change them, but I won't fix that now.
* | | | | Improve error position and drop second error since it is prunedJonathan Brachthäuser2017-01-082-2/+2
| | | | |
* | | | | Give context for code examples to ease understandingJonathan Brachthäuser2017-01-081-9/+18
| | | | |
* | | | | Replace all occurrences of Id, ident or Ident with idJonathan Brachthäuser2017-01-081-36/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To match the specs in https://github.com/lampepfl/dotty/blob/master/docs/syntax-summary.txt all occurences of Id, ident or Ident in comments have been replaced with the terminal `id`.
* | | | | Add error message for dangling this in path selectionsJonathan Brachthäuser2017-01-082-1/+28
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following examples trigger the error message: val x: Foo.this = ??? // Also triggers the error: import foo.this // Additionally, also slays the compiler type X = Foo.this.type
* | | | Merge pull request #1887 from dotty-staging/fix-#1867Guillaume Martres2017-01-072-1/+4
|\ \ \ \ | | | | | | | | | | Fix #1867: Set position of empty refined types
| * | | | Fix #1867: Set position of empty refined typesMartin Odersky2017-01-042-1/+4
| | | | |
* | | | | Merge pull request #1885 from dotty-staging/add/dummy-libsGuillaume Martres2017-01-061-5/+9
|\ \ \ \ \ | |_|_|/ / |/| | | | Fix dummy scala-library
| * | | | Fix dummy scala-libraryGuillaume Martres2017-01-061-5/+9
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | To be useful, the dummy scala-library: - needs to be published with crossPaths off (the "_2.11" path of the artefact name), like the real scala-library - should depend on dotty-library and not just scala-library, since this is what is needed to compile dotty programs
* | | | Merge pull request #1873 from dotty-staging/fix-#1865odersky2017-01-052-1/+26
|\ \ \ \ | | | | | | | | | | Fix #1865: Compute outer path at right phase