Module: RBS::Prototype::Helpers
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Included In:
| |
Defined in: | lib/rbs/prototype/helpers.rb |
Instance Method Summary
- #any_node?(node, nodes: [], &block) ⇒ Boolean private
-
#args_from_node(args_node)
private
NOTE: args_node may be a nil by a bug bugs.ruby-lang.org/issues/17495.
- #block_from_body(node) private
- #each_child(node, &block) private
- #each_node(nodes) private
- #keyword_hash?(node) ⇒ Boolean private
- #untyped private
Instance Method Details
#any_node?(node, nodes: [], &block) ⇒ Boolean
(private)
# File 'lib/rbs/prototype/helpers.rb', line 81
def any_node?(node, nodes: [], &block) if yield(node) nodes << node end each_child node do |child| any_node? child, nodes: nodes, &block end nodes.empty? ? nil : nodes end
#args_from_node(args_node) (private)
NOTE: args_node may be a nil by a bug bugs.ruby-lang.org/issues/17495
# File 'lib/rbs/prototype/helpers.rb', line 105
def args_from_node(args_node) args_node&.children || [0, nil, nil, nil, 0, nil, nil, nil, nil, nil] end
#block_from_body(node) (private)
[ GitHub ]# File 'lib/rbs/prototype/helpers.rb', line 8
def block_from_body(node) _, args_node, body_node = node.children _pre_num, _pre_init, _opt, _first_post, _post_num, _post_init, _rest, _kw, _kwrest, block = args_from_node(args_node) method_block = nil if block method_block = Types::Block.new( required: false, type: Types::Function.empty(untyped), self_type: nil ) end if body_node if (yields = any_node?(body_node) {|n| n.type == :YIELD }) method_block = Types::Block.new( required: true, type: Types::Function.empty(untyped), self_type: nil ) yields.each do |yield_node| array_content = yield_node.children[0]&.children&.compact || [] # @type var keywords: node? positionals, keywords = if keyword_hash?(array_content.last) [array_content.take(array_content.size - 1), array_content.last] else [array_content, nil] end if (diff = positionals.size - method_block.type.required_positionals.size) > 0 diff.times do method_block.type.required_positionals << Types::Function::Param.new( type: untyped, name: nil ) end end if keywords keywords.children[0].children.each_slice(2) do |key_node, value_node| if key_node key = key_node.children[0] method_block.type.required_keywords[key] ||= Types::Function::Param.new( type: untyped, name: nil ) end end end end end end method_block end
#each_child(node, &block) (private)
[ GitHub ]# File 'lib/rbs/prototype/helpers.rb', line 69
def each_child(node, &block) each_node node.children, &block end
#each_node(nodes) (private)
[ GitHub ]# File 'lib/rbs/prototype/helpers.rb', line 73
def each_node(nodes) nodes.each do |child| if child.is_a?(RubyVM::AbstractSyntaxTree::Node) yield child end end end
#keyword_hash?(node) ⇒ Boolean
(private)
# File 'lib/rbs/prototype/helpers.rb', line 93
def keyword_hash?(node) if node && node.type == :HASH node.children[0].children.compact.each_slice(2).all? {|key, _| key.type == :LIT && key.children[0].is_a?(Symbol) } else false end end