Permalink
master
Commits on Apr 11, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
test reliability and performance enhancements (#735)
Extract out shared state to improve test reliability.
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Enable partial typechecking support for signature files (#755)
Enables transparent support for faster compilation by making use of any existing signature files. This is disabled in the presence of analyzers.
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Mar 23, 2021
-
-
udpate logic for remove unused binding codefix
baronfel committedMar 23, 2021
Commits on Mar 22, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Mar 16, 2021
-
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Mar 15, 2021
Commits on Mar 12, 2021
-
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Mar 6, 2021
-
Performance enhancements to BackgroundService (#734)
Removes ClearLanguageServiceRootCachesAndCollectAndFinalizeAllTransients as it's very heavy on bigger projects. Renamed checkExistingFiles to clearOldFilesFromCache. clearOldFilesFromCache now runs on an interval of 5 minutes rather than on every call to UpdateProject.
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Mar 4, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Mar 3, 2021
Commits on Mar 2, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 27, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 26, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 25, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 22, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 16, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 4, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Feb 3, 2021
-
Move semantic highlighting to the LSP members (#711)
* scaffold out new methods * default implementation of workspacesemantictokensrefresh * tests pass with new capability * turn on full calls * better model for some of thes config types * add support for serialization of flags-style DUs and U2<bool, _> DUs * fix offset calculation for ranges that are on a new line compared to previous range * correct 'unfolding' of ranges for highlighting tests * Add test to cover a case a user submitted * mark disposable types as still being types
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Apply a better comparison for finding specific workspace symbols (#713)
* apply a better comparison for finding specific workspace symbols * keep old comparison method * push some filtering down into the array generation for performances' sake
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 30, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
Update 'comparisonToMutableAssignment' code fix to account for proper…
…ties and qualified names (#708) Co-authored-by: Chet Husk <[email protected]>
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 12, 2021
-
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits -
* Crude first pass at server requests * Test function * Generate request Ids * Use a wrapper to fix type inference * Tidy up a bit * Add notification type and split handling * Add remaining requests/notifications to client * Use map in mailbox * Fixup naming * Only emit Result if no error (spec) * Improved handling of edge cases and clarify wording * Remove test function * Add some logging using FSAC.Logging * Fix typo and clairifying comment
Verified
This commit was created on GitHub.com and signed with GitHub’s verified signature.GPG key ID: 4AEE18F83AFDEB23 Learn about signing commits
Commits on Jan 11, 2021
Commits on Jan 7, 2021
Commits on Jan 5, 2021
-
-
Split out ranges that contain other ranges into a
set of subranges that do not overlap any of the child ranges. We do this because the VSCode protocol for highlighting doesn't support a range having multiple classifications, so we have to de-duplicate what FCS gives us originally.