@effect/language-service 0.18.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/index.js +846 -104
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transform.js +641 -70
- package/transform.js.map +1 -1
package/README.md
CHANGED
|
@@ -33,6 +33,8 @@ And you're done! You'll now be able to use a set of refactor and diagnostics tha
|
|
|
33
33
|
|
|
34
34
|
- Show the extended type of the current Effect
|
|
35
35
|
- Hovering yield\* of Effect.gen will show the Effect type parameters
|
|
36
|
+
- Hovering a variable assignment of a type Layer, will show info on how each service got involve
|
|
37
|
+
- Hovering a layer, will attempt to produce a graph
|
|
36
38
|
|
|
37
39
|
### Diagnostics
|
|
38
40
|
|
|
@@ -58,6 +60,9 @@ And you're done! You'll now be able to use a set of refactor and diagnostics tha
|
|
|
58
60
|
- Remove unnecessary `Effect.gen` definitions that contains a single `yield` statement.
|
|
59
61
|
- Wrap an `Effect` expression with `Effect.gen`
|
|
60
62
|
|
|
63
|
+
### Miscellaneous
|
|
64
|
+
- "Go to definition" for RpcClient will resolve to the Rpc definition
|
|
65
|
+
|
|
61
66
|
## Options
|
|
62
67
|
|
|
63
68
|
Few options can be provided alongside the initialization of the Language Service Plugin.
|