aboutsummaryrefslogtreecommitdiff
path: root/src/dotty
Commit message (Collapse)AuthorAgeFilesLines
* Make `typeDiff` aware of placeholder typesFelix Mulder2016-10-102-21/+38
|
* Refactor explanation interpolatorFelix Mulder2016-10-107-69/+120
|
* Unrainbow syntax highlightingFelix Mulder2016-10-101-1/+3
|
* Add basic diffing for shown valuesFelix Mulder2016-10-101-3/+25
|
* Fix multiple parsing errors on e.g. `try 1`Felix Mulder2016-10-101-3/+9
| | | | | | | The `CompilingInterpreter` will on a single compile run, make multiple parsings of the given line(s). This results in multiple warnings from the parser. As such, clear the warnings until the actual compile is performed.
* Indent 2 after newline in REPLFelix Mulder2016-10-102-5/+4
|
* Better operator highlightingFelix Mulder2016-10-101-4/+5
|
* Fix underline positionFelix Mulder2016-10-101-1/+1
|
* Improve syntax highlighting on polymorphic defsFelix Mulder2016-10-101-2/+5
|
* Add deprecation message on `with` type operatorFelix Mulder2016-10-102-48/+78
|
* Improve syntax highlighting for ValDefsFelix Mulder2016-10-101-17/+37
|
* Remove duplication of console reportersFelix Mulder2016-10-105-141/+82
|
* Make relevant parts of compiler conform to new error handlingFelix Mulder2016-10-1018-334/+313
|
* Make `FancyConsoleReporter` and `Highlighting` obey color settingFelix Mulder2016-10-106-47/+64
| | | | | | | Fancy console reporter and the string interpolator for highlighting now obey the color setting - this means that the next step towards unifying the reporters is to make sure the tests work with `FancyConsoleReporter` under the `-color:never` flag.
* Add modifiers to highlightingFelix Mulder2016-10-106-41/+49
|
* Add `MissingIdent` message to `Typer`Felix Mulder2016-10-101-2/+3
|
* Factor out explanation header to ReporterFelix Mulder2016-10-107-42/+77
|
* Add coloring utilFelix Mulder2016-10-101-0/+60
|
* Complete better structure to diagnostic messagesFelix Mulder2016-10-1015-150/+198
|
* Refactor common error messages to `diagnostic.basic`Felix Mulder2016-10-108-44/+118
|
* Rename Diagnostic to diagnostic.MessageFelix Mulder2016-10-109-50/+67
|
* Add ability to choose between fancy and non-fancy outputFelix Mulder2016-10-105-61/+110
|
* Rename `ConsoleReporter` => `FancyConsoleReporter`Felix Mulder2016-10-104-5/+5
|
* Add error kind to diagnosticFelix Mulder2016-10-104-33/+23
|
* Add smart comment formatting in ConsoleReporterFelix Mulder2016-10-101-7/+65
|
* Add missing star in docstringFelix Mulder2016-10-101-1/+1
|
* Change layout of ErrorMessagesFelix Mulder2016-10-107-120/+135
|
* Add more examples to TyperFelix Mulder2016-10-102-11/+45
|
* Use highlighting in explanation classesFelix Mulder2016-10-101-18/+27
|
* Simplify "hl" interpolatorFelix Mulder2016-10-101-11/+2
|
* Add highlighting for `???`Felix Mulder2016-10-101-1/+6
|
* Return iterable from highlighting function instead of vectorFelix Mulder2016-10-102-3/+3
|
* Add highlighter string interpolatorFelix Mulder2016-10-101-0/+16
|
* Add initial structure for improved explanations of error messagesFelix Mulder2016-10-104-13/+91
|
* Remove `Context` reference in `Comment` and `UseCase`Felix Mulder2016-10-061-16/+28
|
* Separate `ContextDocstrings` from `Context` and make it pluggableFelix Mulder2016-10-067-91/+104
|
* Implement docbase as propertyFelix Mulder2016-10-065-33/+39
|
* Typecheck usecases in fresh local scopeFelix Mulder2016-10-064-5/+3
|
* Move docstring cooking to dottyFelix Mulder2016-10-064-21/+604
|
* Fix cooking of docstringsFelix Mulder2016-10-067-29/+48
|
* Move typing of usecases to `typedClassDef`Felix Mulder2016-10-061-3/+4
|
* Fix type parameters not getting properly typedFelix Mulder2016-10-062-18/+18
|
* Fix name clashes because of `@usecase`Felix Mulder2016-10-061-12/+25
|
* Typecheck usecasesFelix Mulder2016-10-062-1/+12
|
* Add `Comments` object instead of `Scanners.Comment` case classFelix Mulder2016-10-065-9/+81
|
* Fix build failure after merging #1492Guillaume Martres2016-10-061-1/+3
| | | | The one-parameter constructor of SourceFile was removed in #1494
* Merge pull request #1492 from dotty-staging/add-inlineGuillaume Martres2016-10-0667-366/+1354
|\ | | | | Implement inline
| * Fix inline failure in the presence of unit conversionMartin Odersky2016-10-021-1/+3
| |
| * Address @smarter's review commentsMartin Odersky2016-10-027-14/+17
| |
| * Fix incremental compilation when inline method body changesGuillaume Martres2016-10-021-2/+18
| | | | | | | | | | | | Since we have no nice way of hashing a typed tree we use the pretty-printed tree of the method (as it would be printed by -Xprint:posttyper -Xprint-types) as a hacky substitute for now.