aboutsummaryrefslogtreecommitdiff
path: root/tests/repl/errmsgs.check
Commit message (Collapse)AuthorAgeFilesLines
* Render line and col in error message for clickabilityFelix Mulder2017-04-161-11/+11
|
* Update repl check filesMartin Odersky2017-03-051-1/+1
| | | | | | Deleting an error message changes all subsequent error message umbers, which means that REPL tests were invalidated. This is a bit unfortunate from a testing standpoint.
* Ennru forward reference error (#1973)Enno2017-02-141-0/+7
| | | | | | | | | | * Change 'forward reference extending over the definition' to Message * Change 'forward reference extending over the definition' to Message * pesky file should not be included * Change 'forward reference extending over the definition' to Message (test case)
* Better positions for infix term operations.Guillaume Martres2017-02-051-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | Preserving the position of infix operators is useful for IDEs' type-at-point. We also preserve the position of the untyped lhs of right-associative operators, this is useful both for IDEs and for error messages, before: 4 |val x: List[Int] = "foo" :: List(1) | ^ | found: String($1$) | required: Int | After: scala> val x: List[Int] = "foo" :: List(1) -- [E007] Type Mismatch Error: <console> --------------------------------------- 4 |val x: List[Int] = "foo" :: List(1) | ^^^^^ | found: String($1$) | required: Int | Note: It would be even nicer if we displayed "String" instead of "String($1$)" since $1$ is synthetic, this commit does not address this.
* Add dotty-library to classpath in dottydoc testsFelix Mulder2016-11-221-24/+24
|
* Add Levenshtein distance for member values and typesFelix Mulder2016-10-101-0/+5
|
* Improve positions for MemberDefs using `namePos`Felix Mulder2016-10-101-8/+8
|
* Handle multiline messages in ConsoleReporterFelix Mulder2016-10-101-45/+45
|
* Fix TypeMismatch not getting nonsensical tags in some casesFelix Mulder2016-10-101-8/+8
| | | | Thanks @smarter!
* Fix reporting of ErrorTypes in highlighted segmentsFelix Mulder2016-10-101-8/+8
|
* Make `typeDiff` aware of placeholder typesFelix Mulder2016-10-101-7/+7
|
* Refactor explanation interpolatorFelix Mulder2016-10-101-32/+29
|
* Remove duplication of console reportersFelix Mulder2016-10-101-46/+51
|
* Add modifiers to highlightingFelix Mulder2016-10-101-24/+24
|
* Fix readLine in TestREPL to align with Ammonite readerMartin Odersky2016-08-161-0/+74
Needs to read several input lines at once. Enables repl test of new error messages.