aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Add option `-Ydoc-output` for specifying output dirFelix Mulder2016-08-1920-56/+100
| | |
| * | Add setting for output dirFelix Mulder2016-08-193-2/+15
| | |
| * | Fix #7, "immutable" package mistaken for "Immutable" traitFelix Mulder2016-08-193-7/+18
| | |
| * | Add implicit method `flat` to `Entity`Felix Mulder2016-08-193-2/+27
| | | | | | | | | | | | This method can be used when pickling the `currentEntity` on each page
| * | Move name filtering to AST build in Phase.scalaFelix Mulder2016-08-193-13/+14
| | |
| * | Filter out `AnyValCompanion` traitFelix Mulder2016-08-191-1/+2
| | |
| * | Cosmetic updatesFelix Mulder2016-08-193-2/+8
| | |
| * | Fix linking (do not remove parent linking!)Felix Mulder2016-08-191-3/+9
| | |
| * | Replace "$plus" with "+" in webviewFelix Mulder2016-08-192-2/+18
| | |
| * | Fix repeated traversal of packages when generating docs (5x speedup)Felix Mulder2016-08-198-42/+151
| | |
| * | Add test for simple commentFelix Mulder2016-08-192-2/+30
| | |
| * | Add test for checking if Array has documentation after compiling std libFelix Mulder2016-08-195-9/+23
| | |
| * | Add JUnit test structure for testing the DocPhaseFelix Mulder2016-08-196-11/+71
| | |
| * | Fix root-package finding in comment-parserFelix Mulder2016-08-191-4/+7
| | |
| * | Parse comments only from root packages (which contain all entities subsequently)Felix Mulder2016-08-192-28/+33
| | |
| * | Better prints while documenting packagesFelix Mulder2016-08-191-3/+10
| | |
| * | Break out commentCache to CommentParserFelix Mulder2016-08-192-27/+52
| | |
| * | Filter out ProductX when X > 3 in package viewFelix Mulder2016-08-191-1/+7
| | |
| * | Adjust font configuration for finalized package viewFelix Mulder2016-08-191-7/+19
| | |
| * | Add companions to package view w ability to choose between themFelix Mulder2016-08-192-10/+74
| | |
| * | Filter out companion objects from package-viewFelix Mulder2016-08-191-14/+19
| | |
| * | Split implementation to internal mutable and external interfaceFelix Mulder2016-08-1919-228/+280
| | |
| * | Move member rendering back to client (for event listeners)Felix Mulder2016-08-199-135/+157
| | |
| * | Move dynamically generated content to JVM sideFelix Mulder2016-08-1918-104/+3481
| | |
| * | Fix packages not ending up in `packages` map in Phases.scalaFelix Mulder2016-08-197-60/+63
| | |
| * | Add initial return values to members - to be updatedFelix Mulder2016-08-196-83/+136
| | | | | | | | | | | | | | | This commit adds return values to defs and vals - but does not provide a link to these. This is to be continued
| * | Fix package list linksFelix Mulder2016-08-193-15/+27
| | |
| * | Add recursive CLI args, move other doc argsFelix Mulder2016-08-193-63/+81
| | |
| * | Add the scaladoc CLI args that make sense for dottydocFelix Mulder2016-08-194-5/+68
| | |
| * | Improve layout with search and replace confusing Packages titleFelix Mulder2016-08-192-11/+50
| | |
| * | Minify cssFelix Mulder2016-08-192-125/+2
| | |
| * | Add command alias for dottydocFelix Mulder2016-08-191-2/+2
| | |
| * | Add summary comment, cleanupFelix Mulder2016-08-198-41/+84
| | |
| * | Fix compilation for multiple sourcesFelix Mulder2016-08-195-7/+34
| | |
| * | Add module member lookupFelix Mulder2016-08-1912-170/+380
| | |
| * | Port cooking of strings from NSCFelix Mulder2016-08-1912-35/+619
| | |
| * | Add project and impl for initial barebones dottydocFelix Mulder2016-08-1924-0/+1790
| | |
* | | Merge pull request #1464 from olafurpg/incompatibilitiesodersky2016-08-238-0/+64
|\ \ \ | | | | | | | | Three incompatibilities with scalac.
| * | | Three incompatibilities with scalac.Ólafur Páll Geirsson2016-08-238-0/+64
|/ / / | | | | | | | | | | | | | | | Using Scala 2.11.8 and dotty at bcfa3be8cfe2be. cc/ #1457
* | | Merge pull request #1456 from dotty-staging/fix-#1444odersky2016-08-217-15/+95
|\ \ \ | |_|/ |/| | Fix #1444: Pass implicits to parameterless traits if needed
| * | Fix testMartin Odersky2016-08-201-1/+1
| | |
| * | Fix #1444: Add implicit arguments to supertraitsMartin Odersky2016-08-207-15/+95
| |/ | | | | | | | | | | | | | | If a super trait is given as a type (i.e. no argument list), implicit args were not passed. This is fixed now. Also, we now check for parameterized traits lacking type arguments in Typer instead of in Mixin. Fixes #1444.
* | Merge pull request #1459 from dotty-staging/tests3odersky2016-08-219-59/+64
|\ \ | | | | | | Refinements to auto-tupling
| * | Address reviewers comments.Martin Odersky2016-08-212-7/+2
| | |
| * | Add import back.Martin Odersky2016-08-181-0/+2
| | | | | | | | | | | | Needed because the test is also run in neg wihtout command line option.
| * | Test reshufflingMartin Odersky2016-08-183-25/+5
| | | | | | | | | | | | | | | | | | - Delete redundant t2660 (exists elready in pos) - Comment t1756 - Recategorize tryexpr
| * | Refinements to auto tuplingMartin Odersky2016-08-186-31/+59
| |/ | | | | | | | | | | | | | | | | | | There's a nasty interaction with auto-tupling and trying to insert an implicit on the qualifier of a call. If the original call fails, we need to "undo" any auto-tupling decisions in calls where an implicit is inserted on the qualifier. Also: Needed to fix canAutoTuple test so that Scala2 feature is checked instead of dotty's. Also: Drop features in dotty.language that duplicate those in scala.language.
* | Merge pull request #1458 from dotty-staging/fix-compare-singletonsGuillaume Martres2016-08-206-9/+15
|\ \ | |/ |/| Fixes for comparing and avoiding singletons
| * Add passing testMartin Odersky2016-08-183-0/+15
| | | | | | | | Needs to be done in pos-special because junit tests do not recognize _1, _2.
| * Fix to avoidance of singleton type argumentsMartin Odersky2016-08-183-9/+4
| | | | | | | | Bring in line with comparisons. Fixes z1720 for good.