Module: Rigor::Inference::ScopeIndexer

Defined in:
lib/rigor/inference/scope_indexer.rb,
sig/rigor/inference.rbs

Overview

Builds a per-node scope index for a Prism program by running Rigor::Inference::StatementEvaluator over the root and recording the entry scope visible at every node. Expression-interior nodes the evaluator does not specialise (call receivers, arguments, array/hash elements, ...) inherit their nearest statement-y ancestor's recorded scope, so a downstream caller that looks up the scope for any Prism node in the tree always gets the scope that was effectively visible at that point.

The CLI commands rigor type-of and rigor type-scan consume the index so that local-variable bindings established earlier in the program are visible to the typer when probing later nodes. Without the index, both commands would type every node under an empty scope and miss the constant-folding / dispatch precision that Slice 3 phase 2's StatementEvaluator unlocks.

The returned object is an identity-comparing Hash:

index = Rigor::Inference::ScopeIndexer.index(program, default_scope: Scope.empty)
index[some_prism_node] #=> the Rigor::Scope visible at that node

Nodes that are not part of the program subtree (e.g. synthesised virtual nodes that the caller looks up after the fact) yield the default_scope. The returned Hash is mutable in principle but callers MUST treat it as read-only; the indexer itself never exposes a way to update it past construction. rubocop:disable Metrics/ModuleLength

Defined Under Namespace

Classes: MethodEffectResolver

Constant Summary collapse

TOP_LEVEL_DEF_KEY =

v0.0.3 A — sentinel key under which record_def_node files DefNodes that live outside any class / module body (top-level helpers, defs nested inside DSL blocks like RSpec.describe ... do; def helper; end). Looked up by Scope#top_level_def_for to give implicit-self calls priority over RBS dispatch when the file defines a same-named local method.

"<toplevel>"
MIXIN_CALL_NAMES =
%i[include prepend].freeze
VISIBILITY_MODIFIERS =
%i[public private protected].freeze
ATTR_MACROS =

The attr_* accessor macros that introduce methods Rigor must treat as source-declared. Without this, a class that defines an accessor with attr_reader :x AND carries RBS that omits x (a common gap — the project ships an incomplete sig/) fires a false call.undefined-method on obj.x, because the undefined-method rule only suppressed def / define_method / alias_method-discovered methods. attr_reader defines readers, attr_writer writers (x=), attr_accessor both.

%i[attr_reader attr_writer attr_accessor].freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.accumulate_ivar_type(accumulator, class_name, ivar_name, type) ⇒ Object

Unions type into the class-ivar accumulator for (class_name, ivar_name). Shared by the single-write and multi-write (parallel-assignment) collectors.



1030
1031
1032
1033
1034
1035
# File 'lib/rigor/inference/scope_indexer.rb', line 1030

def accumulate_ivar_type(accumulator, class_name, ivar_name, type)
  accumulator[class_name] ||= {}
  existing = accumulator[class_name][ivar_name]
  accumulator[class_name][ivar_name] =
    existing ? Type::Combinator.union(existing, type) : type
end

.accumulate_project_index(acc, path, root) ⇒ Object

Folds one file's class-keyed indexes into the cross-file accumulator. method_visibilities (ADR-35) is collected here so the override-visibility-reduced rule can read an ancestor's visibility declared in a sibling file.



2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
# File 'lib/rigor/inference/scope_indexer.rb', line 2482

def accumulate_project_index(acc, path, root)
  # One combined descent yields both the methods existence table and the def-node table; the latter is also
  # consumed by `record_class_sources`, so a def-dense file is walked once here instead of three times (methods +
  # def-nodes ×2). See {#build_methods_and_def_nodes}.
  file_methods, file_def_nodes = build_methods_and_def_nodes(root)
  merge_discovered_defs(acc[:def_nodes], acc[:def_sources], path, file_def_nodes)
  # ADR-46 slice 4 (singleton) — record the singleton-side `"path:line"` sources alongside the nodes,
  # the exact mirror of the instance-side `merge_discovered_defs`, so a class/singleton-method body edit
  # produces a changed `"Class.method"` fingerprint pair (and its call sites a symbol edge) instead of
  # silently degrading to the file's full ancestry closure.
  merge_discovered_defs(acc[:singleton_def_nodes], acc[:singleton_def_sources], path,
                        build_discovered_singleton_def_nodes(root))
  superclasses = build_discovered_superclasses(root)
  includes = build_discovered_includes(root)
  acc[:superclasses].merge!(superclasses)
  includes.each do |class_name, mods|
    acc[:includes][class_name] = ((acc[:includes][class_name] || []) + mods).uniq
  end
  record_class_sources(acc[:class_sources], path, root, superclasses, includes, file_def_nodes)
  merge_class_keyed_index_tables(acc, root, file_methods)
  merge_member_layout_tables(acc, root)
end

.additional_initializer?(class_name, method_name, default_scope) ⇒ Boolean

ADR-38 — true when a loaded plugin declares method_name an additional initializer for class_name (or an ancestor). Reads the plugin registry off the pre-pass scope's environment; the receiver-constraint match reuses Environment#class_ordering (the same mechanism ADR-16 Tier A's MacroBlockSelfType uses). The whole lookup is wrapped so any resolution failure degrades to "no match" — since the gate only ever SUPPRESSES a nil contribution, a missed match is false-positive-safe (it merely leaves the existing nil widening in place).

Returns:

  • (Boolean)


467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
# File 'lib/rigor/inference/scope_indexer.rb', line 467

def additional_initializer?(class_name, method_name, default_scope)
  return false if class_name.nil? || default_scope.nil?

  environment = default_scope.environment
  registry = environment&.plugin_registry
  return false if registry.nil?
  return false if registry.respond_to?(:empty?) && registry.empty?
  return false unless registry.respond_to?(:additional_initializers)

  registry.additional_initializers.any? do |entry|
    entry.covers_method?(method_name) &&
      class_matches_constraint?(class_name, entry.receiver_constraint, environment)
  end
rescue StandardError
  false
end

.always_raises?(node) ⇒ Boolean

True when node (a single statement or its last statement) is an unconditional raise/fail call that always terminates the path — used to treat raise-terminated branches as non-completing (they never observe the seed nil).

Returns:

  • (Boolean)


985
986
987
988
989
990
991
# File 'lib/rigor/inference/scope_indexer.rb', line 985

def always_raises?(node)
  node = top_level_statements(node).last if node.is_a?(Prism::StatementsNode)
  return false unless node.is_a?(Prism::CallNode)
  return false unless node.receiver.nil?

  %i[raise fail].include?(node.name)
end

.append_ancestry_signature(parts, file_index) ⇒ Object

The class-declaration + ancestry + member-layout surface of the declaration signature (declared class names, superclass / include ancestry, Data/Struct member layouts). Kept out of #declaration_signature to hold its ABC budget.



2138
2139
2140
2141
2142
2143
2144
2145
2146
# File 'lib/rigor/inference/scope_indexer.rb', line 2138

def append_ancestry_signature(parts, file_index)
  parts.concat(file_index[:class_sources].keys.sort_by(&:to_s).map { |cn| "c:#{cn}" })
  parts.concat(sorted_by_class(file_index[:superclasses]).map { |cn, sc| "s:#{cn}<#{sc}" })
  parts.concat(sorted_by_class(file_index[:includes]).map do |cn, mods|
    "i:#{cn}=#{Array(mods).map(&:to_s).sort.join(',')}"
  end)
  parts.concat(sorted_by_class(file_index[:data_member_layouts]).map { |cn, l| "d:#{cn}=#{l.inspect}" })
  parts.concat(sorted_by_class(file_index[:struct_member_layouts]).map { |cn, l| "t:#{cn}=#{l.inspect}" })
end

.append_declaration_tables(parts, file_index) ⇒ Object

The method-existence and visibility surfaces of the declaration signature (kept out of #declaration_signature to hold its ABC budget). Both are consumed cross-file — the existence table by undefined-method suppression, the visibilities by the ADR-35 override-visibility rule.



2156
2157
2158
2159
2160
2161
2162
2163
# File 'lib/rigor/inference/scope_indexer.rb', line 2156

def append_declaration_tables(parts, file_index)
  file_index[:methods].sort_by { |cn, _| cn.to_s }.each do |cn, table|
    table.sort_by { |m, _| m.to_s }.each { |m, kind| parts << "e:#{cn}##{m}=#{kind}" }
  end
  file_index[:method_visibilities].sort_by { |cn, _| cn.to_s }.each do |cn, table|
    table.sort_by { |m, _| m.to_s }.each { |m, vis| parts << "v:#{cn}##{m}=#{vis}" }
  end
end

.append_def_signatures(parts, defs, separator) ⇒ Object

Appends one def-node table's per-method signature entries (name + parameter structure + def-start line) under separator (# instance / . singleton). Nodes here are always LIVE (both call sites — #scan_summary_for_paths and #build_seed_bundle — pass a freshly parsed single-file index), so the parameter structure and location are read directly.



2169
2170
2171
2172
2173
2174
2175
# File 'lib/rigor/inference/scope_indexer.rb', line 2169

def append_def_signatures(parts, defs, separator)
  defs.sort_by { |cn, _| cn.to_s }.each do |class_name, methods|
    methods.sort_by { |m, _| m.to_s }.each do |method_name, node|
      parts << "m:#{class_name}#{separator}#{method_name}#{parameter_signature(node)}@#{def_start_line(node)}"
    end
  end
end

.apply_alias_def_nodes(root, accumulator) ⇒ Object

Post-pass over the def_nodes accumulator: for every alias declaration inside a class body, if the original method name maps to a Prism::DefNode, register the new name pointing to the same node so inter-procedural return-type inference works for the aliased name.



1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
# File 'lib/rigor/inference/scope_indexer.rb', line 1927

def apply_alias_def_nodes(root, accumulator)
  alias_map = collect_class_alias_map(root, [], {})
  alias_map.each do |class_name, aliases|
    class_defs = accumulator[class_name]
    next unless class_defs

    aliases.each do |new_name, old_name|
      def_node = class_defs[old_name]
      next unless def_node.is_a?(Prism::DefNode)

      (accumulator[class_name] ||= {})[new_name] = def_node
    end
  end
end

.apply_named_visibility(args, qualified_prefix, visibility, accumulator) ⇒ Object



1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
# File 'lib/rigor/inference/scope_indexer.rb', line 1894

def apply_named_visibility(args, qualified_prefix, visibility, accumulator)
  class_name = qualified_prefix.join("::")
  args.each do |arg|
    name = visibility_target_name(arg)
    next if name.nil?

    accumulator[class_name] ||= {}
    accumulator[class_name][name] = visibility
  end
end

.apply_visibility_call(call_node, qualified_prefix, current_visibility, accumulator) ⇒ Object

Recognises modifier calls on the implicit-self receiver inside a class body. Returns the (possibly updated) current visibility:

  • private / public / protected (no args) — switch the running default for subsequent defs.
  • private :foo, :bar — back-patch the named methods in the accumulator. Returns current_visibility unchanged because the running default does NOT change for this form.


1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
# File 'lib/rigor/inference/scope_indexer.rb', line 1880

def apply_visibility_call(call_node, qualified_prefix, current_visibility, accumulator)
  return current_visibility unless call_node.receiver.nil?
  return current_visibility unless VISIBILITY_MODIFIERS.include?(call_node.name)
  return current_visibility if qualified_prefix.empty?

  args = call_node.arguments&.arguments || []
  if args.empty?
    call_node.name
  else
    apply_named_visibility(args, qualified_prefix, call_node.name, accumulator)
    current_visibility
  end
end

.bare_module_function?(node) ⇒ Boolean

Returns:

  • (Boolean)


1567
1568
1569
# File 'lib/rigor/inference/scope_indexer.rb', line 1567

def bare_module_function?(node)
  node.arguments.nil? || node.arguments.arguments.empty?
end

.block_initializer?(class_name, method_name, default_scope) ⇒ Boolean

ADR-38 block-form gate: true when a loaded plugin declares method_name a block-form initializer for class_name (or an ancestor). Mirrors additional_initializer? but queries covers_block_method? instead of covers_method?.

Returns:

  • (Boolean)


418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
# File 'lib/rigor/inference/scope_indexer.rb', line 418

def block_initializer?(class_name, method_name, default_scope)
  return false if class_name.nil? || default_scope.nil?

  environment = default_scope.environment
  registry = environment&.plugin_registry
  return false if registry.nil?
  return false if registry.respond_to?(:empty?) && registry.empty?
  return false unless registry.respond_to?(:additional_initializers)

  registry.additional_initializers.any? do |entry|
    entry.covers_block_method?(method_name) &&
      class_matches_constraint?(class_name, entry.receiver_constraint, environment)
  end
rescue StandardError
  false
end

.branch_definitely_assigns?(branch, target, class_name, effects, depth, visiting) ⇒ Boolean

True when a branch body (a StatementsNode / single node) definitely assigns target non-nil on every path that completes the method through it, OR terminates every path by raise (vacuously safe — no completing path observes the seed nil). Returns false if any path can complete/return without the assignment.

Returns:

  • (Boolean)


941
942
943
944
945
946
947
948
949
950
951
952
953
# File 'lib/rigor/inference/scope_indexer.rb', line 941

def branch_definitely_assigns?(branch, target, class_name, effects, depth, visiting)
  stmts = top_level_statements(branch)
  return false if stmts.empty?

  stmts.each do |stmt|
    outcome = statement_assignment_outcome(stmt, target, class_name, effects, depth, visiting)
    return true if outcome == :assigned
    return false if outcome == :terminates_unassigned
  end
  # Reached the end of the branch without a definite assignment; safe only if the branch's last statement always
  # raises (no completing path falls out of it).
  always_raises?(stmts.last)
end

.build_class_cvar_index(root, default_scope) ⇒ Object

Slice 7 phase 6 — class-cvar pre-pass. Same shape as the ivar pre-pass but collects Prism::ClassVariableWriteNode writes inside ANY def body (instance or singleton) of the enclosing class, because Ruby cvars are shared across both facets. The resulting table is seeded into both instance and singleton method bodies through Scope#class_cvars_for.



1123
1124
1125
1126
1127
# File 'lib/rigor/inference/scope_indexer.rb', line 1123

def build_class_cvar_index(root, default_scope)
  accumulator = {}
  walk_class_cvars(root, [], default_scope, accumulator)
  accumulator.transform_values(&:freeze).freeze
end

.build_class_ivar_index(root, default_scope) ⇒ Object

Slice 7 phase 2. Builds the class-level ivar accumulator by walking every Prism::ClassNode / Prism::ModuleNode body, descending into each nested Prism::DefNode, and typing every Prism::InstanceVariableWriteNode rvalue under a scope that carries the appropriate self_type for that def (singleton vs instance). The rvalue is typed with NO local bindings — the pre-pass lacks statement-level threading — so @x = 1 records Constant[1] but @x = some_local + 1 records Dynamic[Top] (since some_local is unbound at pre-pass time). Multiple writes to the same ivar union via Type::Combinator.union.



207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/rigor/inference/scope_indexer.rb', line 207

def build_class_ivar_index(root, default_scope)
  accumulator = {}
  mutated_ivars = {}
  read_before_write = {}
  init_writes = {}
  # WD3 — per-class summary of `{class_name => {method_name => Set<ivar names definitely assigned non-nil on every
  # completing path>}}`, consulted by `dead_transient_nil_writes` so a ctor that reassigns `@x` indirectly through
  # an unconditional same-class method call (`mask!`) credits the overwrite. Built once per program here, memoised
  # by class.
  method_assign_effects = build_method_assign_effects(root)
  walk_class_ivars(root, [], default_scope, accumulator, mutated_ivars,
                   read_before_write, init_writes, method_assign_effects)
  widen_mutated_ivar_entries!(accumulator, mutated_ivars)
  contribute_read_before_write_nil!(accumulator, read_before_write, init_writes)
  accumulator.transform_values(&:freeze).freeze
end

.build_data_member_layouts(root) ⇒ Object

ADR-48 — per qualified class name -> ordered Data.define member-name list, for both the named-subclass form (class Point < Data.define(:x, :y)) and the constant-assigned form (Point = Data.define(:x, :y)). Only Data.define is recorded: Struct.new instances are mutable, so member-value folding would be unsound (the Struct follow-up is deferred — see ADR-48 § "Struct follow-up"). Consumed by MethodDispatcher::DataFolding via Scope#data_member_layout.



1635
1636
1637
1638
1639
# File 'lib/rigor/inference/scope_indexer.rb', line 1635

def build_data_member_layouts(root)
  accumulator = {}
  walk_data_member_layouts(root, [], accumulator)
  accumulator.freeze
end

.build_declaration_artifacts(root) ⇒ Object

Walks the program once for Prism::ModuleNode and Prism::ClassNode, recording the Singleton[<qualified>] type for the outermost constant_path node of each declaration. Inner segments of a class Foo::Bar::Baz path remain real references (resolved through the ordinary lexical walk), so we annotate ONLY the topmost path node. Nested declarations contribute their fully qualified path: class A::B; class C; ... produces A::B for the outer and A::B::C for the inner.



2620
2621
2622
2623
2624
2625
# File 'lib/rigor/inference/scope_indexer.rb', line 2620

def build_declaration_artifacts(root)
  identity_table = {}.compare_by_identity
  discovered = {}
  record_declarations(root, [], identity_table, discovered)
  [identity_table.freeze, discovered.freeze]
end

.build_discovered_includes(root) ⇒ Object

ADR-24 slice 2 — per-class/module table mapping a fully qualified user class or module to the list of module names it includes / prepends, AS WRITTEN at the mixin call (include Foo / include Foo::Bar). Only constant arguments are recorded; dynamic mixins (include some_method) produce no entry. prepend is bucketed with include — both contribute instance methods to the ancestor chain. extend is NOT tracked (it adds singleton methods; ADR-24 slice 2 resolves the instance-side chain).



1749
1750
1751
1752
1753
# File 'lib/rigor/inference/scope_indexer.rb', line 1749

def build_discovered_includes(root)
  accumulator = {}
  walk_class_includes(root, [], nil, accumulator)
  accumulator.transform_values { |mods| mods.uniq.freeze }.freeze
end

.build_discovered_method_visibilities(root) ⇒ Object

v0.1.2 — per-class method-visibility table for the def.method-visibility-mismatch CheckRule.

Tracks two visibility-changing forms:

  • Modifier blocks: a bare private / protected / public call inside a class body switches the "current default" visibility for every subsequent def until another modifier flips it again.
  • Named-argument form: private :foo, :bar (or the same with protected / public) marks specific names already-recorded under the class. Symbol-only args are recognised; private def foo; end (the wrap-around form) is not yet — it would need tracking the def-call's return-value visibility, which is a separate slice.

Top-level (no surrounding class) defs do not contribute — Ruby's top-level visibility nuances (private at top-level marks the method on Object) are out of scope for v0.1.2.



1805
1806
1807
1808
1809
# File 'lib/rigor/inference/scope_indexer.rb', line 1805

def build_discovered_method_visibilities(root)
  accumulator = {}
  walk_method_visibilities(root, [], false, :public, accumulator)
  accumulator.transform_values(&:freeze).freeze
end

.build_discovered_singleton_def_nodes(root) ⇒ Object

Module-singleton call resolution (ADR-57 follow-up) — the SINGLETON-side mirror of build_discovered_def_nodes. Records the Prism::DefNode for every singleton-side method (def self.x, def Foo.x, a class << self body, and a module_function method) keyed by qualified class/module name → method → node, so ExpressionTyper can re-type the body when a Singleton[Foo] receiver dispatches Foo.x. The instance-side table is kept singleton-free on purpose (its ancestor walk binds self as Nominal), so the two never overlap except for module_function defs, which are genuinely callable on both sides and so appear in both tables. Top-level singleton defs (def self.x outside any class — self is main) are not recorded; they have no constant receiver to dispatch through.



1474
1475
1476
1477
1478
# File 'lib/rigor/inference/scope_indexer.rb', line 1474

def build_discovered_singleton_def_nodes(root)
  accumulator = {}
  walk_singleton_def_nodes(root, [], false, accumulator)
  accumulator.transform_values(&:freeze).freeze
end

.build_discovered_superclasses(root) ⇒ Object

ADR-24 slice 2 — per-class table mapping a fully qualified user class to its superclass name AS WRITTEN at the class Foo < Bar declaration. Only constant superclasses are recorded (class Foo < Struct.new(...) and other non-constant superclasses produce no entry). The as-written name is resolved to a qualified class at the call site against the subclass's lexical nesting — see ExpressionTyper#resolve_ancestor_class_name.



1598
1599
1600
1601
1602
# File 'lib/rigor/inference/scope_indexer.rb', line 1598

def build_discovered_superclasses(root)
  accumulator = {}
  walk_class_superclasses(root, [], accumulator)
  accumulator.freeze
end

.build_file_index(path, root) ⇒ Object

Builds ONE file's isolated def-index contribution (live Prism::DefNodes) by folding it into a fresh accumulator — recon Q2(a)'s "constructible in isolation" property. Shared by the cold-baseline bundle build and the incremental changed-file re-walk.



2333
2334
2335
2336
2337
# File 'lib/rigor/inference/scope_indexer.rb', line 2333

def build_file_index(path, root)
  file_acc = new_def_index_accumulator
  accumulate_project_index(file_acc, path, root)
  file_acc
end

.build_in_source_constants(root, default_scope) ⇒ Object

Slice 7 phase 9 — in-source constant value pre-pass. Walks the entire program (top-level AND inside class / module / def bodies) for Prism::ConstantWriteNode and Prism::ConstantPathWriteNode, types each rvalue, and accumulates by qualified name. Constants defined inside a class body are qualified with the surrounding class path; constants written via a path (Foo::BAR = ...) use the rendered path as-is.



1202
1203
1204
1205
1206
# File 'lib/rigor/inference/scope_indexer.rb', line 1202

def build_in_source_constants(root, default_scope)
  accumulator = {}
  walk_constant_writes(root, [], default_scope, accumulator)
  accumulator.freeze
end

.build_method_assign_effects(root) ⇒ Object

WD3 — builds the per-class definite-assignment summary {class_name => {method_name => Set<ivar names assigned non-nil on every completing path>}}. Used so a ctor's dead_transient_nil_writes can credit an indirect overwrite through an unconditionally-called same-class method (ipaddr's initialize reassigns @mask_addr via mask!).

Each method's set is computed by the same suffix definite-assignment analysis used for the ctor seed, run from the method body's first statement for every ivar the method writes anywhere. Same-class calls inside a method are credited transitively (depth-capped, cycle-guarded) so the resulting FLAT table is correct at depth 0 for the ctor lookup.



749
750
751
752
753
754
755
756
757
758
759
760
# File 'lib/rigor/inference/scope_indexer.rb', line 749

def build_method_assign_effects(root)
  defs = collect_class_method_defs(root)
  effects = {}
  memo = {}.compare_by_identity
  defs.each do |class_name, methods|
    methods.each do |method_name, def_node|
      assigns = method_definite_assigns(class_name, method_name, def_node, defs, effects, memo, 0)
      (effects[class_name] ||= {})[method_name] = assigns unless assigns.empty?
    end
  end
  effects.freeze
end

.build_methods_and_def_nodes(root) ⇒ Object

Slice 7 phase 12 — in-source method discovery pre-pass, fused with the instance-method def-node pre-pass (v0.0.2 #5). One descent produces BOTH tables the per-file index and the cross-file pre-pass each need together:

- `methods`   : `{class_name => {method => :instance | :singleton}}`
for every `def` / `define_method(:name)` / `attr_*` / `alias` /
Data/Struct-member reader (the undefined-method existence table).
- `def_nodes` : `{class_name => {method => Prism::DefNode}}` for
every instance-side `def` (the inter-procedural return-inference
table; singleton defs and `define_method` are intentionally
skipped — `record_def_node` filters them).

walk_methods and walk_def_nodes had byte-identical class / module / singleton / meta-block descents (both stop at DefNode), so a single combined walk records both accumulators at once instead of traversing every file twice.



1269
1270
1271
1272
1273
1274
1275
# File 'lib/rigor/inference/scope_indexer.rb', line 1269

def build_methods_and_def_nodes(root)
  methods = {}
  def_nodes = {}
  walk_methods_and_def_nodes(root, [], false, methods, def_nodes)
  apply_alias_def_nodes(root, def_nodes)
  [methods.transform_values(&:freeze).freeze, def_nodes.transform_values(&:freeze).freeze]
end

.build_program_global_index(root, default_scope) ⇒ Object

Slice 7 phase 6 — program-global pre-pass. Globals are process-wide so the accumulator is a flat Hash[Symbol, Type::t] populated from every Prism::GlobalVariableWriteNode in the program (top-level AND inside method bodies). The same accumulator is seeded into every method body and the top-level scope.



1178
1179
1180
1181
1182
# File 'lib/rigor/inference/scope_indexer.rb', line 1178

def build_program_global_index(root, default_scope)
  accumulator = {}
  gather_global_writes(root, default_scope, accumulator)
  accumulator.freeze
end

.build_seed_bundle(file_index, file_classes, digest, code_fingerprint) ⇒ Object

ADR-85 WD2 — converts a file's live single-file index + its class table into a Marshal-clean seed bundle: the plain-data tables verbatim, the def-node tables re-expressed as [node_id, name, fingerprint] triples (the path is the bundle key), the class-source names (path implicit), and the content digest that gates the bundle's reuse.



2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
# File 'lib/rigor/inference/scope_indexer.rb', line 2382

def build_seed_bundle(file_index, file_classes, digest, code_fingerprint)
  {
    digest: digest,
    # B1 — the comment-stripped code fingerprint, so a recheck can prove this file's edit was
    # comment-only and skip its dependents.
    code_fingerprint: code_fingerprint,
    # ADR-89 WD1 — the per-def SIGNATURE-shape declaration signature (bodies excluded, def lines kept),
    # so a recheck can prove this file's body edit changed no declaration and skip its ancestry /
    # file-level dependents. Computed from the same live `file_index` the bundle is built from, so the
    # value stored here equals the one a later recheck recomputes for an unchanged declaration.
    declaration_signature: declaration_signature(file_index),
    classes: file_classes,
    def_nodes: live_defs_to_bundle(file_index[:def_nodes]),
    singleton_def_nodes: live_defs_to_bundle(file_index[:singleton_def_nodes]),
    def_sources: file_index[:def_sources],
    singleton_def_sources: file_index[:singleton_def_sources],
    superclasses: file_index[:superclasses],
    includes: file_index[:includes],
    method_visibilities: file_index[:method_visibilities],
    methods: file_index[:methods],
    class_source_names: file_index[:class_sources].keys,
    data_member_layouts: file_index[:data_member_layouts],
    struct_member_layouts: file_index[:struct_member_layouts]
  }
end

.build_struct_member_layouts(root) ⇒ Object

ADR-48 Struct follow-up — the Struct.new(...) sibling of #build_data_member_layouts. A separate, additive table so the existing Data.define value-shape contract (a bare [Symbol]) is untouched: a Struct entry carries { members:, keyword_init: } because the dispatcher needs the flag to fold the matching .new call form (positional vs keyword) without manufacturing a wrong map.



1682
1683
1684
1685
1686
# File 'lib/rigor/inference/scope_indexer.rb', line 1682

def build_struct_member_layouts(root)
  accumulator = {}
  walk_struct_member_layouts(root, [], accumulator)
  accumulator.freeze
end

.bundle_defs_to_handles(defs, path) ⇒ Object

{class => {method => [node_id, name, fingerprint]}}{class => {method => DefHandle}} for path.



2439
2440
2441
2442
2443
2444
2445
# File 'lib/rigor/inference/scope_indexer.rb', line 2439

def bundle_defs_to_handles(defs, path)
  defs.transform_values do |methods|
    methods.transform_values do |(node_id, name, fingerprint)|
      DefHandle.new(path: path, node_id: node_id, name: name, fingerprint: fingerprint)
    end
  end
end

.bundle_to_file_index(bundle, path) ⇒ Object

ADR-85 WD2 — reconstitutes a cached bundle into a single-file index #fold_file_index folds: the def-node triples become DefHandles bound to this file's `path`, and the class-source names become a `=> Set[path]table (the shapeaccumulate_project_index` produces).



2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
# File 'lib/rigor/inference/scope_indexer.rb', line 2411

def bundle_to_file_index(bundle, path)
  {
    def_nodes: bundle_defs_to_handles(bundle[:def_nodes], path),
    singleton_def_nodes: bundle_defs_to_handles(bundle[:singleton_def_nodes], path),
    def_sources: bundle[:def_sources],
    # ADR-85 schema 7 — a pre-7 bundle lacks this key; the SCHEMA bump loads it as a clean cold rebuild,
    # but default to `{}` so any in-flight fold stays total.
    singleton_def_sources: bundle[:singleton_def_sources] || {},
    superclasses: bundle[:superclasses],
    includes: bundle[:includes],
    method_visibilities: bundle[:method_visibilities],
    methods: bundle[:methods],
    class_sources: bundle[:class_source_names].to_h { |name| [name, Set[path]] },
    data_member_layouts: bundle[:data_member_layouts],
    struct_member_layouts: bundle[:struct_member_layouts]
  }
end

.case_assignment_outcome(node, target, class_name, effects, depth, visiting) ⇒ Object

case is a definite assignment only when there is a real else clause AND every when/in body plus the else body definitely assigns (or raises-out). A missing else lets an unmatched subject fall through unassigned.



970
971
972
973
974
975
976
977
978
979
980
# File 'lib/rigor/inference/scope_indexer.rb', line 970

def case_assignment_outcome(node, target, class_name, effects, depth, visiting)
  else_clause = node.else_clause
  return :falls_through_unassigned unless else_clause.is_a?(Prism::ElseNode)

  branches = node.conditions.map { |c| c.respond_to?(:statements) ? c.statements : nil }
  branches << else_clause.statements
  all_ok = branches.all? do |b|
    branch_definitely_assigns?(b, target, class_name, effects, depth, visiting)
  end
  all_ok ? :assigned : :falls_through_unassigned
end

.class_matches_constraint?(class_name, constraint, environment) ⇒ Boolean

Returns:

  • (Boolean)


484
485
486
487
488
489
490
491
492
# File 'lib/rigor/inference/scope_indexer.rb', line 484

def class_matches_constraint?(class_name, constraint, environment)
  return true if class_name == constraint
  return false if environment.nil?

  ordering = environment.class_ordering(class_name, constraint)
  %i[equal subclass].include?(ordering)
rescue StandardError
  false
end

.class_new_call?(node) ⇒ Boolean

Recognises Class.new, Class.new(super_class), and the block form Class.new { ... }. Like module_new_call?, the block body is walked as the anonymous class's body. The optional super_class positional is accepted but does NOT route through ancestor discovery in this slice — the synthesised class still answers method lookups via its own body's defs, mirroring how Struct.new / Data.define are handled.

Returns:

  • (Boolean)


2714
2715
2716
# File 'lib/rigor/inference/scope_indexer.rb', line 2714

def class_new_call?(node)
  meta_call_with_name?(node, :Class, :new)
end

.class_new_superclass_name(call_node, qualified_prefix, accumulator) ⇒ Object

Lexically-qualified name of a Class.new(Super) superclass argument, or nil when there is no positional superclass (a bare Class.new / Module.new). When the unqualified super name is a class already discovered under an enclosing-prefix segment, the qualified form is returned (so Class.new(Error) inside module M resolves to M::Error); otherwise the literal name is returned (covering a core / RBS-known superclass spelled bare).



2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
# File 'lib/rigor/inference/scope_indexer.rb', line 2598

def class_new_superclass_name(call_node, qualified_prefix, accumulator)
  arg = call_node.arguments&.arguments&.first
  return nil if arg.nil?

  raw = Source::ConstantPath.qualified_name(arg)
  return nil if raw.nil?

  prefix = qualified_prefix.dup
  until prefix.empty?
    candidate = (prefix + [raw]).join("::")
    return candidate if accumulator.key?(candidate)

    prefix.pop
  end
  raw
end

.code_fingerprint(source, comments) ⇒ Object

B1 — the SHA-256 of source with every comment's byte range excised (a line comment ends before its newline, so the newline is KEPT: stripping it preserves the line count, hence every def's start line and the whole engine bundle). Two revisions of a file that differ ONLY in comment text therefore share a code fingerprint — the signal the bundle-equality gate uses to prove a changed file's code (and so every code-derived cross-file fact the engine and code-reading plugins produce from it) is unchanged. A comment that adds or removes a LINE shifts subsequent code, so the fingerprint changes (the gate then conservatively keeps the file's dependents — a line shift can move a def the ADR-17 diagnostic names).



2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
# File 'lib/rigor/inference/scope_indexer.rb', line 2237

def code_fingerprint(source, comments)
  bytes = source.b
  return Digest::SHA256.hexdigest(bytes) if comments.empty?

  result = +"".b
  cursor = 0
  comments.sort_by { |comment| comment.location.start_offset }.each do |comment|
    loc = comment.location
    result << bytes.byteslice(cursor, loc.start_offset - cursor) if loc.start_offset > cursor
    cursor = loc.end_offset if loc.end_offset > cursor
  end
  result << bytes.byteslice(cursor, bytes.bytesize - cursor)
  Digest::SHA256.hexdigest(result)
end

.collect_block_ivar_writes(block_node, qualified_prefix, default_scope, accumulator, mutated_ivars, init_writes) ⇒ Object

ADR-38 block-form: collects ivar writes from a CallNode's block body (e.g. RSpec before { @x = … } / let(:x) { … }) and folds them into init_writes, suppressing the read-before-write nil contribution the same way a def-form initializer does. The block body is always treated as an initializer (the caller has already verified the method name is declared as a block_method initializer), so there is no read-before-write evidence collection step here.



397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# File 'lib/rigor/inference/scope_indexer.rb', line 397

def collect_block_ivar_writes(block_node, qualified_prefix, default_scope, accumulator,
                              mutated_ivars, init_writes)
  return if block_node.body.nil? || qualified_prefix.empty?

  class_name = qualified_prefix.join("::")
  self_type = Type::Combinator.nominal_of(class_name)
  body_scope = default_scope.with_self_type(self_type)

  gather_ivar_writes(block_node.body, body_scope, class_name, accumulator,
                     EMPTY_GUARDED_IVARS, mutated_ivars)

  seen_writes = Set.new
  read_first = Set.new
  detect_read_before_write(block_node.body, seen_writes, read_first)
  init_set = (init_writes[class_name] ||= Set.new)
  seen_writes.each { |name| init_set << name }
end

.collect_class_alias_map(node, qualified_prefix, accumulator) ⇒ Object

Builds a map {class_name => {new_name_sym => old_name_sym}} by walking the tree for AliasMethodNode nodes inside class bodies.



1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
# File 'lib/rigor/inference/scope_indexer.rb', line 1944

def collect_class_alias_map(node, qualified_prefix, accumulator)
  return accumulator unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      collect_class_alias_map(node.body, qualified_prefix + [name], accumulator) if node.body
      return accumulator
    end
  when Prism::SingletonClassNode
    return accumulator
  when Prism::AliasMethodNode
    record_alias_map_entry(node, qualified_prefix, accumulator)
    return accumulator
  end

  node.rigor_each_child { |child| collect_class_alias_map(child, qualified_prefix, accumulator) }
  accumulator
end

.collect_class_body_ivar_writes(node, class_name, init_writes) ⇒ Object

Walks class-body level statements (i.e. NOT inside any nested DefNode / ClassNode / ModuleNode) and records every @x = … write target as a class-body init. Consumed by contribute_read_before_write_nil! to exempt ivars the author already knows might be nil (the @x = nil at class-body level is the canonical nullability acknowledgement; the instance @x is technically a separate store, but the pragmatic intent is unambiguous).



506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
# File 'lib/rigor/inference/scope_indexer.rb', line 506

def collect_class_body_ivar_writes(node, class_name, init_writes)
  return unless node.is_a?(Prism::Node)
  return if IVAR_BARRIER_NODES.any? { |klass| node.is_a?(klass) }

  if node.is_a?(Prism::InstanceVariableWriteNode) ||
     node.is_a?(Prism::InstanceVariableOrWriteNode) ||
     node.is_a?(Prism::InstanceVariableAndWriteNode) ||
     node.is_a?(Prism::InstanceVariableOperatorWriteNode)
    (init_writes[class_name] ||= Set.new) << node.name
  end

  node.rigor_each_child do |child|
    collect_class_body_ivar_writes(child, class_name, init_writes)
  end
end

.collect_class_decls(node, qualified_prefix, accumulator) ⇒ Object

Cross-file counterpart of record_declarations — registers every class / module declaration under its qualified name and descends into the body (so module Foo; class Bar registers both Foo and Foo::Bar).



2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
# File 'lib/rigor/inference/scope_indexer.rb', line 2555

def collect_class_decls(node, qualified_prefix, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      full = (qualified_prefix + [name]).join("::")
      accumulator[full] = Type::Combinator.singleton_of(full)
      return collect_class_decls(node.body, qualified_prefix + [name], accumulator) if node.body
    end
  when Prism::ConstantWriteNode
    record_class_new_constant_decl(node, qualified_prefix, accumulator)
  end

  node.rigor_each_child { |child| collect_class_decls(child, qualified_prefix, accumulator) }
end

.collect_class_method_defs(root, prefix = [], acc = {}) ⇒ Object

Collects {class_name => {method_name => DefNode}} for every instance-method def in the program. Singleton defs (def self.x) are excluded — the ctor-call crediting only follows instance-method calls on self. Last def wins on redefinition.



765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
# File 'lib/rigor/inference/scope_indexer.rb', line 765

def collect_class_method_defs(root, prefix = [], acc = {})
  return acc unless root.is_a?(Prism::Node)

  case root
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(root.constant_path)
    if name && root.body
      child = prefix + [name]
      collect_class_method_defs(root.body, child, acc)
    end
    return acc
  when Prism::DefNode
    (acc[prefix.join("::")] ||= {})[root.name] = root unless prefix.empty? || root.receiver
    return acc
  end

  root.rigor_each_child { |c| collect_class_method_defs(c, prefix, acc) }
  acc
end

.collect_def_cvar_writes(def_node, qualified_prefix, default_scope, accumulator) ⇒ Object



1150
1151
1152
1153
1154
1155
1156
# File 'lib/rigor/inference/scope_indexer.rb', line 1150

def collect_def_cvar_writes(def_node, qualified_prefix, default_scope, accumulator)
  return if def_node.body.nil? || qualified_prefix.empty?

  class_name = qualified_prefix.join("::")
  body_scope = default_scope.with_self_type(Type::Combinator.nominal_of(class_name))
  gather_cvar_writes(def_node.body, body_scope, class_name, accumulator)
end

.collect_def_ivar_writes(def_node, qualified_prefix, default_scope, accumulator, mutated_ivars, read_before_write = nil, init_writes = nil, method_assign_effects = nil) ⇒ Object

rubocop:disable Metrics/ParameterLists



358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
# File 'lib/rigor/inference/scope_indexer.rb', line 358

def collect_def_ivar_writes(def_node, qualified_prefix, default_scope, accumulator, mutated_ivars, # rubocop:disable Metrics/ParameterLists
                            read_before_write = nil, init_writes = nil, method_assign_effects = nil)
  return if def_node.body.nil? || qualified_prefix.empty?

  class_name = qualified_prefix.join("::")
  singleton = def_node.receiver.is_a?(Prism::SelfNode) ||
              def_receiver_targets_lexical_self?(def_node.receiver, qualified_prefix)
  self_type =
    if singleton
      Type::Combinator.singleton_of(class_name)
    else
      Type::Combinator.nominal_of(class_name)
    end
  body_scope = default_scope.with_self_type(self_type)

  # C2 — transient `@x = nil` dead-write elimination. When a method body opens with an unconditional `@x = nil`
  # (defensive init) and then *definitely* reassigns `@x` to a non-nil value on every completing path (a later
  # unconditional statement-level write, OR an `if/else` whose both branches write `@x`), the opening nil is dead
  # — it can never be observed at method exit. Recording it anyway folds a spurious `nil` constituent into the
  # flow-insensitive class-ivar union, which then poisons reads in OTHER methods (e.g. ipaddr `IN4MASK ^
  # @mask_addr` rejects the resulting `Integer | nil`). The set holds the `object_id`s of the transient write
  # nodes to skip; soundness is post-domination at the top statement level, so dropping the nil never hides a real
  # runtime-nil read.
  dead_writes = dead_transient_nil_writes(def_node.body, class_name, method_assign_effects)
  gather_ivar_writes(def_node.body, body_scope, class_name, accumulator,
                     EMPTY_GUARDED_IVARS, mutated_ivars, dead_writes)

  # B2.3 — collect per-method evidence for the read-before- write nil contribution. The accumulator-level decision
  # ("is this ivar truly read-before-write across the class lifetime?") is finalised at
  # `contribute_read_before_write_nil!` after the whole class body has been walked, using `init_writes` as the
  # soundness gate (an ivar written in `initialize` is initialised before any other method body runs).
  collect_read_before_write_evidence(def_node, class_name, read_before_write, init_writes, default_scope)
end

.collect_defined_test_ivars(node, names) ⇒ Object



689
690
691
692
693
694
695
696
697
698
699
700
# File 'lib/rigor/inference/scope_indexer.rb', line 689

def collect_defined_test_ivars(node, names)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::DefinedNode
    target = node.value
    names << target.name if target.is_a?(Prism::InstanceVariableReadNode)
  when Prism::AndNode, Prism::OrNode
    collect_defined_test_ivars(node.left, names)
    collect_defined_test_ivars(node.right, names)
  end
end

.collect_nil_test_ivars(node, names) ⇒ Object



702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
# File 'lib/rigor/inference/scope_indexer.rb', line 702

def collect_nil_test_ivars(node, names)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::CallNode
    receiver = node.receiver
    if receiver.is_a?(Prism::InstanceVariableReadNode) &&
       %i[nil? !].include?(node.name)
      names << receiver.name
    end
  when Prism::AndNode, Prism::OrNode
    collect_nil_test_ivars(node.left, names)
    collect_nil_test_ivars(node.right, names)
  end
end

.collect_read_before_write_evidence(def_node, class_name, read_before_write, init_writes, default_scope = nil) ⇒ Object

Walks the method body in AST (== execution) order tracking ivar names whose first reference is a read. The set is unioned into the class-wide read_before_write accumulator. For initialize def bodies, every write target is unioned into init_writes instead — used by the finalisation step to suppress nil contribution for ivars the constructor guarantees are initialised.



439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
# File 'lib/rigor/inference/scope_indexer.rb', line 439

def collect_read_before_write_evidence(def_node, class_name, read_before_write, init_writes, default_scope = nil)
  return if read_before_write.nil? || init_writes.nil?

  seen_writes = Set.new
  read_first = Set.new
  detect_read_before_write(def_node.body, seen_writes, read_first)

  # ADR-38 — `initialize` is the built-in initializer gate; a plugin may declare additional `def`-form initializer
  # methods (minitest `setup`, Rails `after_initialize`, DI setters) on a constrained class. Both fold their
  # writes into `init_writes`, suppressing the read-before-write nil contribution for sibling readers.
  if def_node.name == :initialize ||
     additional_initializer?(class_name, def_node.name, default_scope)
    init_set = (init_writes[class_name] ||= Set.new)
    seen_writes.each { |name| init_set << name }
    return
  end

  return if read_first.empty?

  rbw_set = (read_before_write[class_name] ||= Set.new)
  read_first.each { |name| rbw_set << name }
end

.collect_truthy_test_ivars(node, names) ⇒ Object



677
678
679
680
681
682
683
684
685
686
687
# File 'lib/rigor/inference/scope_indexer.rb', line 677

def collect_truthy_test_ivars(node, names)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::InstanceVariableReadNode
    names << node.name
  when Prism::AndNode, Prism::OrNode
    collect_truthy_test_ivars(node.left, names)
    collect_truthy_test_ivars(node.right, names)
  end
end

.conditional_assignment_outcome(node, target, class_name, effects, depth, visiting) ⇒ Object

if/unless is a definite assignment of target only when BOTH the then and else arms definitely assign (or raise-out). A missing else arm means the fall-through path skips the assignment -> not definite. Modifier-form if/unless (no else, single predicate'd statement) likewise.



958
959
960
961
962
963
964
965
966
# File 'lib/rigor/inference/scope_indexer.rb', line 958

def conditional_assignment_outcome(node, target, class_name, effects, depth, visiting)
  else_branch = node.is_a?(Prism::IfNode) ? node.subsequent : node.else_clause
  return :falls_through_unassigned unless else_branch.is_a?(Prism::ElseNode)
  return :falls_through_unassigned unless node.statements

  then_ok = branch_definitely_assigns?(node.statements, target, class_name, effects, depth, visiting)
  else_ok = branch_definitely_assigns?(else_branch.statements, target, class_name, effects, depth, visiting)
  then_ok && else_ok ? :assigned : :falls_through_unassigned
end

.contribute_read_before_write_nil!(accumulator, read_before_write, init_writes) ⇒ Object

B2.3 — finalize the read-before-write nil contribution. For each class, for each ivar where SOME method body observed a read-before-write AND no initialize write exists for that ivar, contribute Constant[nil] to the class-wide accumulator.

The initialize filter is the soundness gate: Ruby semantics guarantee initialize runs first (via Class.new), so a write there reaches every other method body's read. Read-before-write in a non-init method is then NOT a nil-at-runtime case — it's just AST-order coincidence. Without this filter a normal `def initialize; call.



233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# File 'lib/rigor/inference/scope_indexer.rb', line 233

def contribute_read_before_write_nil!(accumulator, read_before_write, init_writes)
  nil_t = Type::Combinator.constant_of(nil)
  read_before_write.each do |class_name, ivar_set|
    init_set = init_writes[class_name] || EMPTY_GUARDED_IVARS
    per_class = accumulator[class_name]
    next if per_class.nil?

    ivar_set.each do |ivar_name|
      # Soundness gates (in order): (1) `initialize` writes the ivar → it's set
      #     before any other method runs, so the
      #     read-before-write in a sibling method is
      #     NOT a runtime nil case.
      # (2) The accumulator has NO entry for the ivar
      #     → some write was deliberately skipped (the
      #     falsey-default `@x = nil unless @x` slice's
      #     no-seed behaviour). Adding nil here would
      #     defeat that skip and re-introduce the
      #     `Constant[nil]` FP the skip silenced.
      next if init_set.include?(ivar_name)
      next unless per_class.key?(ivar_name)

      existing = per_class[ivar_name]
      per_class[ivar_name] = Type::Combinator.union(existing, nil_t)
    end
  end
end

.data_define_call?(node) ⇒ Boolean

Recognises Data.define(*Symbol) and Data.define(*Symbol) do ... end at constant-write rvalue position. The receiver MUST be the bare Data constant (or ::Data); other receivers (a local variable, a method call return) are rejected because their identity is not statically known.

Returns:

  • (Boolean)


2678
2679
2680
2681
2682
2683
2684
2685
# File 'lib/rigor/inference/scope_indexer.rb', line 2678

def data_define_call?(node)
  return false unless node.is_a?(Prism::CallNode)
  return false unless node.name == :define
  return false unless meta_constant_receiver?(node.receiver, :Data)

  args = node.arguments&.arguments || []
  args.all?(Prism::SymbolNode)
end

.dead_transient_nil_writes(body, class_name = nil, method_assign_effects = nil) ⇒ Object



852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
# File 'lib/rigor/inference/scope_indexer.rb', line 852

def dead_transient_nil_writes(body, class_name = nil, method_assign_effects = nil)
  statements = top_level_statements(body)
  return nil if statements.length < 2

  dead = nil

  statements.each_with_index do |stmt, i|
    next unless stmt.is_a?(Prism::InstanceVariableWriteNode) && nil_literal_value?(stmt.value)

    # The opening `@x = nil` is dead when every completing path of the SUFFIX after it (normal end OR early
    # `return`, never a `raise`-terminated path) definitely reassigns `@x` non-nil. The suffix analysis credits an
    # unconditionally-called same-class method's own definite assignments via `method_assign_effects`.
    if suffix_definitely_assigns?(statements, i + 1, stmt.name, class_name, method_assign_effects)
      (dead ||= Set.new) << stmt.object_id
    end
  end

  dead
end

.declaration_signature(file_index) ⇒ Object

ADR-89 WD1 — a per-file digest of every cross-file DECLARATION surface an ancestry / file-level dependent consumes, EXCLUDING method bodies (which only symbol dependents consume, via the ADR-46 symbol edges the change-detection already fingerprints per method). A body edit that touches no signature leaves this equal, so the session drops the file's ancestry / file-level dependents; an arity / visibility / added-or-removed-method / ancestry / member-layout edit moves it. Deliberately SYNTACTIC (parameter structure from the def node, not inferred types).

It captures, from a single file's live def-index: declared class/module names, superclass + include ancestry, Data/Struct member layouts, the accessor/alias/define_method existence table, per-method visibilities, and per method (instance + singleton) its name, parameter signature, AND def-start LINE. The line is load-bearing for soundness: a body edit that SHIFTS a later def's line moves the ADR-17 project_definition_site a call.undefined-method consumer embeds, so a line shift must invalidate the declaration (the file's dependents re-check) — this is why the signature is a superset of B1's comment-stripped code fingerprint on line-moving edits, and strictly more permissive only on same-line body edits (a local rename, an internal literal), which is the collapse WD1 exists for.



2126
2127
2128
2129
2130
2131
2132
2133
# File 'lib/rigor/inference/scope_indexer.rb', line 2126

def declaration_signature(file_index)
  parts = []
  append_ancestry_signature(parts, file_index)
  append_declaration_tables(parts, file_index)
  append_def_signatures(parts, file_index[:def_nodes], "#")
  append_def_signatures(parts, file_index[:singleton_def_nodes], ".")
  Digest::SHA256.hexdigest(parts.join("\x00"))
end

.decompose_multi_write_rhs(rhs_type, front_count, back_count, rest_present:) ⇒ Object



1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
# File 'lib/rigor/inference/scope_indexer.rb', line 1065

def decompose_multi_write_rhs(rhs_type, front_count, back_count, rest_present:)
  if rhs_type.is_a?(Type::Tuple)
    elements = rhs_type.elements
    fronts = Array.new(front_count) { |i| multi_write_slot_type(elements, i) }
    if rest_present
      middle_end = [elements.size - back_count, front_count].max
      backs = Array.new(back_count) { |i| multi_write_slot_type(elements, middle_end + i) }
      [fronts, Type::Combinator.untyped, backs]
    else
      backs = Array.new(back_count) { |i| multi_write_slot_type(elements, front_count + i) }
      [fronts, nil, backs]
    end
  else
    # Unanalyzable / non-tuple RHS: every slot is the unknown floor.
    floor = Type::Combinator.untyped
    [Array.new(front_count) { floor }, rest_present ? floor : nil, Array.new(back_count) { floor }]
  end
end

.deep_merge_class_methods(base, overlay) ⇒ Object

Merges two class_name => { method => kind } tables, unioning the per-class method maps (so a seeded cross-file table and the current file's table combine instead of clobbering).



1279
1280
1281
1282
1283
1284
1285
1286
# File 'lib/rigor/inference/scope_indexer.rb', line 1279

def deep_merge_class_methods(base, overlay)
  return overlay if base.nil? || base.empty?
  return base if overlay.empty?

  base.merge(overlay) do |_class_name, base_methods, overlay_methods|
    base_methods.merge(overlay_methods)
  end
end

.def_receiver_targets_lexical_self?(receiver, qualified_prefix) ⇒ Boolean

Only Prism::ConstantReadNode is observed in real Ruby — Prism mis-parses def C::P.method as def C.P (Ruby itself rejects the form as a SyntaxError). The ConstantPathNode branch stays defensive in case Prism's grammar widens.

Returns:

  • (Boolean)


1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
# File 'lib/rigor/inference/scope_indexer.rb', line 1435

def def_receiver_targets_lexical_self?(receiver, qualified_prefix)
  return false if qualified_prefix.empty?

  case receiver
  when Prism::ConstantReadNode
    receiver.name.to_s == qualified_prefix.last
  when Prism::ConstantPathNode
    rendered = Source::ConstantPath.render(receiver)
    return false unless rendered

    path = rendered.split("::")
    qualified_prefix.last(path.length) == path
  else
    false
  end
end

.def_singleton?(def_node, qualified_prefix, in_singleton_class) ⇒ Boolean

def Foo.bar inside module Foo (or def Meta.init inside module Meta) is semantically equivalent to def self.bar: at the def-site, the runtime value of the constant Foo is the module itself (== self). Recognise the form so the method registers as singleton on the enclosing class.

The cross-class form def Bar.baz inside module Foo — where the receiver names a constant other than the enclosing class — is not supported at this slice; falls through to :instance (current behaviour) rather than silently re-routing the registration.

Returns:

  • (Boolean)


1426
1427
1428
1429
1430
# File 'lib/rigor/inference/scope_indexer.rb', line 1426

def def_singleton?(def_node, qualified_prefix, in_singleton_class)
  return true if def_node.receiver.is_a?(Prism::SelfNode) || in_singleton_class

  def_receiver_targets_lexical_self?(def_node.receiver, qualified_prefix)
end

.def_start_line(node) ⇒ Object

The 1-based start line of a live def node (the project_definition_site an ADR-17 consumer embeds).



2226
2227
2228
# File 'lib/rigor/inference/scope_indexer.rb', line 2226

def def_start_line(node)
  node.respond_to?(:location) ? node.location.start_line : 0
end

.detect_multi_write_target_writes(node, seen_writes, read_first) ⇒ Object

Records each ivar target of a MultiWriteNode / nested MultiTargetNode into seen_writes, and descends into any non-ivar target (a CallTargetNode / IndexTargetNode receiver such as @obj.x, @y = …) so an ivar read inside a target receiver still counts as read-before-write.



554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
# File 'lib/rigor/inference/scope_indexer.rb', line 554

def detect_multi_write_target_writes(node, seen_writes, read_first)
  targets = (node.lefts || []) + [node.rest].compact + (node.rights || [])
  targets.each do |target|
    case target
    when Prism::InstanceVariableTargetNode
      seen_writes << target.name
    when Prism::MultiTargetNode
      detect_multi_write_target_writes(target, seen_writes, read_first)
    when Prism::SplatNode
      inner = target.expression
      seen_writes << inner.name if inner.is_a?(Prism::InstanceVariableTargetNode)
    else
      detect_read_before_write(target, seen_writes, read_first)
    end
  end
end

.detect_read_before_write(node, seen_writes, read_first) ⇒ Object



522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
# File 'lib/rigor/inference/scope_indexer.rb', line 522

def detect_read_before_write(node, seen_writes, read_first)
  return unless node.is_a?(Prism::Node)
  return if IVAR_BARRIER_NODES.any? { |klass| node.is_a?(klass) }

  read_first << node.name if node.is_a?(Prism::InstanceVariableReadNode) && !seen_writes.include?(node.name)

  # N1 — parallel / multiple assignment (`@m, @n = [], []`). The ivar targets are `InstanceVariableTargetNode`s,
  # not `InstanceVariableWriteNode`s, so the generic descent below never records them as writes. Left unhandled,
  # an ivar written only via massign in `initialize` stays absent from `init_writes`, and
  # `contribute_read_before_write_nil!` then unions a spurious `nil` into its class-ivar seed — masking a
  # genuinely-typed `@m` (e.g. `Tuple[]`) as `T | nil` at every sibling read. The RHS runs before any target is
  # committed, so descend into `value` FIRST (an ivar read there is read-before-write), then mark every ivar
  # target as written.
  if node.is_a?(Prism::MultiWriteNode)
    detect_read_before_write(node.value, seen_writes, read_first) if node.value
    detect_multi_write_target_writes(node, seen_writes, read_first)
    return
  end

  # Descend BEFORE recording a write — `@x = @x + 1`'s RHS is an `InstanceVariableReadNode` that runs before the
  # write is committed; the read is therefore read-before-write semantically. `each_child` yields the value
  # child before the lvalue target (`compact_child_nodes` field order), matching this order.
  node.rigor_each_child do |c|
    detect_read_before_write(c, seen_writes, read_first)
  end

  seen_writes << node.name if IVAR_WRITE_NODES.any? { |klass| node.is_a?(klass) }
end

.discovered_classes_for_paths(paths, buffer: nil) ⇒ Hash{String => Rigor::Type::Singleton}

Walks every file in paths (each path is parsed once with Prism.parse_file) and returns the unioned project-wide discovered_classes Hash: {qualified_name => Singleton[…]}. Used by Analysis::Runner to seed each file's default_scope.discovered_classes so that lexical constant lookup in one file resolves a class Foo declared in a sibling file. Per-file collisions are last-write-wins (matches the existing in-file merge semantics). Parse failures fail-soft to an empty contribution. The buffer argument, when present, redirects reads for the bound logical path to the buffer's physical path so editor-mode pre-passes see the in-flight bytes.

Modules are registered on the same terms as classes, matching record_declarations' per-file behaviour (ADR-57 WD3). An earlier revision excluded them, fearing an undiscovered M.x would fall through to Kernel#x; the exclusion was retired once measurement showed Kernel's private instance methods (select, puts, load, …) resolve to nothing on a Singleton[M] receiver, and that a project-side def self.x body wins over the lenient Singleton[Object] fallback anyway. The residual leak is Class-only (M.new, M.superclass), which mistypes only code that raises NoMethodError at runtime.

Parameters:

Returns:



2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
# File 'lib/rigor/inference/scope_indexer.rb', line 2038

def discovered_classes_for_paths(paths, buffer: nil)
  accumulator = {}
  paths.each do |path|
    physical = buffer ? buffer.resolve(path) : path
    source = File.read(physical)
    root = Prism.parse(source, filepath: path).value
    collect_class_decls(root, [], accumulator)
  rescue StandardError
    # Skip files that fail to parse or read; the per-file analyzer surfaces the parse error separately.
    next
  end
  accumulator.freeze
end

.discovered_def_index_for_paths(paths, buffer: nil) ⇒ Hash{Symbol => Hash}

ADR-24 slice 2 — cross-file companion to discovered_classes_for_paths. Walks every project file once and returns both the merged discovered_def_nodes table (a class reopened across files has its method tables merged) and the merged class -> superclass-name map. The engine consults these so an implicit-self call inside a subclass resolves against a superclass def declared in a sibling file (Mastodon::CLI::Accounts calling a helper defined in Mastodon::CLI::Base).

The returned def_sources map mirrors def_nodes but stores a "path:line" String per (class_name, method_name) instead of the Prism::DefNode. A Prism::Location does not expose its source file through public API, so the source site is captured here, in the pre-pass loop that still holds path. CheckRules#undefined_method_diagnostic consults the seeded copy to name the defining file when a project monkey-patch on a core/stdlib/gem class is called cross-file (ADR-17). First write wins, matching def_nodes' own merge order.

Parameters:

Returns:

  • (Hash{Symbol => Hash})

    { def_nodes:, def_sources:, superclasses:, includes:, class_sources: }



2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
# File 'lib/rigor/inference/scope_indexer.rb', line 2069

def discovered_def_index_for_paths(paths, buffer: nil)
  acc = new_def_index_accumulator
  paths.each do |path|
    physical = buffer ? buffer.resolve(path) : path
    root = Prism.parse(File.read(physical), filepath: path).value
    accumulate_project_index(acc, path, root)
  rescue StandardError
    # Skip files that fail to parse or read; the per-file analyzer surfaces the parse error separately.
    next
  end
  finalize_def_index(acc)
end

.discovered_project_index_for_paths(paths, buffer: nil) ⇒ Hash{Symbol => Object}

Combined single-parse cross-file pre-pass used by the project-wide runner pre-pass (Analysis::Runner::ProjectPrePasses#discover). #discovered_classes_for_paths and #discovered_def_index_for_paths each Prism.parse every project file independently; this walks the project ONCE, parsing each file a single time and driving BOTH collectors over the same tree, then returns { classes:, def_index: }. Each file is parsed, collected, and dropped before the next iteration, so no more than one AST is held alive at a time (peak RSS stays flat on large projects).

Error degradation is identical to the two independent loops it replaces: a read / parse failure (the rescue's real target) contributes nothing to either table. The subset-scoped callers (IncrementalSession, coverage --protection) keep calling the individual methods unchanged.

Parameters:

Returns:

  • (Hash{Symbol => Object})

    { classes: Hash, def_index: Hash }.



2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
# File 'lib/rigor/inference/scope_indexer.rb', line 2266

def discovered_project_index_for_paths(paths, buffer: nil)
  classes = {}
  acc = new_def_index_accumulator
  paths.each do |path|
    physical = buffer ? buffer.resolve(path) : path
    root = Prism.parse(File.read(physical), filepath: path).value
    collect_class_decls(root, [], classes)
    accumulate_project_index(acc, path, root)
  rescue StandardError
    # Skip files that fail to parse or read; the per-file analyzer surfaces the parse error separately.
    next
  end
  { classes: classes.freeze, def_index: finalize_def_index(acc) }
end

.discovered_project_index_incremental(paths, seed_bundles:, buffer: nil) ⇒ Hash{Symbol => Object}

ADR-85 WD2 — the incremental cross-file discovery pass. The bundle-driven twin of #discovered_project_index_for_paths: instead of parsing + walking every file, it folds each file's cached per-file seed bundle (plain-data tables + (node_id, name, fingerprint) def-node handles), re-walking ONLY the files whose current digest does not match their cached bundle (changed / added). Rebuilds in canonical file order — the sound reconstruction (the merged tables are Set-union / later-wins / whole-project-finalize, so a changed file cannot be delta-patched, only re-folded in place; recon Q2).

Returns { classes:, def_index:, bundles: }bundles is the CURRENT per-file bundle set (cached ones reused, changed ones refreshed, removed ones absent) so the caller persists the up-to-date snapshot. A re-walked file's methods stay LIVE Prism::DefNodes in the returned index (no on-demand re-parse for a file we just walked); an unchanged file's methods are DefHandles the accessor choke points resolve lazily. On a cold run (`seed_bundles` empty) every file is re-walked, so the index is entirely live — identical to #discovered_project_index_for_paths — while the bundles are built for the next run.

Parameters:

  • paths (Array<String>)

    project file paths, in canonical order.

  • seed_bundles (Hash{String => Hash})

    the prior run's per-file bundles, keyed by logical path.

  • buffer (Rigor::Analysis::BufferBinding, nil) (defaults to: nil)

Returns:

  • (Hash{Symbol => Object})

    { classes:, def_index:, bundles: }.



2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
# File 'lib/rigor/inference/scope_indexer.rb', line 2299

def discovered_project_index_incremental(paths, seed_bundles:, buffer: nil)
  classes = {}
  acc = new_def_index_accumulator
  bundles = {}
  paths.each do |path|
    physical = buffer ? buffer.resolve(path) : path
    digest = Cache::FileDigest.hexdigest(physical)
    cached = seed_bundles[path]
    if cached && cached[:digest] == digest
      bundles[path] = cached
      classes.merge!(cached[:classes])
      fold_file_index(acc, bundle_to_file_index(cached, path))
    else
      source = File.read(physical)
      parsed = Prism.parse(source, filepath: path)
      root = parsed.value
      file_index = build_file_index(path, root)
      file_classes = {}
      collect_class_decls(root, [], file_classes)
      bundles[path] = build_seed_bundle(file_index, file_classes, digest,
                                        code_fingerprint(source, parsed.comments))
      classes.merge!(file_classes)
      fold_file_index(acc, file_index)
    end
  rescue StandardError
    # Skip files that fail to parse / read; the per-file analyzer surfaces the parse error separately.
    next
  end
  { classes: classes.freeze, def_index: finalize_def_index(acc), bundles: bundles }
end

.falsey_constant?(type) ⇒ Boolean

Returns:

  • (Boolean)


1115
1116
1117
# File 'lib/rigor/inference/scope_indexer.rb', line 1115

def falsey_constant?(type)
  type.is_a?(Type::Constant) && (type.value.nil? || type.value == false)
end

.finalize_def_index(acc) ⇒ Object

Post-processes and freezes a fully-folded def-index accumulator.



2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
# File 'lib/rigor/inference/scope_indexer.rb', line 2455

def finalize_def_index(acc)
  # Cross-file method suppression is for the project's OWN accessors (attr_* / define_method / alias) — NOT for
  # plain `def`s. A cross-file `def` on a class is exactly the ADR-17 monkey-patch case the undefined-method rule
  # deliberately surfaces (fire + def-site annotation, nudging `pre_eval:`), so dropping the `def`-declared names
  # keeps that contract intact while still letting `attr_reader :x` in one file suppress a false undefined-method
  # for `obj.x` in another.
  acc[:methods] = subtract_def_methods(acc[:methods], acc[:def_nodes])
  %i[def_nodes singleton_def_nodes def_sources singleton_def_sources includes method_visibilities
     methods class_sources].each do |key|
    acc[key].each_value(&:freeze)
  end
  acc.transform_values(&:freeze)
end

.fold_ancestry_tables(acc, file_index) ⇒ Object

superclasses later-wins; includes / class_sources accumulate; member layouts later-wins.



2370
2371
2372
2373
2374
2375
2376
# File 'lib/rigor/inference/scope_indexer.rb', line 2370

def fold_ancestry_tables(acc, file_index)
  acc[:superclasses].merge!(file_index[:superclasses])
  file_index[:includes].each { |cn, mods| acc[:includes][cn] = ((acc[:includes][cn] || []) + mods).uniq }
  file_index[:class_sources].each { |cn, files| (acc[:class_sources][cn] ||= Set.new).merge(files) }
  acc[:data_member_layouts].merge!(file_index[:data_member_layouts])
  acc[:struct_member_layouts].merge!(file_index[:struct_member_layouts])
end

.fold_def_sources(acc, key, file_sources) ⇒ Object

A "path:line" source table (instance or singleton) is first-file-wins per (class, method) (||=), matching merge_discovered_defs.



2362
2363
2364
2365
2366
2367
# File 'lib/rigor/inference/scope_indexer.rb', line 2362

def fold_def_sources(acc, key, file_sources)
  file_sources.each do |cn, methods|
    target = (acc[key][cn] ||= {})
    methods.each { |method_name, source| target[method_name] ||= source }
  end
end

.fold_def_tables(acc, file_index) ⇒ Object

def_nodes / singleton_def_nodes / method_visibilities / methods fold class-nested later-wins; def_sources / singleton_def_sources fold first-wins (#fold_def_sources).



2351
2352
2353
2354
2355
2356
2357
2358
# File 'lib/rigor/inference/scope_indexer.rb', line 2351

def fold_def_tables(acc, file_index)
  file_index[:def_nodes].each { |cn, methods| (acc[:def_nodes][cn] ||= {}).merge!(methods) }
  file_index[:singleton_def_nodes].each { |cn, methods| (acc[:singleton_def_nodes][cn] ||= {}).merge!(methods) }
  file_index[:method_visibilities].each { |cn, table| (acc[:method_visibilities][cn] ||= {}).merge!(table) }
  file_index[:methods].each { |cn, table| (acc[:methods][cn] ||= {}).merge!(table) }
  fold_def_sources(acc, :def_sources, file_index[:def_sources])
  fold_def_sources(acc, :singleton_def_sources, file_index[:singleton_def_sources])
end

.fold_file_index(acc, file_index) ⇒ Object

ADR-85 WD2 — folds a single file's isolated def-index contribution into the cross-file accumulator, applying EXACTLY the merge semantics #accumulate_project_index applies incrementally (def_nodes later-wins, def_sources first-wins, includes / class_sources accumulate, everything else later-wins). Polymorphic over the def-node value: a re-walked file's file_index carries live nodes; a cached bundle's carries DefHandles. The merges never deref the value, so both fold identically.



2344
2345
2346
2347
# File 'lib/rigor/inference/scope_indexer.rb', line 2344

def fold_file_index(acc, file_index)
  fold_def_tables(acc, file_index)
  fold_ancestry_tables(acc, file_index)
end

.gather_cvar_writes(node, scope, class_name, accumulator) ⇒ Object



1158
1159
1160
1161
1162
1163
1164
1165
# File 'lib/rigor/inference/scope_indexer.rb', line 1158

def gather_cvar_writes(node, scope, class_name, accumulator)
  return unless node.is_a?(Prism::Node)

  record_cvar_write(node, scope, class_name, accumulator) if node.is_a?(Prism::ClassVariableWriteNode)
  return if IVAR_BARRIER_NODES.any? { |klass| node.is_a?(klass) }

  node.rigor_each_child { |c| gather_cvar_writes(c, scope, class_name, accumulator) }
end

.gather_global_writes(node, scope, accumulator) ⇒ Object



1184
1185
1186
1187
1188
1189
# File 'lib/rigor/inference/scope_indexer.rb', line 1184

def gather_global_writes(node, scope, accumulator)
  return unless node.is_a?(Prism::Node)

  record_global_write(node, scope, accumulator) if node.is_a?(Prism::GlobalVariableWriteNode)
  node.rigor_each_child { |c| gather_global_writes(c, scope, accumulator) }
end

.gather_ivar_writes(node, scope, class_name, accumulator, guarded_ivars = EMPTY_GUARDED_IVARS, mutated_ivars = nil, dead_writes = nil) ⇒ Object



577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
# File 'lib/rigor/inference/scope_indexer.rb', line 577

def gather_ivar_writes(node, scope, class_name, accumulator, guarded_ivars = EMPTY_GUARDED_IVARS,
                       mutated_ivars = nil, dead_writes = nil)
  return unless node.is_a?(Prism::Node)

  if node.is_a?(Prism::InstanceVariableWriteNode) &&
     !(dead_writes && dead_writes.include?(node.object_id))
    record_ivar_write(node, scope, class_name, accumulator,
                      guarded: guarded_ivars.include?(node.name))
  end

  # N1 — parallel / multiple assignment (`old, @cb = @cb, block`, `@i, @o, @e, @thr = Open3.popen3(cmd)`). A
  # direct `InstanceVariableWriteNode` is the only write form this collector handled, so an ivar appearing as a
  # `MultiWriteNode` target was silently dropped from the class-ivar union — leaving it to seed as pure `nil`
  # (from a sibling `@cb = nil` ctor write, or absent entirely) and false-fire `if @cb` always-falsey /
  # `@thr.alive?` undefined-for-nil. Record each ivar target with its tuple-position RHS type where the RHS is
  # array/tuple-shaped, else the unanalyzable floor (the same `Dynamic[top]` a single write to an unknown RHS
  # records — an unanalyzable multi-write means unknown, not nil).
  record_multi_write_ivars(node, scope, class_name, accumulator)

  record_ivar_mutator_call(node, class_name, mutated_ivars) if mutated_ivars && node.is_a?(Prism::CallNode)

  # Don't recurse into nested defs, classes, or modules; their ivars belong to their own enclosing class.
  return if IVAR_BARRIER_NODES.any? { |klass| node.is_a?(klass) }

  if node.is_a?(Prism::IfNode) || node.is_a?(Prism::UnlessNode)
    walk_conditional_ivar_writes(node, scope, class_name, accumulator, guarded_ivars,
                                 mutated_ivars, dead_writes)
    return
  end

  node.rigor_each_child do |c|
    gather_ivar_writes(c, scope, class_name, accumulator, guarded_ivars, mutated_ivars, dead_writes)
  end
end

.index(root, default_scope:, converged_loop_recording: false) ⇒ Hash{Prism::Node => Rigor::Scope}

Build the scope index for a Prism program subtree.

Parameters:

  • root (Prism::Node)

    usually a Prism::ProgramNode, but any subtree the caller wants the indexer to walk works.

  • default_scope (Rigor::Scope)

    the scope used for the root, and the fallback returned for any Prism node not contained in root's subtree.

  • converged_loop_recording (Boolean) (defaults to: false)

    display-path flag — when true the evaluator re-records fixpoint-tracked loop bodies from their CONVERGED bindings so per-line probes (rigor annotate) reflect the post-writeback state, not the cap-N intermediate constants. Off for the check path.

Returns:



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# File 'lib/rigor/inference/scope_indexer.rb', line 57

def index(root, default_scope:, converged_loop_recording: false) # rubocop:disable Metrics/AbcSize
  # Slice A-declarations. Build the declaration overrides first so every scope handed to the StatementEvaluator
  # already carries the table; structural sharing through `Scope#with_local` / `#with_fact` / `#with_self_type`
  # propagates it across every derived scope.
  declared_types, discovered_classes = build_declaration_artifacts(root)
  # Merge the indexer's findings on top of whatever the base scope already carries so callers that seed cross-file
  # class knowledge (e.g. the ADR-14 `SigGen::ObservationCollector` pre-walking project `lib/` before scanning
  # `spec/`) keep their seeds alongside the per-file declarations the indexer itself discovers. Indexer-found
  # entries win on collision — same-file declarations are the most specific authority.
  merged_classes = default_scope.discovered_classes.merge(discovered_classes)
  seeded_scope = default_scope.with_discovery(
    default_scope.discovery.with(declared_types: declared_types,
                                 discovered_classes: merged_classes)
  )

  # Slice 7 phase 2. Pre-pass over every class/module body to collect the per-class ivar accumulator. Seeded after
  # declared_types so the rvalue typer in the pre-pass can see declaration overrides.
  class_ivars = build_class_ivar_index(root, seeded_scope)
  seeded_scope = seeded_scope.with_discovery(seeded_scope.discovery.with(class_ivars: class_ivars))

  # Slice 7 phase 6. Same pre-pass shape for cvars (per class) and globals (program-wide). Globals are also
  # materialised into the top-level scope's `globals` map so reads at the top level (and in CLI probes that do not
  # enter a method body) observe the precise type without consulting the accumulator on every lookup.
  class_cvars = build_class_cvar_index(root, seeded_scope)
  seeded_scope = seeded_scope.with_discovery(seeded_scope.discovery.with(class_cvars: class_cvars))
  program_globals = build_program_global_index(root, seeded_scope)
  seeded_scope = seeded_scope.with_discovery(seeded_scope.discovery.with(program_globals: program_globals))
  program_globals.each { |name, type| seeded_scope = seeded_scope.with_global(name, type) }

  # Slice 7 phase 9. In-source constant value tracking. Walks every ConstantWriteNode/ConstantPathWriteNode in the
  # program and types its rvalue under a scope that carries the surrounding qualified prefix as `self_type`, so
  # the rvalue typer sees in-class references resolve correctly. Multiple writes to the same qualified name union
  # via `Type::Combinator.union`.
  in_source_constants = build_in_source_constants(root, seeded_scope)
  seeded_scope = seeded_scope.with_discovery(
    seeded_scope.discovery.with(in_source_constants: in_source_constants)
  )

  # Slice 7 phase 12. In-source method discovery. Walks every class/module body for `Prism::DefNode` and
  # recognised `define_method` calls and records the introduced method names. `rigor check` consults the table to
  # suppress false positives for methods the user has defined but no RBS sig describes. Merged UNDER the
  # cross-file pre-pass seed; details: merge_project_method_indexes. One combined descent yields both the
  # discovered-methods existence table and the instance def-node table — see {#build_methods_and_def_nodes}.
  # `seed_discovered_methods` seeds the former onto the scope and returns the def-node table for
  # `merge_project_method_indexes` below.
  seeded_scope, file_def_nodes = seed_discovered_methods(seeded_scope, default_scope, root)

  # v0.0.2 #5 + ADR-24 slice 2 — record per-instance-method def nodes, the class -> superclass map, and the
  # class/module -> included-modules map, each merged under the cross-file pre-pass seed (see below). v0.1.2 —
  # per-class table of method visibilities (`:public` / `:private` / `:protected`). The
  # `def.method-visibility-mismatch` and ADR-35 `def.override-visibility-reduced` CheckRules consult the table.
  # Seeded inside `merge_project_method_indexes` so the per-file visibilities merge OVER the cross-file project
  # seed rather than overwriting it.
  seeded_scope = merge_project_method_indexes(seeded_scope, default_scope, root, file_def_nodes)

  table = {}.compare_by_identity
  table.default = seeded_scope

  # Last-visit-wins, not first: when `StatementEvaluator` internally re-evaluates a subtree (notably
  # `eval_begin`'s retry-edge widening pass), the LATER visit carries the corrected entry scope (e.g. a `tries`
  # widened to `Nominal[Integer]` after the rescue body's `tries += 1; retry` is observed). The diagnostic layer
  # reads `table[node]` to type predicates; the second pass's entry is the one that reflects all flow-derived
  # rebinds, so it MUST overwrite the first. ADR-48 Struct slice 3 — install the top-level fold-safe-local set so
  # a member read off a mutation-free top-level struct binding folds.
  seeded_scope = seed_struct_fold_safe(seeded_scope, root)

  on_enter = ->(node, scope) { table[node] = scope }
  StatementEvaluator.new(scope: seeded_scope, on_enter: on_enter,
                         converged_loop_recording: converged_loop_recording).evaluate(root)

  propagate(root, table, seeded_scope)
  table
end

.ivar_write_targets(node, acc = Set.new) ⇒ Object

Every ivar this body assigns a non-nil value to ANYWHERE (the candidate set for the method's definite-assignment scan).



808
809
810
811
812
813
814
# File 'lib/rigor/inference/scope_indexer.rb', line 808

def ivar_write_targets(node, acc = Set.new)
  return acc unless node.is_a?(Prism::Node)

  acc << node.name if node.is_a?(Prism::InstanceVariableWriteNode) && !nil_literal_value?(node.value)
  node.rigor_each_child { |c| ivar_write_targets(c, acc) }
  acc
end

.keyword_param_kind(param) ⇒ Object



2213
2214
2215
# File 'lib/rigor/inference/scope_indexer.rb', line 2213

def keyword_param_kind(param)
  param.is_a?(Prism::OptionalKeywordParameterNode) ? "ko" : "kr"
end

.labelled_params(nodes, kind = nil) ⇒ Object

The <kind>:<name> labels for a list of parameter nodes (nil → none). kind is a fixed String or a block computing it per node (for the keyword-required / keyword-optional split).



2200
2201
2202
# File 'lib/rigor/inference/scope_indexer.rb', line 2200

def labelled_params(nodes, kind = nil)
  (nodes || []).map { |p| "#{kind || yield(p)}:#{param_label(p)}" }
end

.literal_method_name(node) ⇒ Object



2014
2015
2016
2017
2018
# File 'lib/rigor/inference/scope_indexer.rb', line 2014

def literal_method_name(node)
  return nil unless node.is_a?(Prism::SymbolNode) || node.is_a?(Prism::StringNode)

  node.unescaped&.to_sym
end

.live_defs_to_bundle(defs) ⇒ Object

{class => {method => Prism::DefNode}}{class => {method => [node_id, name, fingerprint]}}.



2430
2431
2432
2433
2434
2435
2436
# File 'lib/rigor/inference/scope_indexer.rb', line 2430

def live_defs_to_bundle(defs)
  defs.transform_values do |methods|
    methods.transform_values do |node|
      [node.node_id, node.name.to_s, Digest::SHA256.hexdigest(node.location.slice)]
    end
  end
end

.merge_class_keyed_index_tables(acc, root, file_methods) ⇒ Object

Folds the per-class method-visibility and method-existence tables of one file into the cross-file accumulator (kept out of #accumulate_project_index to hold its ABC budget). file_methods is the existence table from the combined methods/def-nodes descent.



2515
2516
2517
2518
2519
2520
2521
2522
# File 'lib/rigor/inference/scope_indexer.rb', line 2515

def merge_class_keyed_index_tables(acc, root, file_methods)
  build_discovered_method_visibilities(root).each do |class_name, table|
    (acc[:method_visibilities][class_name] ||= {}).merge!(table)
  end
  file_methods.each do |class_name, table|
    (acc[:methods][class_name] ||= {}).merge!(table)
  end
end

.merge_discovered_defs(def_nodes, def_sources, path, file_def_nodes) ⇒ Object

Merges one file's class → method → DefNode map into the cross-file def_nodes index and records each method's first- seen "path:line" definition site in def_sources (ADR-17 — the un-registered-project-patch signal call.undefined-method and rigor triage key on).



2543
2544
2545
2546
2547
2548
2549
2550
2551
# File 'lib/rigor/inference/scope_indexer.rb', line 2543

def merge_discovered_defs(def_nodes, def_sources, path, file_def_nodes)
  file_def_nodes.each do |class_name, methods|
    (def_nodes[class_name] ||= {}).merge!(methods)
    sources = (def_sources[class_name] ||= {})
    methods.each do |method_name, def_node|
      sources[method_name] ||= "#{path}:#{def_node.location&.start_line || 1}"
    end
  end
end

.merge_member_layout_tables(acc, root) ⇒ Object

Folds one file's Data + Struct member-layout tables into the cross-file accumulator (kept out of #accumulate_project_index to hold its ABC budget).



2507
2508
2509
2510
# File 'lib/rigor/inference/scope_indexer.rb', line 2507

def merge_member_layout_tables(acc, root)
  acc[:data_member_layouts].merge!(build_data_member_layouts(root))
  acc[:struct_member_layouts].merge!(build_struct_member_layouts(root))
end

.merge_member_layouts(default_scope, root) ⇒ Object

ADR-48 — the per-file Data + Struct member-layout tables, each merged OVER the cross-file seed so a same-file declaration wins for its own classes. Returned as a pair to keep #merge_project_method_indexes under the method-size budget.



194
195
196
197
198
199
# File 'lib/rigor/inference/scope_indexer.rb', line 194

def merge_member_layouts(default_scope, root)
  [
    default_scope.data_member_layouts.merge(build_data_member_layouts(root)),
    default_scope.struct_member_layouts.merge(build_struct_member_layouts(root))
  ]
end

.merge_project_method_indexes(seeded_scope, default_scope, root, file_def_nodes) ⇒ Object

v0.0.2 #5 + ADR-24 slice 2 — seeds the three project-method indexes onto seeded_scope: the per-instance-method def-node table, the class -> superclass map, and the class/module -> included-modules map. Each per-file table is merged UNDER the cross-file discovered_def_index_for_paths seed carried on default_scope — same-file declarations win per entry, the cross-file seed supplies sibling-file ancestors.



156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# File 'lib/rigor/inference/scope_indexer.rb', line 156

def merge_project_method_indexes(seeded_scope, default_scope, root, file_def_nodes)
  def_nodes = default_scope.discovered_def_nodes.merge(
    file_def_nodes
  ) { |_class, cross_file, per_file| cross_file.merge(per_file) }
  singleton_def_nodes = default_scope.discovered_singleton_def_nodes.merge(
    build_discovered_singleton_def_nodes(root)
  ) { |_class, cross_file, per_file| cross_file.merge(per_file) }
  superclasses = default_scope.discovered_superclasses.merge(
    build_discovered_superclasses(root)
  )
  includes = default_scope.discovered_includes.merge(
    build_discovered_includes(root)
  ) { |_class, cross_file, per_file| (cross_file + per_file).uniq }
  # ADR-35 — per-file visibilities merged OVER the cross-file seed (the current file is authoritative for its own
  # classes; sibling-file ancestors are preserved from the project seed).
  method_visibilities = default_scope.discovered_method_visibilities.merge(
    build_discovered_method_visibilities(root)
  ) { |_class, cross_file, per_file| cross_file.merge(per_file) }
  # ADR-48 — per-file Data + Struct member layouts merged OVER the cross-file seed (same-file declaration is
  # authoritative).
  data_member_layouts, struct_member_layouts = merge_member_layouts(default_scope, root)

  seeded_scope.with_discovery(
    seeded_scope.discovery.with(
      discovered_def_nodes: def_nodes,
      discovered_singleton_def_nodes: singleton_def_nodes,
      discovered_superclasses: superclasses,
      discovered_includes: includes,
      discovered_method_visibilities: method_visibilities,
      data_member_layouts: data_member_layouts,
      struct_member_layouts: struct_member_layouts
    )
  )
end

.meta_call_with_name?(node, receiver_name, method_name) ⇒ Boolean

Returns:

  • (Boolean)


2718
2719
2720
2721
2722
2723
# File 'lib/rigor/inference/scope_indexer.rb', line 2718

def meta_call_with_name?(node, receiver_name, method_name)
  return false unless node.is_a?(Prism::CallNode)
  return false unless node.name == method_name

  meta_constant_receiver?(node.receiver, receiver_name)
end

.meta_constant_receiver?(node, expected_name) ⇒ Boolean

Returns:

  • (Boolean)


2729
2730
2731
2732
2733
2734
2735
2736
# File 'lib/rigor/inference/scope_indexer.rb', line 2729

def meta_constant_receiver?(node, expected_name)
  case node
  when Prism::ConstantReadNode
    node.name == expected_name
  when Prism::ConstantPathNode
    node.parent.nil? && node.name == expected_name
  end
end

.meta_member_names(call_node) ⇒ Object

The Symbol member names of a Data.define(*Symbol) / Struct.new(*Symbol [, keyword_init:]) call. For Struct.new the optional leading String name and trailing keyword_init: hash are stripped by #struct_new_positionals; Data.define args are all Symbols already.



1403
1404
1405
1406
1407
# File 'lib/rigor/inference/scope_indexer.rb', line 1403

def meta_member_names(call_node)
  raw = call_node.arguments&.arguments || []
  symbols = struct_new_call?(call_node) ? (struct_new_positionals(raw) || []) : raw
  symbols.filter_map { |arg| arg.unescaped.to_sym if arg.is_a?(Prism::SymbolNode) }
end

.meta_new_block_body(node) ⇒ Object

v0.1.2 — when a Const = Data.define(*sym) do ... end / Const = Struct.new(*sym) do ... end constant write carries a block, the block body holds method overrides whose canonical class is Const. Survey item (e) extended the recognition to Const = Module.new do ... end and Const = Class.new(?super) do ... end — the ADR-16 Tier A "block-as-method" idiom at constant-write position. Returns the block body node (a Prism::StatementsNode) when the rvalue matches; nil otherwise. Used by walk_methods / walk_def_nodes to push Const onto the qualified prefix before recursing.



1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
# File 'lib/rigor/inference/scope_indexer.rb', line 1370

def meta_new_block_body(node)
  return nil unless node.is_a?(Prism::ConstantWriteNode)

  rvalue = node.value
  return nil unless data_define_call?(rvalue) ||
                    struct_new_call?(rvalue) ||
                    module_new_call?(rvalue) ||
                    class_new_call?(rvalue)

  rvalue.block&.body
end

.meta_new_constant_type(node, full) ⇒ Object

Survey item (e): when the rvalue is a recognised Module.new do ... end / Class.new do ... end / Struct.new(*sym) do ... end / Data.define(*sym) do ... end form, type the named constant as Singleton[<full>] so the discovered-method table registered under full becomes reachable through singleton-side dispatch (Const.[]= etc.). Returns nil for non-meta-new rvalues so the caller falls back to the default body_scope.type_of(node.value) shape.



1249
1250
1251
1252
1253
# File 'lib/rigor/inference/scope_indexer.rb', line 1249

def meta_new_constant_type(node, full)
  return nil unless meta_new_block_body(node)

  Type::Combinator.singleton_of(full)
end

.method_definite_assigns(class_name, _method_name, def_node, defs, effects, memo, depth) ⇒ Object

Computes the definite-assignment set for one method, memoised per def node. The memo cycle-guards: a method re-entered while its own summary is in progress contributes nothing (sound under-approximation), so mutual recursion terminates.



788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
# File 'lib/rigor/inference/scope_indexer.rb', line 788

def method_definite_assigns(class_name, _method_name, def_node, defs, effects, memo, depth)
  return Set.new if def_node.body.nil?
  return memo[def_node] if memo.key?(def_node)
  return Set.new if depth >= SAME_CLASS_CALL_DEPTH_CAP

  memo[def_node] = Set.new # in-progress sentinel (cycle guard)
  statements = top_level_statements(def_node.body)
  candidates = ivar_write_targets(def_node.body)
  # A transient `@x = nil` opener whose own method reassigns it later must still count `@x` as assigned for
  # callers, so the crediting is computed at the BUILD-time depth.
  resolver = MethodEffectResolver.new(self, class_name, defs, effects, memo, depth)
  assigns = Set.new
  candidates.each do |ivar|
    assigns << ivar if suffix_definitely_assigns_with_resolver?(statements, 0, ivar, class_name, resolver, depth)
  end
  memo[def_node] = assigns
end

.module_function_toggle?(node) ⇒ Boolean

A bare module_function (no arguments) flips every following def in the module body to module-function (instance + singleton) mode.

Returns:

  • (Boolean)


1563
1564
1565
# File 'lib/rigor/inference/scope_indexer.rb', line 1563

def module_function_toggle?(node)
  node.name == :module_function && node.receiver.nil?
end

.module_new_call?(node) ⇒ Boolean

Recognises Module.new and Module.new(&block) / Module.new do ... end at constant-write rvalue position. The block body is the anonymous module's module_eval body; defs inside it bind methods on the named constant (Const = Module.new do ...; def foo; ...; end; end). Arguments are NOT inspected because Module.new accepts no positionals — Ruby raises ArgumentError if any are passed — so a malformed call falls through the walker without affecting analysis.

Returns:

  • (Boolean)


2706
2707
2708
# File 'lib/rigor/inference/scope_indexer.rb', line 2706

def module_new_call?(node)
  meta_call_with_name?(node, :Module, :new)
end

.multi_write_slot_type(elements, index) ⇒ Object

The per-slot type for index i of a tuple RHS. A missing slot (over-destructure) is nil at runtime; a present slot keeps its type. Unlike the local-variable binder we do NOT soften an optional slot here — a class-ivar seed deliberately preserves a genuine T | nil, and any spurious nil is removed by the flow-side narrowing, not by dropping it at collection time.



1088
1089
1090
1091
1092
1093
# File 'lib/rigor/inference/scope_indexer.rb', line 1088

def multi_write_slot_type(elements, index)
  element = elements[index]
  return Type::Combinator.constant_of(nil) if element.nil?

  element
end

.new_def_index_accumulatorObject

The empty per-run accumulator the def-index passes fold each file into.



2448
2449
2450
2451
2452
# File 'lib/rigor/inference/scope_indexer.rb', line 2448

def new_def_index_accumulator
  { def_nodes: {}, singleton_def_nodes: {}, def_sources: {}, singleton_def_sources: {},
    superclasses: {}, includes: {}, method_visibilities: {}, methods: {}, class_sources: {},
    data_member_layouts: {}, struct_member_layouts: {} }
end

.nil_literal_value?(node) ⇒ Boolean

Returns:

  • (Boolean)


879
880
881
# File 'lib/rigor/inference/scope_indexer.rb', line 879

def nil_literal_value?(node)
  node.is_a?(Prism::NilNode)
end

.param_label(param) ⇒ Object

A parameter node's name, or a class-tagged sentinel for the nameless / destructuring forms (MultiTargetNode, an anonymous * / ** / &, NoKeywordsParameterNode, ForwardingParameterNode).



2219
2220
2221
2222
2223
# File 'lib/rigor/inference/scope_indexer.rb', line 2219

def param_label(param)
  return "" if param.nil?

  param.respond_to?(:name) && param.name ? param.name.to_s : param.class.name.split("::").last
end

.parameter_signature(node) ⇒ Object

ADR-89 WD1 — a compact, order-preserving descriptor of a def node's parameter STRUCTURE: each parameter's kind (required / optional / rest / post / keyword-required / keyword-optional / keyword-rest / block / forwarding) and name, plus default-PRESENCE (implied by the optional kinds). Names are included for all parameter positions: soundness-first (a keyword-name change is Liskov- visible to overriders; a positional-name change is rare and only over-conservatively keeps a dependent). Not the inferred parameter TYPE — this gate is deliberately syntactic.



2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
# File 'lib/rigor/inference/scope_indexer.rb', line 2183

def parameter_signature(node)
  return "()" unless node.respond_to?(:parameters)

  params = node.parameters
  return "()" if params.nil?

  parts = []
  parts.concat(labelled_params(params.requireds, "r"))
  parts.concat(labelled_params(params.optionals, "o"))
  parts.concat(labelled_params(params.posts, "p"))
  parts.concat(labelled_params(params.keywords) { |p| keyword_param_kind(p) })
  parts.concat(rest_param_parts(params))
  "(#{parts.join(',')})"
end

.propagate(node, table, parent_scope) ⇒ Object

Walks node's subtree DFS and fills in scope entries for every Prism node the StatementEvaluator did not visit (i.e. expression- interior nodes like the receiver/args of a CallNode). Those nodes inherit their nearest recorded ancestor's scope.

IfNode / UnlessNode are special-cased: the truthy and falsey branches each get their predicate's narrowed scope before recursing. This handles expression-position conditionals (e.g. cache[k] = if cond; t; else; e; end and conditionals nested as call arguments) which are typed by ExpressionTyper without going through eval_if's narrowing path.



2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
# File 'lib/rigor/inference/scope_indexer.rb', line 2746

def propagate(node, table, parent_scope)
  return unless node.is_a?(Prism::Node)

  current_scope =
    if table.key?(node)
      table[node]
    else
      table[node] = parent_scope
      parent_scope
    end

  case node
  when Prism::IfNode
    propagate_if_branches(node, table, current_scope)
  when Prism::UnlessNode
    propagate_unless_branches(node, table, current_scope)
  else
    node.rigor_each_child { |child| propagate(child, table, current_scope) }
  end
end

.propagate_if_branches(node, table, current_scope) ⇒ Object



2767
2768
2769
2770
2771
2772
# File 'lib/rigor/inference/scope_indexer.rb', line 2767

def propagate_if_branches(node, table, current_scope)
  truthy_scope, falsey_scope = Narrowing.predicate_scopes(node.predicate, current_scope)
  propagate(node.predicate, table, current_scope) if node.predicate
  propagate(node.statements, table, truthy_scope) if node.statements
  propagate(node.subsequent, table, falsey_scope) if node.subsequent
end

.propagate_unless_branches(node, table, current_scope) ⇒ Object



2774
2775
2776
2777
2778
2779
# File 'lib/rigor/inference/scope_indexer.rb', line 2774

def propagate_unless_branches(node, table, current_scope)
  truthy_scope, falsey_scope = Narrowing.predicate_scopes(node.predicate, current_scope)
  propagate(node.predicate, table, current_scope) if node.predicate
  propagate(node.statements, table, falsey_scope) if node.statements
  propagate(node.else_clause, table, truthy_scope) if node.else_clause
end

.record_alias_map_entry(alias_node, qualified_prefix, accumulator) ⇒ Object



1965
1966
1967
1968
1969
1970
1971
1972
1973
# File 'lib/rigor/inference/scope_indexer.rb', line 1965

def record_alias_map_entry(alias_node, qualified_prefix, accumulator)
  return if qualified_prefix.empty?
  return unless alias_node.new_name.is_a?(Prism::SymbolNode) && alias_node.old_name.is_a?(Prism::SymbolNode)

  class_name = qualified_prefix.join("::")
  new_name = alias_node.new_name.unescaped.to_sym
  old_name = alias_node.old_name.unescaped.to_sym
  (accumulator[class_name] ||= {})[new_name] = old_name
end

.record_alias_method(alias_node, qualified_prefix, in_singleton_class, accumulator) ⇒ Object

Registers the alias name in the discovered_methods table so undefined-method diagnostics are not emitted for calls to the aliased name. The kind mirrors the surrounding class context (instance inside a regular class body, singleton inside class << self).



1914
1915
1916
1917
1918
1919
1920
1921
1922
# File 'lib/rigor/inference/scope_indexer.rb', line 1914

def record_alias_method(alias_node, qualified_prefix, in_singleton_class, accumulator)
  return if qualified_prefix.empty?
  return unless alias_node.new_name.is_a?(Prism::SymbolNode)

  class_name = qualified_prefix.join("::")
  new_name = alias_node.new_name.unescaped.to_sym
  kind = in_singleton_class ? :singleton : :instance
  (accumulator[class_name] ||= {})[new_name] = kind
end

.record_attr_methods(call_node, qualified_prefix, in_singleton_class, accumulator) ⇒ Object



1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
# File 'lib/rigor/inference/scope_indexer.rb', line 1995

def record_attr_methods(call_node, qualified_prefix, in_singleton_class, accumulator)
  return if qualified_prefix.empty?
  return unless call_node.receiver.nil? # only the implicit-self macro defines on the lexical class
  return if call_node.arguments.nil?

  kind = in_singleton_class ? :singleton : :instance
  reader = call_node.name != :attr_writer
  writer = call_node.name != :attr_reader
  class_name = qualified_prefix.join("::")
  call_node.arguments.arguments.each do |arg|
    base = literal_method_name(arg)
    next if base.nil?

    accumulator[class_name] ||= {}
    accumulator[class_name][base] = kind if reader
    accumulator[class_name][:"#{base}="] = kind if writer
  end
end

.record_class_new_constant_decl(node, qualified_prefix, accumulator) ⇒ Object

T1 (template-corpora survey) — record a Const = Class.new(Super) (and the bare Class.new / Module.new) class-creating constant in the cross-file discovery table so a reference to Const from ANOTHER file under the same namespace resolves to the project class instead of falling through to a core same-named class (Liquid::SyntaxError = Class.new(Error) referenced in a sibling file's rescue SyntaxError => e, which otherwise resolved to core ::SyntaxError). Mirrors the single-file in_source_constants answer, which types Class.new(Super) as Singleton[Super] (the constructed class answers method lookups through Super's chain). The superclass name is resolved lexically against the enclosing prefix; a bare Class.new with no superclass (or Module.new) types as Singleton[Const] itself. The block form is left to the existing meta_new_block_body machinery — only the plain Class.new(Super) constant (the namespaced-sibling-error idiom) is added here.



2583
2584
2585
2586
2587
2588
2589
2590
2591
# File 'lib/rigor/inference/scope_indexer.rb', line 2583

def record_class_new_constant_decl(node, qualified_prefix, accumulator)
  rvalue = node.value
  return unless class_new_call?(rvalue) || module_new_call?(rvalue)
  return if rvalue.block # block form: handled by meta_new_block_body walks

  full = (qualified_prefix + [node.name.to_s]).join("::")
  super_name = class_new_superclass_name(rvalue, qualified_prefix, accumulator)
  accumulator[full] = Type::Combinator.singleton_of(super_name || full)
end

.record_class_or_module?(node, qualified_prefix, identity_table, discovered) ⇒ Boolean

Returns:

  • (Boolean)


2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
# File 'lib/rigor/inference/scope_indexer.rb', line 2642

def record_class_or_module?(node, qualified_prefix, identity_table, discovered)
  name = Source::ConstantPath.qualified_name(node.constant_path)
  return false unless name

  full = (qualified_prefix + [name]).join("::")
  singleton = Type::Combinator.singleton_of(full)
  identity_table[node.constant_path] = singleton
  discovered[full] = singleton
  child_prefix = qualified_prefix + [name]
  record_declarations(node.body, child_prefix, identity_table, discovered) if node.body
  true
end

.record_class_sources(class_sources, path, root, superclasses, includes, file_def_nodes) ⇒ Object

ADR-46 slice 1 — accumulates, per qualified user class/module name, the set of files that declare it. A class's declaration shape (its body defs, its class Foo < Bar superclass, its includes) lives wherever the class is opened, so every file that contributes a def / superclass / include for a name is a source of that name's ancestry edges. Scope#superclass_of / Scope#includes_of record this set when resolving the edge during dependency recording (ADR-46). The class-declaration walk (collect_class_decls) catches bodyless / def-less reopenings the other three builders miss.



2530
2531
2532
2533
2534
2535
2536
2537
2538
# File 'lib/rigor/inference/scope_indexer.rb', line 2530

def record_class_sources(class_sources, path, root, superclasses, includes, file_def_nodes)
  names = Set.new
  collect_class_decls(root, [], decls = {})
  names.merge(decls.keys)
  names.merge(superclasses.keys)
  names.merge(includes.keys)
  names.merge(file_def_nodes.keys)
  names.each { |name| (class_sources[name] ||= Set.new) << path }
end

.record_constant_write(node, qualified_prefix, default_scope, accumulator, base_name) ⇒ Object



1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
# File 'lib/rigor/inference/scope_indexer.rb', line 1233

def record_constant_write(node, qualified_prefix, default_scope, accumulator, base_name)
  full = qualified_prefix.empty? ? base_name : "#{qualified_prefix.join('::')}::#{base_name}"
  body_scope = default_scope
  unless qualified_prefix.empty?
    body_scope = body_scope.with_self_type(Type::Combinator.singleton_of(qualified_prefix.join("::")))
  end
  rvalue_type = meta_new_constant_type(node, full) || body_scope.type_of(node.value)
  existing = accumulator[full]
  accumulator[full] = existing ? Type::Combinator.union(existing, rvalue_type) : rvalue_type
end

.record_cvar_write(node, scope, class_name, accumulator) ⇒ Object



1167
1168
1169
1170
1171
1172
1173
# File 'lib/rigor/inference/scope_indexer.rb', line 1167

def record_cvar_write(node, scope, class_name, accumulator)
  rvalue_type = scope.type_of(node.value)
  accumulator[class_name] ||= {}
  existing = accumulator[class_name][node.name]
  accumulator[class_name][node.name] =
    existing ? Type::Combinator.union(existing, rvalue_type) : rvalue_type
end

.record_data_member_layout(accumulator, qualified_parts, expr) ⇒ Object

Records qualified -> [members] when expr is a Data.define(*Symbol) call with at least one literal-Symbol member.



1669
1670
1671
1672
1673
1674
1675
1676
# File 'lib/rigor/inference/scope_indexer.rb', line 1669

def record_data_member_layout(accumulator, qualified_parts, expr)
  return unless data_define_call?(expr)

  members = meta_member_names(expr)
  return if members.empty?

  accumulator[qualified_parts.join("::")] = members.freeze
end

.record_declarations(node, qualified_prefix, identity_table, discovered) ⇒ Object



2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
# File 'lib/rigor/inference/scope_indexer.rb', line 2627

def record_declarations(node, qualified_prefix, identity_table, discovered)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ModuleNode, Prism::ClassNode
    return if record_class_or_module?(node, qualified_prefix, identity_table, discovered)
  when Prism::ConstantWriteNode
    return if record_meta_new_constant?(node, qualified_prefix, identity_table, discovered)
  end

  node.rigor_each_child do |child|
    record_declarations(child, qualified_prefix, identity_table, discovered)
  end
end

.record_def_method(def_node, qualified_prefix, in_singleton_class, accumulator) ⇒ Object



1409
1410
1411
1412
1413
1414
1415
1416
1417
# File 'lib/rigor/inference/scope_indexer.rb', line 1409

def record_def_method(def_node, qualified_prefix, in_singleton_class, accumulator)
  return if qualified_prefix.empty?

  class_name = qualified_prefix.join("::")
  singleton = def_singleton?(def_node, qualified_prefix, in_singleton_class)
  kind = singleton ? :singleton : :instance
  accumulator[class_name] ||= {}
  accumulator[class_name][def_node.name] = kind
end

.record_def_node(def_node, qualified_prefix, in_singleton_class, accumulator) ⇒ Object



1458
1459
1460
1461
1462
1463
1464
# File 'lib/rigor/inference/scope_indexer.rb', line 1458

def record_def_node(def_node, qualified_prefix, in_singleton_class, accumulator)
  return if def_singleton?(def_node, qualified_prefix, in_singleton_class)

  class_name = qualified_prefix.empty? ? TOP_LEVEL_DEF_KEY : qualified_prefix.join("::")
  accumulator[class_name] ||= {}
  accumulator[class_name][def_node.name] = def_node
end

.record_def_visibility(def_node, qualified_prefix, in_singleton_class, current_visibility, accumulator) ⇒ Object

rubocop:enable Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/AbcSize



1862
1863
1864
1865
1866
1867
1868
1869
# File 'lib/rigor/inference/scope_indexer.rb', line 1862

def record_def_visibility(def_node, qualified_prefix, in_singleton_class, current_visibility, accumulator)
  return if def_node.receiver.is_a?(Prism::SelfNode) || in_singleton_class
  return if qualified_prefix.empty?

  class_name = qualified_prefix.join("::")
  accumulator[class_name] ||= {}
  accumulator[class_name][def_node.name] = current_visibility
end

.record_define_method(call_node, qualified_prefix, in_singleton_class, accumulator) ⇒ Object



1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
# File 'lib/rigor/inference/scope_indexer.rb', line 1975

def record_define_method(call_node, qualified_prefix, in_singleton_class, accumulator)
  return if qualified_prefix.empty?
  return if call_node.arguments.nil? || call_node.arguments.arguments.empty?

  first_arg = call_node.arguments.arguments.first
  method_name = literal_method_name(first_arg)
  return if method_name.nil?

  class_name = qualified_prefix.join("::")
  accumulator[class_name] ||= {}
  accumulator[class_name][method_name] = in_singleton_class ? :singleton : :instance
end

.record_global_write(node, scope, accumulator) ⇒ Object



1191
1192
1193
1194
1195
1196
# File 'lib/rigor/inference/scope_indexer.rb', line 1191

def record_global_write(node, scope, accumulator)
  rvalue_type = scope.type_of(node.value)
  existing = accumulator[node.name]
  accumulator[node.name] =
    existing ? Type::Combinator.union(existing, rvalue_type) : rvalue_type
end

.record_ivar_mutator_call(node, class_name, mutated_ivars) ⇒ Object

Records @ivar.<method>(...) calls whose method is in MutationWidening::ARRAY_MUTATORS or HASH_MUTATORS. The class-ivar pre-pass uses the resulting set to widen the post-collected accumulator entries (see widen_mutated_ivar_entries!). Always-safe to over- collect: any name that the widening primitive declines is ignored at finalization.



616
617
618
619
620
621
622
623
624
625
# File 'lib/rigor/inference/scope_indexer.rb', line 616

def record_ivar_mutator_call(node, class_name, mutated_ivars)
  receiver = node.receiver
  return unless receiver.is_a?(Prism::InstanceVariableReadNode)
  return unless MutationWidening::ARRAY_MUTATORS.include?(node.name) ||
                MutationWidening::HASH_MUTATORS.include?(node.name)

  per_class = (mutated_ivars[class_name] ||= {})
  per_ivar = (per_class[receiver.name] ||= Set.new)
  per_ivar << node.name
end

.record_ivar_write(node, scope, class_name, accumulator, guarded: false) ⇒ Object



1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
# File 'lib/rigor/inference/scope_indexer.rb', line 1010

def record_ivar_write(node, scope, class_name, accumulator, guarded: false)
  rvalue_type = scope.type_of(node.value)

  # `@x = nil unless @x` / `@y = false unless @y` — follow-up to the polarity-aware defensive-init guard fix
  # (ROADMAP § Future cycles — "Defensive ivar-init with nil / false rvalue"). When the rvalue is itself a falsey
  # Constant, `union(rvalue, Constant[nil])` collapses (for `nil`) or doesn't widen the type's truthiness profile
  # (for `false`) — the predicate `unless @x` then folds to a single `Constant[nil]` / `Constant[false]` and the
  # `flow.always-truthy-condition` / `-always-falsey-` rule false-fires on the no-op-but-documented-default idiom.
  # Skip the seed contribution for this write (matches the existing skip for `@x ||= v`, which the pre-pass also
  # does not seed). Other writes to the same ivar still contribute; the falsey-default write carries no useful
  # precision the predicate hasn't already given us. See tdiary-core HEAD `ee40c2b`
  # `lib/tdiary/configuration.rb:157` for the worked site.
  return if guarded && falsey_constant?(rvalue_type)

  rvalue_type = Type::Combinator.union(rvalue_type, Type::Combinator.constant_of(nil)) if guarded
  accumulate_ivar_type(accumulator, class_name, node.name, rvalue_type)
end

.record_meta_new_constant?(node, qualified_prefix, identity_table, discovered) ⇒ Boolean

Recognises class-creating meta calls at constant-write rvalue position and registers Const (qualified by the surrounding class/module path) as a discovered class. Const.new(...) then resolves to a fresh Nominal[Const] via meta_new, instead of the un-narrowed Dynamic[top] returned by the default Class#new envelope.

Two recognised meta forms:

  • Const = Data.define(*Symbol) [do ... end]
  • Const = Struct.new(*Symbol [, keyword_init: ...]) [do ... end]

The block body, if present, is recursed into so any nested class/module declarations in the override block (rare but legal) still feed the discovered table.

Returns:

  • (Boolean)


2666
2667
2668
2669
2670
2671
2672
2673
# File 'lib/rigor/inference/scope_indexer.rb', line 2666

def record_meta_new_constant?(node, qualified_prefix, identity_table, discovered)
  return false unless data_define_call?(node.value) || struct_new_call?(node.value)

  full = (qualified_prefix + [node.name.to_s]).join("::")
  discovered[full] = Type::Combinator.singleton_of(full)
  record_declarations(node.value, qualified_prefix, identity_table, discovered)
  true
end

.record_meta_superclass_members(class_node, qualified_prefix, accumulator) ⇒ Object

class Foo < Data.define(:a, :b) / class Bar < Struct.new(:x) synthesizes reader methods (a, b, x) on the subclass that no def / attr_* declares. Register them in the discovered-methods existence table so an implicit-self read of a member inside the class body is known to exist — both for the existing undefined-method suppression and for the ADR-24 slice-4 self-call recorder, which must treat a synthesized member as an existing method, not an unresolved call. The block-form (Const = Data.define(:a) do ... end) is handled by the ConstantWriteNode branch's block recursion; its members type self as Object, out of scope here.



1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
# File 'lib/rigor/inference/scope_indexer.rb', line 1388

def record_meta_superclass_members(class_node, qualified_prefix, accumulator)
  superclass = class_node.superclass
  return unless data_define_call?(superclass) || struct_new_call?(superclass)

  members = meta_member_names(superclass)
  return if members.empty?

  class_name = qualified_prefix.join("::")
  table = (accumulator[class_name] ||= {})
  members.each { |member| table[member] ||= :instance }
end

.record_mixin_call(node, current_class, accumulator) ⇒ Object



1775
1776
1777
1778
1779
1780
1781
1782
1783
# File 'lib/rigor/inference/scope_indexer.rb', line 1775

def record_mixin_call(node, current_class, accumulator)
  return unless current_class && node.receiver.nil?
  return unless MIXIN_CALL_NAMES.include?(node.name)

  node.arguments&.arguments&.each do |arg|
    mod = Source::ConstantPath.qualified_name(arg)
    (accumulator[current_class] ||= []) << mod if mod
  end
end

.record_module_function_names(node, qualified_prefix, body, accumulator) ⇒ Object

module_function :a, :b retro-marks named siblings (defined earlier OR later in the same body) as module-functions. Resolves each symbol-literal argument against the body's own defs and registers the matching DefNode on the module's singleton side. Non-symbol arguments and names with no matching def are skipped (a miss degrades to today's Dynamic, never a false resolution).



1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
# File 'lib/rigor/inference/scope_indexer.rb', line 1575

def record_module_function_names(node, qualified_prefix, body, accumulator)
  return if qualified_prefix.empty?

  defs_by_name = statements_of(body).each_with_object({}) do |stmt, acc|
    acc[stmt.name] = stmt if stmt.is_a?(Prism::DefNode) && stmt.receiver.nil?
  end
  class_name = qualified_prefix.join("::")
  node.arguments&.arguments&.each do |arg|
    name = symbol_argument_name(arg)
    def_node = name && defs_by_name[name]
    (accumulator[class_name] ||= {})[name] = def_node if def_node
  end
end

.record_multi_ivar_rest(splat_node, _type, class_name, accumulator) ⇒ Object



1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
# File 'lib/rigor/inference/scope_indexer.rb', line 1104

def record_multi_ivar_rest(splat_node, _type, class_name, accumulator)
  return unless splat_node.is_a?(Prism::SplatNode)

  expression = splat_node.expression
  return unless expression.is_a?(Prism::InstanceVariableTargetNode)

  # A splat collects the middle slots into an Array; the precise element type is not worth recovering here. Record
  # the unanalyzable floor (an Array of unknown), never nil.
  accumulate_ivar_type(accumulator, class_name, expression.name, Type::Combinator.untyped)
end

.record_multi_ivar_target(target, type, class_name, accumulator) ⇒ Object



1095
1096
1097
1098
1099
1100
1101
1102
# File 'lib/rigor/inference/scope_indexer.rb', line 1095

def record_multi_ivar_target(target, type, class_name, accumulator)
  case target
  when Prism::InstanceVariableTargetNode
    accumulate_ivar_type(accumulator, class_name, target.name, type)
  when Prism::MultiTargetNode
    record_multi_target_ivars(target, type, class_name, accumulator)
  end
end

.record_multi_target_ivars(node, rhs_type, class_name, accumulator) ⇒ Object

Walks a MultiWriteNode / MultiTargetNode target tree against rhs_type, recording ivar targets per slot. Mirrors MultiTargetBinder's tuple decomposition but for ivar (rather than local-variable) targets.



1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
# File 'lib/rigor/inference/scope_indexer.rb', line 1053

def record_multi_target_ivars(node, rhs_type, class_name, accumulator)
  lefts = node.lefts || []
  rest = node.rest
  rights = node.rights || []
  fronts, rest_type, backs =
    decompose_multi_write_rhs(rhs_type, lefts.size, rights.size, rest_present: !rest.nil?)

  lefts.each_with_index { |t, i| record_multi_ivar_target(t, fronts[i], class_name, accumulator) }
  record_multi_ivar_rest(rest, rest_type, class_name, accumulator) if rest
  rights.each_with_index { |t, i| record_multi_ivar_target(t, backs[i], class_name, accumulator) }
end

.record_multi_write_ivars(node, scope, class_name, accumulator) ⇒ Object

N1 — records each InstanceVariableTargetNode of a MultiWriteNode (parallel / multiple assignment) into the class-ivar union, with the best cheap per-slot type. When the RHS is array/tuple-shaped (Type::Tuple) the ivar at position i records the type of element i; otherwise — an unanalyzable RHS such as Open3.popen3(cmd) typing to Dynamic[top] — every ivar slot records that unanalyzable floor (NOT nil: a multi-write we cannot decompose means the value is unknown, and Dynamic[top] is the sound union constituent, mirroring what a single write to an unknown RHS records). Nested targets ((@a, @b), @c = …) recurse with the slot's type as the new RHS type.



1044
1045
1046
1047
1048
1049
# File 'lib/rigor/inference/scope_indexer.rb', line 1044

def record_multi_write_ivars(node, scope, class_name, accumulator)
  return unless node.is_a?(Prism::MultiWriteNode)

  rhs_type = scope.type_of(node.value)
  record_multi_target_ivars(node, rhs_type, class_name, accumulator)
end

.record_singleton_def_node(def_node, qualified_prefix, in_singleton_class, module_function_on, accumulator) ⇒ Object



1552
1553
1554
1555
1556
1557
1558
1559
# File 'lib/rigor/inference/scope_indexer.rb', line 1552

def record_singleton_def_node(def_node, qualified_prefix, in_singleton_class, module_function_on, accumulator)
  singleton = def_singleton?(def_node, qualified_prefix, in_singleton_class) || module_function_on
  return unless singleton
  return if qualified_prefix.empty?

  class_name = qualified_prefix.join("::")
  (accumulator[class_name] ||= {})[def_node.name] = def_node
end

.record_struct_member_layout(accumulator, qualified_parts, expr) ⇒ Object

Records qualified -> { members:, keyword_init: } when expr is a Struct.new(*Symbol [, keyword_init: <bool>]) call with at least one literal-Symbol member.



1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
# File 'lib/rigor/inference/scope_indexer.rb', line 1716

def record_struct_member_layout(accumulator, qualified_parts, expr)
  return unless struct_new_call?(expr)

  members = meta_member_names(expr)
  return if members.empty?

  accumulator[qualified_parts.join("::")] = {
    members: members.freeze,
    keyword_init: struct_new_keyword_init?(expr)
  }.freeze
end

.rest_param_parts(params) ⇒ Object

The single rest / keyword-rest / block parameter labels (each present at most once).



2205
2206
2207
2208
2209
2210
2211
# File 'lib/rigor/inference/scope_indexer.rb', line 2205

def rest_param_parts(params)
  parts = []
  parts << "*:#{param_label(params.rest)}" if params.rest
  parts << "**:#{param_label(params.keyword_rest)}" if params.keyword_rest
  parts << "&:#{param_label(params.block)}" if params.block
  parts
end

.scan_summary_for_paths(paths, buffer: nil) ⇒ Hash{Symbol => Object}

B1 / ADR-89 WD1 (incremental propagation gates) — parses paths ONCE and returns the merged def-index (as #discovered_def_index_for_paths), each file's comment-stripped #code_fingerprint (B1), AND each file's #declaration_signature (ADR-89 WD1 — the per-def SIGNATURE shape that replaces the per-def body fingerprint, so a body edit that leaves every signature equal is declaration-stable). The incremental session drives the fingerprint / class-declaration change detection off def_index and the declaration-stability skip decision off declaration_signatures, so a changed file is parsed once for all of them (recon §2 dedup). A per-file live index (built + folded, exactly as #discovered_project_index_incremental's changed-file branch) yields the live def nodes the signature reads their parameter structure from.

Returns:

  • (Hash{Symbol => Object})

    { def_index:, code_fingerprints:, declaration_signatures: }.



2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
# File 'lib/rigor/inference/scope_indexer.rb', line 2092

def scan_summary_for_paths(paths, buffer: nil)
  acc = new_def_index_accumulator
  code_fingerprints = {}
  declaration_signatures = {}
  paths.each do |path|
    physical = buffer ? buffer.resolve(path) : path
    source = File.read(physical)
    parsed = Prism.parse(source, filepath: path)
    file_index = build_file_index(path, parsed.value)
    fold_file_index(acc, file_index)
    code_fingerprints[path] = code_fingerprint(source, parsed.comments)
    declaration_signatures[path] = declaration_signature(file_index)
  rescue StandardError
    next
  end
  { def_index: finalize_def_index(acc), code_fingerprints: code_fingerprints,
    declaration_signatures: declaration_signatures }
end

.seed_discovered_methods(seeded_scope, default_scope, root) ⇒ Object

Runs the combined methods/def-nodes descent (one walk of the file), seeds the discovered-methods existence table onto seeded_scope (merged UNDER the cross-file pre-pass seed default_scope carries), and returns [scope, file_def_nodes] so the caller can thread the def-node table into #merge_project_method_indexes without walking the file a second time.



135
136
137
138
139
140
# File 'lib/rigor/inference/scope_indexer.rb', line 135

def seed_discovered_methods(seeded_scope, default_scope, root)
  file_methods, file_def_nodes = build_methods_and_def_nodes(root)
  discovered_methods = deep_merge_class_methods(default_scope.discovered_methods, file_methods)
  scope = seeded_scope.with_discovery(seeded_scope.discovery.with(discovered_methods: discovered_methods))
  [scope, file_def_nodes]
end

.seed_struct_fold_safe(seeded_scope, root) ⇒ Object

ADR-48 Struct slice 3 — installs the top-level fold-safe-local set (Rigor::Inference::StructFoldSafety). Struct member layouts of constant receivers are resolved through the side-table the seeded scope carries.



144
145
146
147
148
149
150
# File 'lib/rigor/inference/scope_indexer.rb', line 144

def seed_struct_fold_safe(seeded_scope, root)
  seeded_scope.with_struct_fold_safe(
    StructFoldSafety.fold_safe_locals(
      root, ->(name) { seeded_scope.struct_member_layout(name)&.[](:members) }
    )
  )
end

.singleton_class_prefix(node, qualified_prefix) ⇒ Object

Resolves a class << X body's qualified prefix.

  • class << self keeps qualified_prefix (the enclosing class).
  • class << Foo inside class Foo collapses to the same prefix (semantically class << self).
  • class << Foo not nested in class Foo returns [Foo] so methods defined inside register on Foo's singleton.
  • Any other expression (variable, method call) returns nil so the walker falls through and skips the body.


1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
# File 'lib/rigor/inference/scope_indexer.rb', line 1347

def singleton_class_prefix(node, qualified_prefix)
  case node.expression
  when Prism::SelfNode
    qualified_prefix
  when Prism::ConstantReadNode, Prism::ConstantPathNode
    rendered = Source::ConstantPath.qualified_name(node.expression)
    return nil unless rendered

    if !qualified_prefix.empty? && qualified_prefix.last == rendered
      qualified_prefix
    else
      rendered.split("::")
    end
  end
end

.sorted_by_class(table) ⇒ Object

A class-keyed table's pairs sorted by class name (stringified) for a deterministic signature.



2149
2150
2151
# File 'lib/rigor/inference/scope_indexer.rb', line 2149

def sorted_by_class(table)
  table.sort_by { |cn, _| cn.to_s }
end

.statement_assignment_outcome(stmt, target, class_name, effects, depth, visiting) ⇒ Object

Classifies a single statement's effect on target:

:assigned                 — every path through the statement
                          that continues OR returns assigns
                          `target` non-nil (suffix is done);
:terminates_unassigned    — the statement ends the method
                          (return/raise) on some path
                          without a definite assignment, so
                          a completing path escaped;
:falls_through_unassigned — control may continue past it
                          without the assignment (keep
                          scanning the suffix).


912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
# File 'lib/rigor/inference/scope_indexer.rb', line 912

def statement_assignment_outcome(stmt, target, class_name, effects, depth, visiting)
  case stmt
  when Prism::InstanceVariableWriteNode
    return :falls_through_unassigned if stmt.name != target

    nil_literal_value?(stmt.value) ? :falls_through_unassigned : :assigned
  when Prism::CallNode
    if unconditional_call_assigns?(stmt, target, class_name, effects, depth, visiting)
      :assigned
    else
      :falls_through_unassigned
    end
  when Prism::IfNode, Prism::UnlessNode
    conditional_assignment_outcome(stmt, target, class_name, effects, depth, visiting)
  when Prism::CaseNode
    case_assignment_outcome(stmt, target, class_name, effects, depth, visiting)
  when Prism::ReturnNode
    :terminates_unassigned
  else
    # Any other statement — including a bare `raise`/`fail`, which terminates without a completing path that
    # observes the seed nil — is neutral: control either continues or the path never reaches method exit. Keep
    # scanning the suffix.
    :falls_through_unassigned
  end
end

.statements_of(body) ⇒ Object

Direct statement children of a class/module body node (a Prism::StatementsNode, a Prism::BeginNode wrapping one, or a lone statement). Returns an empty list for an empty body.



1543
1544
1545
1546
1547
1548
1549
1550
# File 'lib/rigor/inference/scope_indexer.rb', line 1543

def statements_of(body)
  case body
  when Prism::StatementsNode then body.body
  when Prism::BeginNode then statements_of(body.statements)
  when nil then []
  else [body]
  end
end

.struct_new_call?(node) ⇒ Boolean

Recognises Struct.new(*Symbol) and Struct.new(*Symbol, keyword_init: <expr>) at constant-write rvalue position. A trailing KeywordHashNode (the keyword_init: ... form) is accepted but does not contribute to member discovery; every other argument MUST be a Prism::SymbolNode. At least one Symbol member is required — Struct.new() is a degenerate form callers don't typically use.

Returns:

  • (Boolean)


2691
2692
2693
2694
2695
2696
2697
2698
2699
# File 'lib/rigor/inference/scope_indexer.rb', line 2691

def struct_new_call?(node)
  return false unless meta_call_with_name?(node, :Struct, :new)

  args = node.arguments&.arguments || []
  positional = struct_new_positionals(args)
  return false if positional.nil? || positional.empty?

  positional.all?(Prism::SymbolNode)
end

.struct_new_keyword_init?(call_node) ⇒ Boolean

True when a Struct.new call carries keyword_init: true as a literal in its trailing keyword hash. A non-literal value (or its absence) reads as false — the conservative positional default.

Returns:

  • (Boolean)


1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
# File 'lib/rigor/inference/scope_indexer.rb', line 1730

def struct_new_keyword_init?(call_node)
  args = call_node.arguments&.arguments || []
  last = args.last
  return false unless last.is_a?(Prism::KeywordHashNode)

  last.elements.any? do |assoc|
    assoc.is_a?(Prism::AssocNode) &&
      assoc.key.is_a?(Prism::SymbolNode) && assoc.key.unescaped == "keyword_init" &&
      assoc.value.is_a?(Prism::TrueNode)
  end
end

.struct_new_positionals(args) ⇒ Object



2725
2726
2727
# File 'lib/rigor/inference/scope_indexer.rb', line 2725

def struct_new_positionals(args)
  args.last.is_a?(Prism::KeywordHashNode) ? args[0..-2] : args
end

.subtract_def_methods(methods, def_nodes) ⇒ Object

Removes, per class, the method names that have a project def node, leaving only accessor/alias/define_method-introduced methods in the cross-file suppression table.



2471
2472
2473
2474
2475
2476
2477
# File 'lib/rigor/inference/scope_indexer.rb', line 2471

def subtract_def_methods(methods, def_nodes)
  methods.each_with_object({}) do |(class_name, table), out|
    defs = def_nodes[class_name] || {}
    kept = table.reject { |method_name, _kind| defs.key?(method_name) }
    out[class_name] = kept unless kept.empty?
  end
end

.suffix_definitely_assigns?(statements, from, target, class_name, effects) ⇒ Boolean

True when, starting from statements[from], EVERY path that completes the method (falls off the end OR hits an early return) definitely assigns target a non-nil value first. Paths terminated by raise are not completing paths and are ignored (they never observe the ivar at method exit). A path that can fall through statements without assigning fails.

Returns:

  • (Boolean)


887
888
889
890
891
892
893
894
895
896
897
898
899
# File 'lib/rigor/inference/scope_indexer.rb', line 887

def suffix_definitely_assigns?(statements, from, target, class_name, effects)
  statements[from..].each do |stmt|
    outcome = statement_assignment_outcome(stmt, target, class_name, effects, 0, nil)
    # The statement assigned on every continuing path -> the suffix is satisfied no matter what follows.
    return true if outcome == :assigned
    # The statement terminates control here (return/raise) and the value it carried did not assign on every path
    # -> some completing path reached exit without the assignment.
    return false if outcome == :terminates_unassigned
    # Otherwise (:falls_through_unassigned) keep scanning the remaining statements.
  end
  # Fell off the end with no definite assignment.
  false
end

.suffix_definitely_assigns_with_resolver?(statements, from, target, class_name, resolver, depth) ⇒ Boolean

Build-time variant of suffix_definitely_assigns? that resolves same-class calls through the lazy resolver (which recurses into method_definite_assigns for not-yet-computed callees) rather than the finished flat table.

Returns:

  • (Boolean)


819
820
821
822
823
824
825
826
# File 'lib/rigor/inference/scope_indexer.rb', line 819

def suffix_definitely_assigns_with_resolver?(statements, from, target, class_name, resolver, depth)
  statements[from..].each do |stmt|
    outcome = statement_assignment_outcome(stmt, target, class_name, resolver, depth, nil)
    return true if outcome == :assigned
    return false if outcome == :terminates_unassigned
  end
  false
end

.symbol_argument_name(arg) ⇒ Object

The Symbol value of a :name / "name" literal argument, or nil.



1590
1591
1592
# File 'lib/rigor/inference/scope_indexer.rb', line 1590

def symbol_argument_name(arg)
  arg.unescaped.to_sym if arg.is_a?(Prism::SymbolNode) || arg.is_a?(Prism::StringNode)
end

.then_body_guarded_ivars(node) ⇒ Object

Returns the set of ivar names that, in the THEN body of this conditional, are statically known to be in a nil / unset state — i.e. the body really IS the defensive-init half of the idiom. Conservative on purpose: only the shapes that idiomatically express "the ivar is missing" qualify.

For unless P; body; end, body runs when P is falsey:

- `P = @x` (or `@x && other` / `@x || other`)            → @x is falsey
- `P = defined?(@x)`                                     → @x is undefined

For if P; body; ..., body runs when P is truthy:

- `P = @x.nil?`                                          → @x is nil
- `P = !@x` / `not @x`                                   → @x is falsey


666
667
668
669
670
671
672
673
674
675
# File 'lib/rigor/inference/scope_indexer.rb', line 666

def then_body_guarded_ivars(node)
  names = Set.new
  if node.is_a?(Prism::UnlessNode)
    collect_truthy_test_ivars(node.predicate, names)
    collect_defined_test_ivars(node.predicate, names)
  else
    collect_nil_test_ivars(node.predicate, names)
  end
  names
end

.top_level_statements(body) ⇒ Object



872
873
874
875
876
877
# File 'lib/rigor/inference/scope_indexer.rb', line 872

def top_level_statements(body)
  return [] if body.nil?
  return body.body if body.is_a?(Prism::StatementsNode)

  [body]
end

.unconditional_call_assigns?(call, target, class_name, effects, depth, _visiting) ⇒ Boolean

True when call is an unconditional, statement-level, implicit-self (or self.) call to a SAME-CLASS method whose definite-assignment summary includes target. Calls through a block, on another receiver, or to an unresolved name contribute nothing (the seed nil stays).

Returns:

  • (Boolean)


996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
# File 'lib/rigor/inference/scope_indexer.rb', line 996

def unconditional_call_assigns?(call, target, class_name, effects, depth, _visiting)
  return false if effects.nil? || class_name.nil?
  return false if depth >= SAME_CLASS_CALL_DEPTH_CAP
  return false unless call.is_a?(Prism::CallNode)
  return false unless call.block.nil?
  # Implicit self (`mask!(x)`) or explicit `self.mask!(x)` only.
  return false unless call.receiver.nil? || call.receiver.is_a?(Prism::SelfNode)

  assigns = effects.dig(class_name, call.name)
  return false if assigns.nil?

  assigns.include?(target)
end

.visibility_target_name(arg) ⇒ Object



1905
1906
1907
1908
1909
# File 'lib/rigor/inference/scope_indexer.rb', line 1905

def visibility_target_name(arg)
  return arg.unescaped.to_sym if arg.is_a?(Prism::SymbolNode) || arg.is_a?(Prism::StringNode)

  nil
end

.walk_class_cvars(node, qualified_prefix, default_scope, accumulator) ⇒ Object



1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
# File 'lib/rigor/inference/scope_indexer.rb', line 1129

def walk_class_cvars(node, qualified_prefix, default_scope, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      child_prefix = qualified_prefix + [name]
      walk_class_cvars(node.body, child_prefix, default_scope, accumulator) if node.body
      return
    end
  when Prism::DefNode
    collect_def_cvar_writes(node, qualified_prefix, default_scope, accumulator)
    return
  end

  node.rigor_each_child do |child|
    walk_class_cvars(child, qualified_prefix, default_scope, accumulator)
  end
end

.walk_class_includes(node, qualified_prefix, current_class, accumulator) ⇒ Object



1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
# File 'lib/rigor/inference/scope_indexer.rb', line 1755

def walk_class_includes(node, qualified_prefix, current_class, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      full = (qualified_prefix + [name]).join("::")
      walk_class_includes(node.body, qualified_prefix + [name], full, accumulator) if node.body
      return
    end
  when Prism::CallNode
    record_mixin_call(node, current_class, accumulator)
  end

  node.rigor_each_child do |child|
    walk_class_includes(child, qualified_prefix, current_class, accumulator)
  end
end

.walk_class_ivars(node, qualified_prefix, default_scope, accumulator, mutated_ivars, read_before_write = nil, init_writes = nil, method_assign_effects = nil) ⇒ Object

rubocop:disable Metrics/ParameterLists



316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
# File 'lib/rigor/inference/scope_indexer.rb', line 316

def walk_class_ivars(node, qualified_prefix, default_scope, accumulator, mutated_ivars, # rubocop:disable Metrics/ParameterLists
                     read_before_write = nil, init_writes = nil, method_assign_effects = nil)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      child_prefix = qualified_prefix + [name]
      if node.body
        # Class-body level `@x = nil` writes don't initialise instance ivars at runtime (the class's own singleton
        # ivars and the instance's ivars are separate stores), but they signal "the author KNOWS @x could be nil"
        # and extend the B2.3 soundness gate: an ivar with a class-body write is exempted from the
        # read-before-write nil contribution because the seed already reflects the author's acknowledged
        # nullability via the def-body writes' union. Without this exemption, code that explicitly `@x = nil`s at
        # class-body level then writes `@x = SomeClass.new` inside an instance method gains an unjustified nil
        # widening at every read.
        collect_class_body_ivar_writes(node.body, child_prefix.join("::"), init_writes) if init_writes
        walk_class_ivars(node.body, child_prefix, default_scope, accumulator,
                         mutated_ivars, read_before_write, init_writes, method_assign_effects)
      end
      return
    end
  when Prism::DefNode
    collect_def_ivar_writes(node, qualified_prefix, default_scope, accumulator,
                            mutated_ivars, read_before_write, init_writes, method_assign_effects)
    return
  when Prism::CallNode
    if init_writes && !qualified_prefix.empty? &&
       node.block.is_a?(Prism::BlockNode) &&
       block_initializer?(qualified_prefix.join("::"), node.name, default_scope)
      collect_block_ivar_writes(node.block, qualified_prefix, default_scope,
                                accumulator, mutated_ivars, init_writes)
    end
  end

  node.rigor_each_child do |child|
    walk_class_ivars(child, qualified_prefix, default_scope, accumulator,
                     mutated_ivars, read_before_write, init_writes, method_assign_effects)
  end
end

.walk_class_superclasses(node, qualified_prefix, accumulator) ⇒ Object



1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
# File 'lib/rigor/inference/scope_indexer.rb', line 1604

def walk_class_superclasses(node, qualified_prefix, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      full = (qualified_prefix + [name]).join("::")
      superclass = node.superclass && Source::ConstantPath.qualified_name(node.superclass)
      accumulator[full] = superclass if superclass
      walk_class_superclasses(node.body, qualified_prefix + [name], accumulator) if node.body
      return
    end
  when Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      walk_class_superclasses(node.body, qualified_prefix + [name], accumulator) if node.body
      return
    end
  end

  node.rigor_each_child do |child|
    walk_class_superclasses(child, qualified_prefix, accumulator)
  end
end

.walk_conditional_ivar_writes(node, scope, class_name, accumulator, guarded_ivars, mutated_ivars = nil, dead_writes = nil) ⇒ Object

Walk an IfNode / UnlessNode so writes inside the THEN body that look like defensive ivar initialisation gain a nil union in the seeded type. Without this, @x = v unless @x records Constant[v] for @x, then the predicate folds to that same constant and flow.always-truthy-condition fires against a working program. Mirrors the existing skip for @x ||= v (Prism::InstanceVariableOrWriteNode, which the pre-pass does not seed at all).

Polarity-aware on purpose: only the THEN body picks up the guard. The ELSE branch of if @x; ...; else; @x = init; end would otherwise be marked too — but that pattern (write @x in the else of if @x) is a separate idiom whose surrounding reads of @x would then surface a nil-receiver FP. The ELSE branch is left ungarded so those reads continue to type as they did before this fix.



637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
# File 'lib/rigor/inference/scope_indexer.rb', line 637

def walk_conditional_ivar_writes(node, scope, class_name, accumulator, guarded_ivars,
                                 mutated_ivars = nil, dead_writes = nil)
  then_guards = then_body_guarded_ivars(node)
  then_guarded = then_guards.empty? ? guarded_ivars : (guarded_ivars | then_guards)

  gather_ivar_writes(node.predicate, scope, class_name, accumulator, guarded_ivars,
                     mutated_ivars, dead_writes)
  if node.statements
    gather_ivar_writes(node.statements, scope, class_name, accumulator, then_guarded,
                       mutated_ivars, dead_writes)
  end
  branch = node.is_a?(Prism::IfNode) ? node.subsequent : node.else_clause
  return unless branch

  gather_ivar_writes(branch, scope, class_name, accumulator, guarded_ivars,
                     mutated_ivars, dead_writes)
end

.walk_constant_writes(node, qualified_prefix, default_scope, accumulator) ⇒ Object



1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
# File 'lib/rigor/inference/scope_indexer.rb', line 1208

def walk_constant_writes(node, qualified_prefix, default_scope, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      child_prefix = qualified_prefix + [name]
      walk_constant_writes(node.body, child_prefix, default_scope, accumulator) if node.body
      return
    end
  when Prism::ConstantWriteNode
    record_constant_write(node, qualified_prefix, default_scope, accumulator, node.name.to_s)
    return
  when Prism::ConstantPathWriteNode
    full = Source::ConstantPath.qualified_name(node.target)
    record_constant_write(node, [], default_scope, accumulator, full) if full
    return
  end

  node.rigor_each_child do |child|
    walk_constant_writes(child, qualified_prefix, default_scope, accumulator)
  end
end

.walk_data_member_layouts(node, qualified_prefix, accumulator) ⇒ Object



1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
# File 'lib/rigor/inference/scope_indexer.rb', line 1641

def walk_data_member_layouts(node, qualified_prefix, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      record_data_member_layout(accumulator, qualified_prefix + [name], node.superclass)
      walk_data_member_layouts(node.body, qualified_prefix + [name], accumulator) if node.body
      return
    end
  when Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      walk_data_member_layouts(node.body, qualified_prefix + [name], accumulator) if node.body
      return
    end
  when Prism::ConstantWriteNode
    record_data_member_layout(accumulator, qualified_prefix + [node.name.to_s], node.value)
  end

  node.rigor_each_child do |child|
    walk_data_member_layouts(child, qualified_prefix, accumulator)
  end
end

.walk_method_visibilities(node, qualified_prefix, in_singleton_class, current_visibility, accumulator) ⇒ Object

rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/AbcSize



1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
# File 'lib/rigor/inference/scope_indexer.rb', line 1812

def walk_method_visibilities(node, qualified_prefix, in_singleton_class, current_visibility, accumulator)
  return current_visibility unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      child_prefix = qualified_prefix + [name]
      walk_method_visibilities(node.body, child_prefix, false, :public, accumulator) if node.body
      return current_visibility
    end
  when Prism::SingletonClassNode
    if node.body
      singleton_prefix = singleton_class_prefix(node, qualified_prefix)
      if singleton_prefix
        walk_method_visibilities(node.body, singleton_prefix, true, :public, accumulator)
        return current_visibility
      end
    end
  when Prism::ConstantWriteNode
    if meta_new_block_body(node)
      child_prefix = qualified_prefix + [node.name.to_s]
      walk_method_visibilities(meta_new_block_body(node), child_prefix, false, :public, accumulator)
      return current_visibility
    end
  when Prism::DefNode
    record_def_visibility(node, qualified_prefix, in_singleton_class, current_visibility, accumulator)
    return current_visibility
  when Prism::CallNode
    updated = apply_visibility_call(node, qualified_prefix, current_visibility, accumulator)
    return updated unless updated.equal?(current_visibility)
  end

  # Statement-position StatementsNode preserves left-to-right visibility flow; everything else recurses with the
  # entry visibility unchanged.
  if node.is_a?(Prism::StatementsNode)
    local_visibility = current_visibility
    node.rigor_each_child do |child|
      local_visibility = walk_method_visibilities(child, qualified_prefix, in_singleton_class,
                                                  local_visibility, accumulator)
    end
  else
    node.rigor_each_child do |child|
      walk_method_visibilities(child, qualified_prefix, in_singleton_class, current_visibility, accumulator)
    end
  end
  current_visibility
end

.walk_methods_and_def_nodes(node, qualified_prefix, in_singleton_class, methods_acc, def_nodes_acc) ⇒ Object

rubocop:disable Metrics/CyclomaticComplexity, Metrics/MethodLength, Metrics/AbcSize Combined walk_methods + walk_def_nodes descent. The two walks had identical class / module / singleton-class / meta-block traversals and both stopped at DefNode; the only divergences are leaf actions (recorded into the right accumulator) and the original walk_methods returning at AliasMethodNode (its symbol-only children carry no def / class node, so not descending them is byte-identical for def_nodes too). See #build_methods_and_def_nodes.



1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
# File 'lib/rigor/inference/scope_indexer.rb', line 1294

def walk_methods_and_def_nodes(node, qualified_prefix, in_singleton_class, methods_acc, def_nodes_acc)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      child_prefix = qualified_prefix + [name]
      record_meta_superclass_members(node, child_prefix, methods_acc) if node.is_a?(Prism::ClassNode)
      walk_methods_and_def_nodes(node.body, child_prefix, false, methods_acc, def_nodes_acc) if node.body
      return
    end
  when Prism::SingletonClassNode
    if node.body
      singleton_prefix = singleton_class_prefix(node, qualified_prefix)
      if singleton_prefix
        walk_methods_and_def_nodes(node.body, singleton_prefix, true, methods_acc, def_nodes_acc)
        return
      end
    end
  when Prism::ConstantWriteNode
    if meta_new_block_body(node)
      child_prefix = qualified_prefix + [node.name.to_s]
      walk_methods_and_def_nodes(meta_new_block_body(node), child_prefix, false, methods_acc, def_nodes_acc)
      return
    end
  when Prism::DefNode
    record_def_method(node, qualified_prefix, in_singleton_class, methods_acc)
    record_def_node(node, qualified_prefix, in_singleton_class, def_nodes_acc)
    return
  when Prism::AliasMethodNode
    record_alias_method(node, qualified_prefix, in_singleton_class, methods_acc)
    return
  when Prism::CallNode
    record_define_method(node, qualified_prefix, in_singleton_class, methods_acc) if node.name == :define_method
    if ATTR_MACROS.include?(node.name)
      record_attr_methods(node, qualified_prefix, in_singleton_class, methods_acc)
    end
  end

  node.rigor_each_child do |child|
    walk_methods_and_def_nodes(child, qualified_prefix, in_singleton_class, methods_acc, def_nodes_acc)
  end
end

.walk_singleton_body(body, qualified_prefix, in_singleton_class, accumulator) ⇒ Object

Walks a class/module/singleton-class body's direct statements in source order, threading the bare-module_function toggle: once a bare module_function is seen, every subsequent def in the body registers as a singleton method. Nested classes/modules/defs and module_function :a, :b named forms recurse / record through the general walker so the toggle stays scoped to its own body.



1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
# File 'lib/rigor/inference/scope_indexer.rb', line 1522

def walk_singleton_body(body, qualified_prefix, in_singleton_class, accumulator)
  module_function_on = false
  statements_of(body).each do |stmt|
    if stmt.is_a?(Prism::CallNode) && module_function_toggle?(stmt)
      if bare_module_function?(stmt)
        module_function_on = true
      else
        record_module_function_names(stmt, qualified_prefix, body, accumulator)
      end
      next
    end
    if stmt.is_a?(Prism::DefNode)
      record_singleton_def_node(stmt, qualified_prefix, in_singleton_class, module_function_on, accumulator)
      next
    end
    walk_singleton_def_nodes(stmt, qualified_prefix, in_singleton_class, accumulator)
  end
end

.walk_singleton_def_nodes(node, qualified_prefix, in_singleton_class, accumulator) ⇒ Object

Walks every node, entering class/module/singleton-class bodies via #walk_singleton_body so a bare module_function toggle threads correctly across the body's sibling statements (a child-by-child recursion would reset it). At the top level / inside an arbitrary node there is no module_function state to carry, so descent is a plain per-child walk.



1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
# File 'lib/rigor/inference/scope_indexer.rb', line 1484

def walk_singleton_def_nodes(node, qualified_prefix, in_singleton_class, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode, Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      walk_singleton_body(node.body, qualified_prefix + [name], false, accumulator) if node.body
      return
    end
  when Prism::SingletonClassNode
    if node.body
      singleton_prefix = singleton_class_prefix(node, qualified_prefix)
      if singleton_prefix
        walk_singleton_body(node.body, singleton_prefix, true, accumulator)
        return
      end
    end
  when Prism::ConstantWriteNode
    if meta_new_block_body(node)
      child_prefix = qualified_prefix + [node.name.to_s]
      walk_singleton_body(meta_new_block_body(node), child_prefix, false, accumulator)
      return
    end
  when Prism::DefNode
    record_singleton_def_node(node, qualified_prefix, in_singleton_class, false, accumulator)
    return
  end

  node.rigor_each_child do |child|
    walk_singleton_def_nodes(child, qualified_prefix, in_singleton_class, accumulator)
  end
end

.walk_struct_member_layouts(node, qualified_prefix, accumulator) ⇒ Object



1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
# File 'lib/rigor/inference/scope_indexer.rb', line 1688

def walk_struct_member_layouts(node, qualified_prefix, accumulator)
  return unless node.is_a?(Prism::Node)

  case node
  when Prism::ClassNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      record_struct_member_layout(accumulator, qualified_prefix + [name], node.superclass)
      walk_struct_member_layouts(node.body, qualified_prefix + [name], accumulator) if node.body
      return
    end
  when Prism::ModuleNode
    name = Source::ConstantPath.qualified_name(node.constant_path)
    if name
      walk_struct_member_layouts(node.body, qualified_prefix + [name], accumulator) if node.body
      return
    end
  when Prism::ConstantWriteNode
    record_struct_member_layout(accumulator, qualified_prefix + [node.name.to_s], node.value)
  end

  node.rigor_each_child do |child|
    walk_struct_member_layouts(child, qualified_prefix, accumulator)
  end
end

.widen_member_for_observed_mutators(member, observed_methods) ⇒ Object



300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# File 'lib/rigor/inference/scope_indexer.rb', line 300

def widen_member_for_observed_mutators(member, observed_methods)
  case member
  when Type::Tuple
    return member unless observed_methods.any? { |m| MutationWidening::ARRAY_MUTATORS.include?(m) }

    Type::Combinator.nominal_of("Array", type_args: [Type::Combinator.untyped])
  when Type::HashShape
    return member unless observed_methods.any? { |m| MutationWidening::HASH_MUTATORS.include?(m) }

    Type::Combinator.nominal_of("Hash",
                                type_args: [Type::Combinator.untyped, Type::Combinator.untyped])
  else
    member
  end
end

.widen_mutated_ivar_entries!(accumulator, mutated_ivars) ⇒ Object

Walks the post-collected accumulator and widens any Tuple / HashShape entry for an ivar that observed a mutator call anywhere in the same class body. The mutation evidence comes from gather_ivar_writes recording every @ivar.<method>(...) call whose method is in MutationWidening::ARRAY_MUTATORS or HASH_MUTATORS.

The widening uses MutationWidening.widen_for_mutator — the same primitive Inference::StatementEvaluator#eval_call applies for per-method-body widening on a local / ivar receiver. The class-level pass extends that primitive's reach so a Tuple-seeded ivar in initialize is observed as Nominal[Array] at the entry of every OTHER method body in the class — closing the cross-method gap noted in ROADMAP § Future cycles / Type-language / engine ("Tuple / HashShape widening for ivar-seeded literals after mutation"; Redmine 6.1.2 Redmine::Views::Builders::Structure is the canonical worked site).

Always-safe: the widening can only LOSE precision; the underlying nominal (Array / Hash) and the element union are preserved.



273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'lib/rigor/inference/scope_indexer.rb', line 273

def widen_mutated_ivar_entries!(accumulator, mutated_ivars)
  accumulator.each do |class_name, ivars|
    observed = mutated_ivars[class_name]
    next if observed.nil? || observed.empty?

    ivars.each do |ivar_name, type|
      methods = observed[ivar_name]
      next if methods.nil? || methods.empty?

      ivars[ivar_name] = widen_type_for_observed_mutators(type, methods)
    end
  end
end

.widen_type_for_observed_mutators(type, observed_methods) ⇒ Object

Walks a class-ivar accumulator entry (which may be a Union of multiple write rvalues) and widens any Tuple or HashShape member whose corresponding mutator family was observed against the ivar somewhere in the class. Class-level widening is more aggressive than the per-method-body MutationWidening primitive: it widens both the SHAPE carrier (Tuple → Array, HashShape → Hash) AND the element types to Dynamic[Top]. The justification — once any method mutates the ivar, its post-mutation contents are statically unknown across method boundaries, so preserving the seed-write's element precision would be an unsound over-claim (e.g. `@struct = [{}]; somewhere:



294
295
296
297
298
# File 'lib/rigor/inference/scope_indexer.rb', line 294

def widen_type_for_observed_mutators(type, observed_methods)
  members = type.is_a?(Type::Union) ? type.members : [type]
  widened = members.map { |m| widen_member_for_observed_mutators(m, observed_methods) }
  Type::Combinator.union(*widened)
end

Instance Method Details

#self?.build_declaration_overridesHash[untyped, Type::t]

Parameters:

  • root (Object)

Returns:

  • (Hash[untyped, Type::t])


165
# File 'sig/rigor/inference.rbs', line 165

def self?.build_declaration_overrides: (untyped root) -> Hash[untyped, Type::t]

#self?.code_fingerprintString

Parameters:

  • source (String)
  • comments (Object)

Returns:

  • (String)


170
# File 'sig/rigor/inference.rbs', line 170

def self?.code_fingerprint: (String source, untyped comments) -> String

#self?.collect_class_declsvoid

This method returns an undefined value.

Parameters:

  • node (Object)
  • qualified_prefix (Array[String])
  • accumulator (Hash[String, Type::t])


173
# File 'sig/rigor/inference.rbs', line 173

def self?.collect_class_decls: (untyped node, Array[String] qualified_prefix, Hash[String, Type::t] accumulator) -> void

#self?.discovered_classes_for_pathsHash[String, Type::t]

Parameters:

  • paths (Array[String])
  • buffer: (Object)

Returns:

  • (Hash[String, Type::t])


167
# File 'sig/rigor/inference.rbs', line 167

def self?.discovered_classes_for_paths: (Array[String] paths, ?buffer: untyped) -> Hash[String, Type::t]

#self?.discovered_def_index_for_pathsHash[Symbol, untyped]

Parameters:

  • paths (Array[String])
  • buffer: (Object)

Returns:

  • (Hash[Symbol, untyped])


168
# File 'sig/rigor/inference.rbs', line 168

def self?.discovered_def_index_for_paths: (Array[String] paths, ?buffer: untyped) -> Hash[Symbol, untyped]

#self?.discovered_project_index_for_pathsHash[Symbol, untyped]

Parameters:

  • paths (Array[String])
  • buffer: (Object)

Returns:

  • (Hash[Symbol, untyped])


171
# File 'sig/rigor/inference.rbs', line 171

def self?.discovered_project_index_for_paths: (Array[String] paths, ?buffer: untyped) -> Hash[Symbol, untyped]

#self?.discovered_project_index_incrementalHash[Symbol, untyped]

Parameters:

  • paths (Array[String])
  • seed_bundles: (Hash[String, untyped])
  • buffer: (Object)

Returns:

  • (Hash[Symbol, untyped])


172
# File 'sig/rigor/inference.rbs', line 172

def self?.discovered_project_index_incremental: (Array[String] paths, seed_bundles: Hash[String, untyped], ?buffer: untyped) -> Hash[Symbol, untyped]

#self?.indexHash[untyped, Scope]

Parameters:

  • root (Object)
  • default_scope: (Scope)

Returns:



164
# File 'sig/rigor/inference.rbs', line 164

def self?.index: (untyped root, default_scope: Scope) -> Hash[untyped, Scope]

#self?.propagatevoid

This method returns an undefined value.

Parameters:

  • node (Object)
  • table (Hash[untyped, Scope])
  • parent_scope (Scope)


176
# File 'sig/rigor/inference.rbs', line 176

def self?.propagate: (untyped node, Hash[untyped, Scope] table, Scope parent_scope) -> void

#self?.qualified_name_forString?

Parameters:

  • constant_path_node (Object)

Returns:

  • (String, nil)


174
# File 'sig/rigor/inference.rbs', line 174

def self?.qualified_name_for: (untyped constant_path_node) -> String?

#self?.record_declarationsvoid

This method returns an undefined value.

Parameters:

  • node (Object)
  • qualified_prefix (Array[String])
  • identity_table (Hash[untyped, Type::t])
  • discovered (Hash[String, Type::t])


166
# File 'sig/rigor/inference.rbs', line 166

def self?.record_declarations: (untyped node, Array[String] qualified_prefix, Hash[untyped, Type::t] identity_table, Hash[String, Type::t] discovered) -> void

#self?.render_constant_pathString

Parameters:

  • node (Object)

Returns:

  • (String)


175
# File 'sig/rigor/inference.rbs', line 175

def self?.render_constant_path: (untyped node) -> String

#self?.scan_summary_for_pathsHash[Symbol, untyped]

Parameters:

  • paths (Array[String])
  • buffer: (Object)

Returns:

  • (Hash[Symbol, untyped])


169
# File 'sig/rigor/inference.rbs', line 169

def self?.scan_summary_for_paths: (Array[String] paths, ?buffer: untyped) -> Hash[Symbol, untyped]