8000 Tags · ewalk153/sorbet · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ewalk153/sorbet

Tags

0.5.9775.20220318180650-6e74dc3a0

Toggle 0.5.9775.20220318180650-6e74dc3a0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key 8000 has expired.
Fix the linters job (sorbet#5489)

* Don't set globalErr to $?

* Trip a linter

* Revert "Trip a linter"

This reverts commit 6ed7089.

0.5.9774.20220318134733-de2133ad4

Toggle 0.5.9774.20220318134733-de2133ad4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Allow renaming method to uppercase (sorbet#5487)

* Remove guard on uppercase method name

* Add test

0.5.9773.20220318131057-7d6c85e13

Toggle 0.5.9773.20220318131057-7d6c85e13's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Initialize the indexer without custom request dispatch behavior (sorb…

…et#5484)

* Add a pointer to the preprocessor task queue LSPTypecheckCoordinator

* Checkpoint

* Send initialized state from the typechecker back to the indexer

* Add a TODO for cleaning up LSPTypechecker::initialize

* Actually transfer ownership back to the indexer

* Format

* Handle deadlock in single-thread mode

* Replace LSPIndexer::initialize

* No need to send the kvstore back -- it's dropped during initialization

* Pass the GlobalState in the IndexerInitializedTask constructor

* Resume task queue processing in the InitializedTask run function

* Rename IndexerInitializedTask to IndexerInitializationTask

0.5.9772.20220318110336-f30c52479

Toggle 0.5.9772.20220318110336-f30c52479's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Potentially delete some dead namer code (sorbet#5485)

* This might be dead code

* Yep, it's dead

0.5.9771.20220317154847-db69c5c12

Toggle 0.5.9771.20220317154847-db69c5c12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Extract a TaskQueue class (sorbet#5477)

* Extract a TaskQueue class from TaskQueueState

* Fix test

0.5.9770.20220317153935-91b4075d3

Toggle 0.5.9770.20220317153935-91b4075d3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fixup compdb sed command (sorbet#5483)

0.5.9769.20220317141655-9e0f259ba

Toggle 0.5.9769.20220317141655-9e0f259ba's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
File.binwrite accepts a String or Pathname (sorbet#5481)

Fixes [this](https://sorbet.run/#%23%20typed%3A%20true%0A%0AFile.binwrite%28Pathname.new%28%22tmp%2Ftest.txt%22%29%2C%20%22hi%22%29).

Proof:

```ruby
2.7.3 :001 > File.binwrite(Pathname.new("tmp/test.txt"), "hi")
 => 2
2.7.3 :002 > File.read "tmp/test.txt"
 => "hi"
```

0.5.9768.20220317093448-c6b223ecc

Toggle 0.5.9768.20220317093448-c6b223ecc's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump compdb version to fix header-only cc_library assumed as C (sorbe…

…t#5480)

0.5.9767.20220316192611-f72aeb0a7

Toggle 0.5.9767.20220316192611-f72aeb0a7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[RFC] Do not error on `**kwargs` parameters name mismatch (sorbet#5142)

* Do not error on `**kwargs` parameters name mismatch

Signed-off-by: Alexandre Terrasa <alexandre.terrasa@shopify.com>

* Apply suggestions from code review

Co-authored-by: Jake Zimmerman <zimmerman.jake@gmail.com>

0.5.9766.20220316165251-1409470d6

Toggle 0.5.9766.20220316165251-1409470d6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
handle case when opt + splat has fewer args than arg types (sorbet#5475)

0