Class: RBS::Resolver::ConstantResolver::Table

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/resolver/constant_resolver.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(environment) ⇒ Table

Returns a new instance of Table.



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/rbs/resolver/constant_resolver.rb', line 8

def initialize(environment)
  @children_table = {}
  @toplevel = {}

  @constants_table = {}

  environment.class_decls.each_key do |name|
    children_table[name] = {}
  end

  environment.class_decls.each do |name, entry|
    unless name.namespace.empty?
      parent = name.namespace.to_type_name

      table = children_table[parent] or raise
      constant = constant_of_module(name, entry)
    else
      table = toplevel
      constant = constant_of_module(name, entry)
    end

    table[name.name] = constant
    constants_table[name] = constant
  end

  environment.constant_decls.each do |name, entry|
    unless name.namespace.empty?
      parent = name.namespace.to_type_name

      table = children_table[parent] or raise
      constant = constant_of_constant(name, entry)
    else
      table = toplevel
      constant = constant_of_constant(name, entry)
    end

    table[name.name] = constant
  end
end

Instance Attribute Details

#children_tableObject (readonly)

Returns the value of attribute children_table.



5
6
7
# File 'lib/rbs/resolver/constant_resolver.rb', line 5

def children_table
  @children_table
end

#constants_tableObject (readonly)

Returns the value of attribute constants_table.



6
7
8
# File 'lib/rbs/resolver/constant_resolver.rb', line 6

def constants_table
  @constants_table
end

#toplevelObject (readonly)

Returns the value of attribute toplevel.



5
6
7
# File 'lib/rbs/resolver/constant_resolver.rb', line 5

def toplevel
  @toplevel
end

Instance Method Details

#children(name) ⇒ Object



48
49
50
# File 'lib/rbs/resolver/constant_resolver.rb', line 48

def children(name)
  children_table[name]
end

#constant(name) ⇒ Object



52
53
54
# File 'lib/rbs/resolver/constant_resolver.rb', line 52

def constant(name)
  constants_table[name]
end

#constant_of_constant(name, entry) ⇒ Object



65
66
67
# File 'lib/rbs/resolver/constant_resolver.rb', line 65

def constant_of_constant(name, entry)
  Constant.new(name: name, type: entry.decl.type, entry: entry)
end

#constant_of_module(name, entry) ⇒ Object



56
57
58
59
60
61
62
63
# File 'lib/rbs/resolver/constant_resolver.rb', line 56

def constant_of_module(name, entry)
  type = Types::ClassSingleton.new(
    name: name,
    location: nil
  )

  Constant.new(name: name, type: type, entry: entry)
end