@@ -3,7 +3,7 @@ layout: blog-page
3
3
title : Announcing Dotty 0.11.0-RC1
4
4
author : Allan Renucci
5
5
authorImg : /images/allan.jpg
6
- date : 2018-11-17
6
+ date : 2018-11-30
7
7
---
8
8
9
9
Today we are excited to release Dotty version 0.11.0-RC1.
@@ -88,38 +88,28 @@ d1 - d2 // error: `-` is not a member of Duration
88
88
### Worksheet Mode Support in Visual Studio Code
89
89
90
90
Dotty IDE can now be used in Worksheet mode. A worksheet is a Scala file that is evaluated on save,
91
- and the result of each expression is shown in a column to the right of your program. Worksheets are
92
- like a REPL session on steroids, and enjoy 1st class editor support: completion , hyperlinking,
91
+ and the result of each expression is displayed in a column on the right of your program. Worksheets
92
+ are like a REPL session on steroids, and enjoy 1st class editor support: completions , hyperlinking,
93
93
interactive errors-as-you-type, etc.
94
94
95
95
![ ] ({{ site.baseurl }}/images/worksheets/worksheet-demo.gif "Run worksheet")
96
96
97
- For more information about the worksheet , see [ Worksheet mode with Dotty
97
+ For more information about the worksheets , see [ Worksheet mode with Dotty
98
98
IDE] ( http://dotty.epfl.ch/docs/usage/worksheet-mode.html )
99
99
100
100
### Various IDE improvements
101
101
102
102
#### Help with method signatures
103
103
104
- When writing a method call, Dotty IDE will now show contextual information that helps completing
105
- the method call .
104
+ When writing a method call, Dotty IDE will now show contextual information that helps filling in the
105
+ arguments of the method.
106
106
107
107
![ ] ({{ site.baseurl }}/images/dotty-ide/signature-help.png "Signature help")
108
108
109
- #### Multi-project support for "Find all references"
109
+ #### Improved display of documentation in Dotty IDE
110
110
111
- Software projects are often split in several modules that depend on each other. When looking for
112
- all the references to a given symbol, the IDE should also try to find references to that symbol
113
- in other projects.
114
-
115
- In previous versions, Dotty IDE would limit the search to the current project. Starting with this
116
- release, Dotty IDE will search for references to a given symbol in all the projects where this
117
- symbol could appear.
118
-
119
- #### Better display of documentation in Dotty IDE
120
-
121
- In this release, we reworked how we display the documentation inside the IDE, and integrated it
122
- with all the situations where displaying the documentation is useful.
111
+ In this release, we reworked how we show documentation inside the IDE. We now extract usefull
112
+ information from the Scaladoc comment, then format it before we display it in the IDE.
123
113
124
114
![ ] ({{ site.baseurl }}/images/dotty-ide/documentation-hover.png "Documentation hover")
125
115
0 commit comments