aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix line splitting when point is first col of lineFelix Mulder2016-11-021-1/+1
|
* Merge pull request #1629 from ljdelight/errorMessagesFelix Mulder2016-10-312-2/+19
|\ | | | | Update error msg for Parsers.scala:1738 and 1739
| * Update error msg for Parsers.scala:1738 and 1739Lucas Burson2016-10-312-2/+19
|/ | | | | | | | | | | | | | | | These error messages are for aux ctors needing non-implicit params. I'm testing the error messages with this code ``` class Square(val len: Int) { // typical cases: // (1) this() parens are forgotten, (2) argument set as implicit def this(implicit width: Double) = this(0) def this = { this(4) } } class MyList(val s: String) { def this ```
* Merge pull request #1633 from thiagoandrade6/feature/error-identifier-expectedFelix Mulder2016-10-313-2/+27
|\ | | | | Add error message IdentifierExpected
| * Add error message IdentifierExpectedThiago Pereira2016-10-313-2/+27
|/ | | | | This commit adds the semantic object fir the ```identifier expected``` error. It is part of the https://github.com/lampepfl/dotty/issues/1589
* Merge pull request #1630 from m-sp/masterFelix Mulder2016-10-312-1/+14
|\ | | | | Add error message Parsers.scala:1620 missing type keyword
| * Add error message Parsers.scala:1620 missing type keywordMatthias Sperl2016-10-312-1/+14
| |
* | Remove broken link in docs indexFelix Mulder2016-10-311-1/+1
| |
* | Change base-url, so dotty.epfl.ch can build masterFelix Mulder2016-10-311-1/+1
| |
* | Change base url to match new CNAME from dotty.epfl.chFelix Mulder2016-10-311-1/+1
| |
* | Create CNAMEFelix Mulder2016-10-311-0/+1
| |
* | Merge pull request #1631 from felixmulder/topic/fix-nightlyFelix Mulder2016-10-261-3/+0
|\ \ | |/ |/| Fix nightly builds
| * Remove setting to not publish docs for dotty projectFelix Mulder2016-10-261-3/+0
|/
* Merge pull request #1623 from ShaneDelmore/1589_Missing_error_messagesFelix Mulder2016-10-265-8/+81
|\ | | | | #1589: Improve error message for WrongNumberOfArgs
| * Improve error message formattingShane Delmore2016-10-251-27/+39
| |
| * Update IllegalVariableInPatternAlternative error messageShane Delmore2016-10-252-1/+27
| |
| * Improve error message for WrongNumberOfArgsShane Delmore2016-10-254-6/+41
|/
* Merge pull request #1628 from AndrewZurn/masterFelix Mulder2016-10-252-1/+25
|\ | | | | Add error message - Parsers.scala:695
| * Add error message - Parsers.scala:695Andrew Zurn2016-10-252-1/+25
|/
* Merge pull request #1621 from thiagoandrade6/feature/error-messagesFelix Mulder2016-10-252-2/+40
|\ | | | | Add error message - Comments.scala:128
| * Add error message - Comments.scala:128Thiago Pereira2016-10-252-2/+40
| | | | | | | | | | This commit adds the semantic object for the ```definition not found``` error. It is part of the (https://github.com/lampepfl/dotty/issues/1589)[https://github.com/lampepfl/dotty/issues/1589]
* | Merge pull request #1600 from dotty-staging/fix-#1500Guillaume Martres2016-10-252-14/+62
|\ \ | |/ |/| Fix-#1500 Include constraining type variables when interpolating
| * Remove fixpoint computation of interpolateUndetVarsGuillaume Martres2016-10-251-10/+5
| | | | | | | | | | This is not necessary now that `variances` includes a fixpoint computation
| * Fix-#1500 Include constraining type variables when interpolatingMartin Odersky2016-10-152-5/+58
| | | | | | | | Fixes #1500. Review by @smarter.
* | Merge pull request #1599 from dotty-staging/fix-#1570Guillaume Martres2016-10-253-4/+14
|\ \ | | | | | | Fix #1570: Allow inline parameters as inline args
| * | Fix #1570: Allow inline parameters as inline argsMartin Odersky2016-10-143-4/+14
| |/ | | | | | | | | | | | | Inline parameters can always be passed to other inline parameters. Fixes #1570.
* | Merge pull request #1624 from sebastianharko/masterFelix Mulder2016-10-252-1/+33
|\ \ | | | | | | Add error message for Parsers:1329
| * | break linesSebastian Harko2016-10-251-14/+11
| | |
| * | add error message related to missing yield/do in for-comprehensionsSebastian Harko2016-10-242-1/+36
| | |
* | | Merge pull request #1608 from dotty-staging/modifiersodersky2016-10-253-41/+260
|\ \ \ | | | | | | | | Record syntactic information about modifiers
| * | | fix error in rebase mergeliu fengyun2016-10-241-1/+1
| | | |
| * | | rename val and unnecessary atPosliu fengyun2016-10-221-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Note that there's no need to explicitly call `atPos` here, because the initializer of `Positioned` will automatically synthesize the initial position from its children elements. Refer to the definition of `Positioned` for more details.
| * | | address review feedbackliu fengyun2016-10-223-50/+41
| | | |
| * | | add tests for modifiersliu fengyun2016-10-222-10/+182
| | | |
| * | | Record syntactic information about modifiersliu fengyun2016-10-222-14/+70
| | | |
* | | | Merge pull request #1620 from dotty-staging/fix-1614Felix Mulder2016-10-252-1/+14
|\ \ \ \ | |_|/ / |/| | | Fix #1614 tailrec.
| * | | Test that #1614 remains fixed.Dmitry Petrashko2016-10-231-0/+9
| | | |
| * | | Fix #1614: correctly handle polymorphic inner methodsDmitry Petrashko2016-10-231-1/+5
| | | | | | | | | | | | | | | | | | | | Even if outer class & method isn't polymorpnic, inner method might be. Need to handle this correctly.
* | | | Merge pull request #1616 from ljdelight/errorMessageUpdatesFelix Mulder2016-10-242-3/+15
|\ \ \ \ | |/ / / |/| | | Update error message at Parsers.scala:1901
| * | | Update error message at Parsers.scala:1901Lucas Burson2016-10-232-3/+15
|/ / / | | | | | | | | | This one is about a 'missing return type' when we can't infer a type. I used tests/neg/i871.scala to verify the change.
* | | Merge pull request #1613 from jyotman94/error_message_Parsers.scala-1180Felix Mulder2016-10-232-1/+19
|\ \ \ | |/ / |/| | Add error message - Parsers.scala:1180
| * | Add explanation for "illegal start of simple expression"Jyotman Singh2016-10-232-1/+19
|/ /
* | Merge pull request #1618 from ↵Felix Mulder2016-10-222-1/+36
|\ \ | | | | | | | | | | | | rubenpieters/issue-1589-unbound-placeholder-parameter-error-message Add unbound placeholder parameter message.
| * | Add unbound placeholder parameter message.ruben2016-10-222-1/+36
|/ /
* | Merge pull request #1615 from sebastianharko/masterFelix Mulder2016-10-222-2/+49
|\ \ | | | | | | Add error messages - Parsers.scala:626 and Parsers.scala:1492
| * | add messages for interpolated string error and repeated modifier errorSebastian Harko2016-10-212-2/+49
| | |
* | | Merge pull request #1479 from dotty-staging/fix-#1286odersky2016-10-213-0/+39
|\ \ \ | | | | | | | | Fix #1286: Warn on inexistent imports that are not used.
| * | | Fix #1286: Error on inexistent imports that are not used.Nicolas Stucki2016-10-213-0/+39
|/ / / | | | | | | | | | This commit also fixes #1583.
* | | Merge pull request #1617 from dotty-staging/change-shadow-scalaodersky2016-10-2012-32/+233
|\ \ \ | | | | | | | | Introduce scalaShadowing package
| * | | Move files out of the dotty packageMartin Odersky2016-10-2011-32/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove unused classes Pair and Singleton. - Move classes from dotty.annotation.internal to scala.annotation.internal. The only classes remaining now are in dotty.runtime and DottyPredef. We should probably do something about them as well at some point.