aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Break out functionality from MethodTypeMartin Odersky2017-04-0620-134/+176
| | | | | | | | | | | | | | | | | | | | and generalize MethodParam to ParamRef, and TypeParamInfo to ParamInfo
| * | | Drop name checking scheme for type parametersMartin Odersky2017-04-062-10/+3
| | | | | | | | | | | | | | | | | | | | It was a red herring. Symbolic names are expanded anyway to $plus / $minus, so they can't be confused with a variance prefix.
| * | | Don't let illegal parameter names propagate into typesMartin Odersky2017-04-061-4/+4
| | | |
| * | | Fix dottydoc parameter printingMartin Odersky2017-04-061-4/+1
| | | |
| * | | Add neg test for illegal parameter namesMartin Odersky2017-04-062-1/+2
| | | | | | | | | | | | | | | | and fix typo
| * | | Encode variances in parameter namesMartin Odersky2017-04-0613-41/+76
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | This leads to a slight overall simplification, harmonizes pickle format with internal representation, and makes MethodTypes and PolyTypes more similar to each other. I believe the change is useful as it is, but in particular it is a useful step for an eventual unification of MethodTypes and PolyTypes.
* | | Merge pull request #1958 from dotty-staging/add-enumodersky2017-04-0647-184/+834
|\ \ \ | | | | | | | | Add "enum" construct
| * | | Emit enum utility methods only if enum class is not genericMartin Odersky2017-04-061-6/+8
| | | |
| * | | Another test fixedMartin Odersky2017-04-051-1/+1
| | | |
| * | | Update test and add check fileMartin Odersky2017-04-052-1/+9
| | | |
| * | | Implementation of proposal changesMartin Odersky2017-04-055-50/+107
| | | | | | | | | | | | | | | | | | | | - rename utility methods - generate utility methods also for object cases
| * | | Add check fileMartin Odersky2017-04-051-0/+1
| | | |
| * | | New and updated testsMartin Odersky2017-04-044-3/+37
| | | |
| * | | Infer enum type args from type parameter boundsMartin Odersky2017-04-042-12/+57
| | | | | | | | | | | | | | | | | | | | | | | | Infer type arguments for enum paraments from corresponding type parameter bounds. This only works if the type parameter in question is variant and its bound is ground.
| * | | Fix rebase breakageMartin Odersky2017-04-041-1/+1
| | | |
| * | | Avoid assertion failure on neg testMartin Odersky2017-04-041-1/+8
| | | | | | | | | | | | | | | | This commit can hopefully be reverted once #2121 is in.
| * | | Fix neg test error countMartin Odersky2017-04-041-1/+1
| | | | | | | | | | | | | | | | | | | | Previous expansion caused 3 spurious follow-on errors which are now avoided.
| * | | Support cases with type parameters that extend a non-parameterized baseMartin Odersky2017-04-043-16/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Support cases with type parameters that implicitly extend a non-parameterized base without needing their own extends clause. The proposal has been updated to make clear that this is supported. Also address other reviewers comments.
| * | | Support comma-separated enum constantsMartin Odersky2017-04-045-30/+48
| | | |
| * | | Change enumeration members.Martin Odersky2017-04-045-26/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on the discussion in #1970, enumeration objects now have three public members: - valueOf: Map[Int, E] - withName: Map[String, E] - values: Iterable[E] Also, the variance of case type parameters is now the same as in the corresponding type parameter of the enum class.
| * | | Change return type of `apply`.Martin Odersky2017-04-042-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In an enum case like case C() extends P1 with ... with Pn ... apply now returns `P1 & ... & Pn`, where before it was just P1. Also, add to Option test.
| * | | Don't change the return type of the `copy` methodMartin Odersky2017-04-041-1/+1
| | | | | | | | | | | | | | | | | | | | `copy` should always return the type of it's rhs. The discussion of #1970 concluded that no special treatment for enums is needed.
| * | | Check that cases with type parameters also have an extends clauseMartin Odersky2017-04-042-1/+6
| | | |
| * | | Fix typo in syntaxMartin Odersky2017-04-041-1/+1
| | | |
| * | | Fix cheeky comment in nested scopeFelix Mulder2017-04-042-6/+47
| | | |
| * | | More fine-grained distinctions when flags are defined.Martin Odersky2017-04-044-9/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Flags like Trait are in fact not always defined when a symbol is created. For symbols loaded from class files, this flag, and some other is defined only once the classfile has been loaded. But this happens in general before the symbol is completed. We model this distinction by separating from the `FromStartFlags` set a new set `AfterLoadFlags` and distinguishing between the two sets in `SymDenotations#is`. Test case is enum-Option.scala. This erroneously complained before that `Enum` was not a trait.
| * | | Fix typoMartin Odersky2017-04-041-1/+1
| | | |
| * | | New test caseMartin Odersky2017-04-043-0/+44
| | | |
| * | | Be more systematic about result of apply methodMartin Odersky2017-04-041-8/+18
| | | | | | | | | | | | | | | | | | | | | | | | The same type needs to be used as a result type for the copy method, and the function type implemented by the companion module.
| * | | Link generic test to actual implementations of Enum and EnumValuesMartin Odersky2017-04-043-26/+2
| | | | | | | | | | | | | | | | These are now implemented in scala.runtime.
| * | | Another testMartin Odersky2017-04-042-0/+11
| | | |
| * | | Make `getDocComment` referentially transparentFelix Mulder2017-04-041-36/+12
| | | |
| * | | Fix "closest" computation for docstringsMartin Odersky2017-04-041-1/+3
| | | |
| * | | Improvement to REPL testMartin Odersky2017-04-041-1/+4
| | | | | | | | | | | | | | | | In case of difference, dump transcript to file for easier comparisons.
| * | | Comment out unused method in ContextMartin Odersky2017-04-041-2/+3
| | | |
| * | | Add testsMartin Odersky2017-04-047-0/+47
| | | |
| * | | Implement enum desugaringMartin Odersky2017-04-046-36/+215
| | | |
| * | | Change handling of enum defs.Martin Odersky2017-04-042-15/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous scheme did not work because desugaring cannot deal with repeated expansions. We now sidestep the issue by doing the expansion in the parser. Luckily, positions work out perfectly, so that one can reconstruct the source precisely from the parsed untyped trees.
| * | | Adapt generic tests to model modified enum values schemeMartin Odersky2017-04-045-21/+35
| | | |
| * | | Allow value expansion of modules in mergeCompanionDefsMartin Odersky2017-04-041-1/+0
| | | |
| * | | Simplify syntaxMartin Odersky2017-04-046-17/+17
| | | | | | | | | | | | | | | | `enum' only allowed as a prefix of classes, dropped from traits and objects.
| * | | Don't pass docstring as a parameter.Martin Odersky2017-04-041-39/+33
| | | | | | | | | | | | | | | | | | | | It's completely redundant, docstring is just the comment found at the `start` offset, which is passed anyway.
| * | | Add enum syntaxMartin Odersky2017-04-044-29/+115
| | | | | | | | | | | | | | | | Modify syntax.md and Tokens/Parser/untpd to support enums.
| * | | Fix mal-formatting.Martin Odersky2017-04-042-3/+5
| |/ / | | | | | | | | | Insert an empty line before "where" in an explanation.
* | | Resize dottydoc menu button to 15pxFelix Mulder2017-04-061-1/+1
| | |
* | | Make dottydoc main page responsive (#2052)Herdy Handoko2017-04-063-33/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add CSS media queries to support off-canvas sidebar * Add sidebar toggle interactivity for small viewports * Re-add sidebar toggle support for desktop viewport widths * Widen sidebar in mobile viewport and removed extra padding in content body * Reduce sidebar width back to 250px on Desktop and Tablet viewports Tablet (576px <= x < 768px) viewport sidebar is now limited to 250px to follow Desktop viewports whilst still retaining its off-canvas behaviour like Mobile. Mobile viewport (x < 576px) still implements 60% sidebar width. * Refactor media queries to follow mobile-first strategy Instead of specifying specific styles at a viewport width range, e.g. Tablet (576px <= x < 768px), the CSS properties are arranged as such that default CSS properties applies to Mobile, with Tablet and Desktop styles defined within media queries. Mobile-first strategy will ensure more consistency as style resolution will go in one direction, e.g. from Mobile -> Tablet -> Desktop. * Move `div#entity-container` and `div#doc-page-container` further down The change above, in addition to qualifying `button#menu-toggle` with `div#content-wrapper` parent selector will make the existing CSS easier to refactor removing duplicates, and to swap it into CSS pre-processor languages such as SASS or Less. * Merge redundant `div#content-body` styles Two different `div#content-body` styles was defined, one with only `position: relative` and another with the complete styles. In addition, a `div#content-body` Tablet and Desktop padding style was moved into the relevant media query to make future changes more transparent. * Change `rgba(...)` properties to insert space and prefix decimals with `0` Within the CSS file, RGBA property declaration is inconsistent: some with space after comma and some without, some has leading `0` for decimals and some dont'. This change make sure that one style is followed (space after comma and always use the leading `0` in decimals). * Move hamburger menu to original location and restore hover styling Hamburger menu now stays in the content body as per original design. However to prevent overlap with body text, a permanent 30px left padding on the body container has been added. * Remove hamburger menu transformation into arrow on expansion As per PR review comments (https://github.com/lampepfl/dotty/pull/2052) the old hamburger menu style is restored by removing CSS transforms. * Change hamburger menu positioning to `absolute` As per PR review comments (https://github.com/lampepfl/dotty/pull/2052) the hamburger menu positioning is changed back to absolute, which also means the left padding on content body is no longer needed and can be removed.
* | | Merge pull request #2025 from dotty-staging/fix-2024Nicolas Stucki2017-04-055-8/+25
|\ \ \ | | | | | | | | Fix #2024: TypeApply can be a final apply of a recursive method.
| * | | Change -XemitTasty to -YemitTastyDmitry Petrashko2017-04-041-1/+1
| | | |
| * | | Remove name clash in test.Dmitry Petrashko2017-03-131-1/+1
| | | |
| * | | Check that #2024 is fixed.Dmitry Petrashko2017-03-081-0/+4
| | | |