class RBI::Tree
def create_class(name, superclass_name: nil, &block)
def create_class(name, superclass_name: nil, &block) T.cast(create_node(RBI::Class.new(name, superclass_name: superclass_name)), RBI::Scope).tap do |node| block&.call(node) end end
def create_constant(name, value:)
def create_constant(name, value:) create_node(RBI::Const.new(name, value)) end
def create_extend(name)
def create_extend(name) create_node(RBI::Extend.new(name)) end
def create_include(name)
def create_include(name) create_node(RBI::Include.new(name)) end
def create_method(name, parameters: [], return_type: "T.untyped", class_method: false, visibility: RBI::Public.new,
def create_method(name, parameters: [], return_type: "T.untyped", class_method: false, visibility: RBI::Public.new, comments: []) return unless Tapioca::RBIHelper.valid_method_name?(name) sig = RBI::Sig.new(return_type: return_type) method = RBI::Method.new( name, sigs: [sig], is_singleton: class_method, visibility: visibility, comments: comments, ) parameters.each do |param| method << param.param sig << RBI::SigParam.new(param.param.name, param.type) end self << method end
def create_mixes_in_class_methods(name)
def create_mixes_in_class_methods(name) create_node(RBI::MixesInClassMethods.new(name)) end
def create_module(name, &block)
def create_module(name, &block) T.cast(create_node(RBI::Module.new(name)), RBI::Scope).tap do |node| block&.call(node) end end
def create_node(node)
def create_node(node) cached = nodes_cache[node.to_s] return cached if cached nodes_cache[node.to_s] = node self << node node end
def create_path(constant, &block)
def create_path(constant, &block) constant_name = Tapioca::Runtime::Reflection.name_of(constant) raise "given constant does not have a name" unless constant_name instance = ::Module.const_get(constant_name) case instance when ::Class create_class(constant.to_s, &block) when ::Module create_module(constant.to_s, &block) else raise "unexpected type: #{constant_name} is a #{instance.class}" end end
def create_type_variable(name, type:, variance: :invariant, fixed: nil, upper: nil, lower: nil)
def create_type_variable(name, type:, variance: :invariant, fixed: nil, upper: nil, lower: nil) value = Tapioca::RBIHelper.serialize_type_variable(type, variance, fixed, upper, lower) create_node(RBI::TypeMember.new(name, value)) end
def nodes_cache
def nodes_cache @nodes_cache ||= T.let({}, T.nilable(T::Hash[String, Node])) end