Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
with:
ruby-version: "3.4"
bundler-cache: true
# - name: Check Sorbet
# run: bundle exec rake typecheck:tapioca typecheck:sorbet
- name: Check Sorbet
run: bundle exec rake typecheck:tapioca typecheck:sorbet
- name: Check Steep
run: bundle exec rake typecheck:steep
- name: Check field kinds
Expand Down
4 changes: 2 additions & 2 deletions rakelib/check_manifest.rake
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ task check_manifest: :templates do
compile_commands.json
include/prism/config.h
lib/prism/prism.{so,bundle,jar}
sig/_*/*.rbs
sig/**/_*/*.rbs
rbi/_shims/*.rbi
sig/_shims/*.rbs
tags
]

Expand Down
11 changes: 11 additions & 0 deletions rbi/_shims/spoom.rbi
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# typed: strict

# Spoom hasn't yet adopted ErrorRecoveryNode
module Prism
class MissingNode < Node; end

class Visitor
sig { params(node: MissingNode).void }
def visit_missing_node(node); end
end
end