Class: Tapioca::Compilers::Stanza

Inherits:
Dsl::Compiler
  • Object
show all
Defined in:
sorbet/tapioca/compilers/rubocop_cask_ast_stanza.rb

Constant Summary collapse

ConstantType =
type_member { { fixed: T::Module[T.anything] } }

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.gather_constantsEnumerable<T::Module[T.anything]>

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



13
# File 'sorbet/tapioca/compilers/rubocop_cask_ast_stanza.rb', line 13

def self.gather_constants = [::RuboCop::Cask::AST::Stanza]

Instance Method Details

#decoratevoid

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

This method returns an undefined value.

Raises:

  • (ArgumentError)


16
17
18
19
20
21
22
23
24
25
# File 'sorbet/tapioca/compilers/rubocop_cask_ast_stanza.rb', line 16

def decorate
  name = constant.name
  raise ArgumentError, "Cannot generate an RBI for anonymous module #{constant.inspect}" if name.nil?

  root.create_module(name) do |mod|
    ::RuboCop::Cask::Constants::STANZA_ORDER.each do |stanza|
      mod.create_method("#{stanza}?", return_type: "T::Boolean", class_method: false)
    end
  end
end