Module: Solargraph::NodeMethods

Included in:
ApiMap, CodeMap
Defined in:
lib/solargraph/node_methods.rb

Instance Method Summary collapse

Instance Method Details

#const_from(node) ⇒ Object



25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/solargraph/node_methods.rb', line 25

def const_from node
  if node.kind_of?(AST::Node) and node.type == :const
    result = ''
    unless node.children[0].nil?
      result = const_from(node.children[0])
    end
    if result == ''
      result = node.children[1].to_s
    else
      result = result + '::' + node.children[1].to_s
    end
    result
  else
    nil
  end
end

#infer_literal_node_type(node) ⇒ Object



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/solargraph/node_methods.rb', line 42

def infer_literal_node_type node
  return nil unless node.kind_of?(AST::Node)
  if node.type == :str or node.type == :dstr
    return 'String'
  elsif node.type == :array
    return 'Array'
  elsif node.type == :hash
    return 'Hash'
  elsif node.type == :int
    return 'Integer'
  elsif node.type == :float
    return 'Float'
  end
  nil
end

#pack_name(node) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/solargraph/node_methods.rb', line 7

def pack_name(node)
  parts = []
  if node.kind_of?(AST::Node)
    node.children.each { |n|
      if n.kind_of?(AST::Node)
        if n.type == :cbase
          parts = pack_name(n)
        else
          parts += pack_name(n)
        end
      else
        parts.push n unless n.nil?
      end
    }
  end
  parts
end

#resolve_node_signature(node) ⇒ String

Get a call signature from a node. The result should be a string in the form of a method path, e.g., String.new or variable.method.

Returns:

  • (String)


63
64
65
# File 'lib/solargraph/node_methods.rb', line 63

def resolve_node_signature node
  drill_signature node, ''
end

#unpack_name(node) ⇒ Object



3
4
5
# File 'lib/solargraph/node_methods.rb', line 3

def unpack_name(node)
  pack_name(node).join("::")
end