-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugfixes for type resolutions (#892)
* debugging-type-resolution * wip * break it again * revert a few tests * more cleanup * pass type arg ctx around properly * cleanup and restore * restore merged functionality * cleanup usages of old extractType from outside of TypeUtils * change to regular ifs * turn off verbose logging * fix type args env for type manifests * better * remove old resolveNested entirely * cleanup * changelog * changelog
- Loading branch information
Showing
22 changed files
with
1,306 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"editor.insertSpaces": false, | ||
"tslint.enable": true, | ||
"typescript.tsc.autoDetect": "off", | ||
"typescript.preferences.quoteStyle": "single", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"ocaml.sandbox": { | ||
"kind": "opam", | ||
"switch": "${workspaceFolder:rescript-vscode}/analysis" | ||
} | ||
} | ||
"editor.insertSpaces": false, | ||
"tslint.enable": true, | ||
"typescript.tsc.autoDetect": "off", | ||
"typescript.preferences.quoteStyle": "single", | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "explicit" | ||
}, | ||
"ocaml.sandbox": { | ||
"kind": "opam", | ||
"switch": "4.14.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
profile = default | ||
version = 0.22.4 | ||
version = 0.26.1 | ||
|
||
field-space = tight-decl | ||
break-cases = toplevel | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
(ocaml | ||
(>= 4.10)) | ||
(ocamlformat | ||
(= 0.22.4)) | ||
(= 0.26.1)) | ||
(cppo | ||
(= 1.6.9)) | ||
(reanalyze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.