Class: RubyLint::VirtualMachine

Inherits:
Iterator
  • Object
show all
Includes:
MethodEvaluation
Defined in:
lib/ruby-lint/virtual_machine.rb

Overview

VirtualMachine is the heart of ruby-lint. It takes a AST generated by Parser, iterates it and builds various definitions of methods, variables, etc.

The virtual machine is a stack based virtual machine. Whenever certain expressions are processed their values are stored in a stack which is then later used for creating definitions (where applicable). For example, when creating a new class a definition for the class is pushed on to a stack. All code defined in this class is then stored in the definition at the end of the stack.

After a certain AST has been processed the VM will enter a read-only state to prevent code from modifying it (either on purpose or by accident).

Stacks

The virtual machine uses two stacks:

  • value_stack
  • variable_stack

The value stack is used for storing raw values (e.g. integers) while the variable stack is used for storing variable definitions (which in turn store their values inside themselves).

Definitions

Built definitions are stored in #definitions as a single root definition called “root”. This definition in turn contains everything defined in a block of code that was processed by the VM.

Associations

The VM also keeps track of various nodes and their corresponding definitions to make it easier to retrieve them later on. These are only nodes/definitions related to a new scope such as a class or method definition node.

These associations are stored as a Hash in #associations with the keys set to the nodes and the values to the corresponding definitions.

Options

The following extra options can be set in the constructor:

  • :comments: a Hash containing the comments for various AST nodes.

Constant Summary

ASSIGNMENT_TYPES =

Hash containing variable assignment types and the corresponding variable reference types.

Returns:

  • (Hash)
{
  :lvasgn => :lvar,
  :ivasgn => :ivar,
  :cvasgn => :cvar,
  :gvasgn => :gvar
}
PRIMITIVES =

Collection of primitive value types.

Returns:

  • (Array)
[
  :int,
  :float,
  :str,
  :dstr,
  :sym,
  :regexp,
  :true,
  :false,
  :nil,
  :erange,
  :irange
]
SEND_MAPPING =

Returns a Hash containing the method call evaluators to use for (send) nodes.

Returns:

  • (Hash)
{
  '[]='           => MethodCall::AssignMember,
  'include'       => MethodCall::Include,
  'extend'        => MethodCall::Include,
  'alias_method'  => MethodCall::Alias,
  'attr'          => MethodCall::Attribute,
  'attr_reader'   => MethodCall::Attribute,
  'attr_writer'   => MethodCall::Attribute,
  'attr_accessor' => MethodCall::Attribute,
  'define_method' => MethodCall::DefineMethod
}
ARGUMENT_TYPES =

Array containing the various argument types of method definitions.

Returns:

  • (Array)
[:arg, :optarg, :restarg, :blockarg, :kwoptarg]
EXPORT_VARIABLES =

The types of variables to export outside of a method definition.

Returns:

  • (Array)
[:ivar, :cvar, :const]
ASSIGN_GLOBAL =

List of variable types that should be assigned in the global scope.

Returns:

  • (Array)
[:gvar]
VISIBILITIES =

The available method visibilities.

Returns:

  • (Array)
[:public, :protected, :private].freeze

Instance Attribute Summary collapse

Attributes inherited from Iterator

#arity_cache, #arity_cache Hash containing the amount of arguments for

Instance Method Summary collapse

Methods included from MethodEvaluation

#unpack_block

Methods inherited from Iterator

#execute_callback, #initialize, #iterate, #skip_child_nodes!

Constructor Details

This class inherits a constructor from RubyLint::Iterator

Instance Attribute Details

#associationsHash (readonly)

Returns:

  • (Hash)


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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

#commentsHash (readonly)

Returns:

  • (Hash)


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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

#definitionsRubyLint::Definition::RubyObject (readonly)



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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

#docstring_tagsRubyLint::Docstring::Mapping (readonly, private)



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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

#extra_definitionsArray (readonly)

Returns:

  • (Array)


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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

#value_stackRubyLint::NestedStack (readonly, private)



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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

#variable_stackRubyLint::NestedStack (readonly, private)



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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
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
357
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
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
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
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
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
# File 'lib/ruby-lint/virtual_machine.rb', line 72

class VirtualMachine < Iterator
  include MethodEvaluation

  attr_reader :associations,
    :comments,
    :definitions,
    :docstring_tags,
    :value_stack,
    :variable_stack

  private :value_stack, :variable_stack, :docstring_tags

  ##
  # Hash containing variable assignment types and the corresponding variable
  # reference types.
  #
  # @return [Hash]
  #
  ASSIGNMENT_TYPES = {
    :lvasgn => :lvar,
    :ivasgn => :ivar,
    :cvasgn => :cvar,
    :gvasgn => :gvar
  }

  ##
  # Collection of primitive value types.
  #
  # @return [Array]
  #
  PRIMITIVES = [
    :int,
    :float,
    :str,
    :dstr,
    :sym,
    :regexp,
    :true,
    :false,
    :nil,
    :erange,
    :irange
  ]

  ##
  # Returns a Hash containing the method call evaluators to use for `(send)`
  # nodes.
  #
  # @return [Hash]
  #
  SEND_MAPPING = {
    '[]='           => MethodCall::AssignMember,
    'include'       => MethodCall::Include,
    'extend'        => MethodCall::Include,
    'alias_method'  => MethodCall::Alias,
    'attr'          => MethodCall::Attribute,
    'attr_reader'   => MethodCall::Attribute,
    'attr_writer'   => MethodCall::Attribute,
    'attr_accessor' => MethodCall::Attribute,
    'define_method' => MethodCall::DefineMethod
  }

  ##
  # Array containing the various argument types of method definitions.
  #
  # @return [Array]
  #
  ARGUMENT_TYPES = [:arg, :optarg, :restarg, :blockarg, :kwoptarg]

  ##
  # The types of variables to export outside of a method definition.
  #
  # @return [Array]
  #
  EXPORT_VARIABLES = [:ivar, :cvar, :const]

  ##
  # List of variable types that should be assigned in the global scope.
  #
  # @return [Array]
  #
  ASSIGN_GLOBAL = [:gvar]

  ##
  # The available method visibilities.
  #
  # @return [Array]
  #
  VISIBILITIES = [:public, :protected, :private].freeze

  ##
  # Called after a new instance of the virtual machine has been created.
  #
  def after_initialize
    @comments ||= {}

    @associations    = {}
    @definitions     = initial_definitions
    @constant_loader = ConstantLoader.new(:definitions => @definitions)
    @scopes          = [@definitions]
    @value_stack     = NestedStack.new
    @variable_stack  = NestedStack.new
    @ignored_nodes   = []
    @visibility      = :public

    reset_docstring_tags
    reset_method_type

    @constant_loader.bootstrap
  end

  ##
  # Processes the given AST or a collection of AST nodes.
  #
  # @see #iterate
  # @param [Array|RubyLint::AST::Node] ast
  #
  def run(ast)
    ast = [ast] unless ast.is_a?(Array)

    # pre-load all the built-in definitions.
    @constant_loader.run(ast)

    ast.each { |node| iterate(node) }

    freeze
  end

  ##
  # Freezes the VM along with all the instance variables.
  #
  def freeze
    @associations.freeze
    @definitions.freeze
    @scopes.freeze

    super
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_root(node)
    associate_node(node, current_scope)
  end

  ##
  # Processes a regular variable assignment.
  #
  def on_assign
    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_assign
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_assign(node)
    type  = ASSIGNMENT_TYPES[node.type]
    name  = node.children[0].to_s
    value = value_stack.pop.first

    if !value and assignment_value
      value = assignment_value
    end

    assign_variable(type, name, value, node)
  end

  ASSIGNMENT_TYPES.each do |callback, _|
    alias_method :on_#{callback}", :on_assign
    alias_method :after_#{callback}", :after_assign
  end

  ##
  # Processes the assignment of a constant.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_casgn(node)
    # Don't push values for the receiver constant.
    @ignored_nodes << node.children[0] if node.children[0]

    reset_assignment_value
    value_stack.add_stack
  end

  ##
  # @see #on_casgn
  #
  def after_casgn(node)
    values = value_stack.pop
    scope  = current_scope

    if node.children[0]
      scope = ConstantPath.new(node.children[0]).resolve(current_scope)

      return unless scope
    end

    variable = Definition::RubyObject.new(
      :type          => :const,
      :name          => node.children[1].to_s,
      :value         => values.first,
      :instance_type => :instance
    )

    add_variable(variable, scope)
  end

  def on_masgn
    add_stacks
  end

  ##
  # Processes a mass variable assignment using the stacks created by
  # {#on_masgn}.
  #
  def after_masgn
    variables = variable_stack.pop
    values    = value_stack.pop.first
    values    = values && values.value ? values.value : []

    variables.each_with_index do |variable, index|
      variable.value = values[index].value if values[index]

      current_scope.add(variable.type, variable.name, variable)
    end
  end

  def on_or_asgn
    add_stacks
  end

  ##
  # Processes an `or` assignment in the form of `variable ||= value`.
  #
  def after_or_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    if variable and value
      conditional_assignment(variable, value, false)
    end
  end

  def on_and_asgn
    add_stacks
  end

  ##
  # Processes an `and` assignment in the form of `variable &&= value`.
  #
  def after_and_asgn
    variable = variable_stack.pop.first
    value    = value_stack.pop.first

    conditional_assignment(variable, value)
  end

  # Creates the callback methods for various primitives such as integers.
  PRIMITIVES.each do |type|
    define_method("on_#{type}") do |node|
      push_value(create_primitive(node))
    end
  end

  # Creates the callback methods for various variable types such as local
  # variables.
  ASSIGNMENT_TYPES.each do |_, type|
    define_method("on_#{type}") do |node|
      increment_reference_amount(node)
      push_variable_value(node)
    end
  end

  ##
  # Called whenever a magic regexp global variable is referenced (e.g. `$1`).
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_nth_ref(node)
    var = definitions.lookup(:gvar, "$#{node.children[0]}")
    # If the number is not found, then add it as there is no limit for them
    var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

    push_value(var.value)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def on_const(node)
    increment_reference_amount(node)
    push_variable_value(node)

    # The root node is also used in such a way that it processes child (=
    # receiver) constants.
    skip_child_nodes!(node)
  end

  ##
  # Adds a new stack for Array values.
  #
  def on_array
    value_stack.add_stack
  end

  ##
  # Builds an Array.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_array(node)
    builder = DefinitionBuilder::RubyArray.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new stack for Hash values.
  #
  def on_hash
    value_stack.add_stack
  end

  ##
  # Builds a Hash.
  #
  # @param [RubyLint::AST::Node] node
  #
  def after_hash(node)
    builder = DefinitionBuilder::RubyHash.new(
      node,
      self,
      :values => value_stack.pop
    )

    push_value(builder.build)
  end

  ##
  # Adds a new value stack for key/value pairs.
  #
  def on_pair
    value_stack.add_stack
  end

  ##
  # @see #on_pair
  #
  def after_pair
    key, value = value_stack.pop

    return unless key

    member = Definition::RubyObject.new(
      :name  => key.value.to_s,
      :type  => :member,
      :value => value
    )

    push_value(member)
  end

  ##
  # Pushes the value of `self` onto the current stack.
  #
  def on_self
    scope  = current_scope
    method = scope.lookup(scope.method_call_type, 'self')

    push_value(method.return_value)
  end

  ##
  # Pushes the return value of the block yielded to, that is, an unknown one.
  #
  def on_yield
    push_unknown_value
  end

  ##
  # Creates the definition for a module.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_module(node)
    define_module(node, DefinitionBuilder::RubyModule)
  end

  ##
  # Pops the scope created by the module.
  #
  def after_module
    pop_scope
  end

  ##
  # Creates the definition for a class.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_class(node)
    parent      = nil
    parent_node = node.children[1]

    if parent_node
      parent = evaluate_node(parent_node)

      if !parent or !parent.const?
        # FIXME: this should use `definitions` instead.
        parent = current_scope.lookup(:const, 'Object')
      end
    end

    define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
  end

  ##
  # Pops the scope created by the class.
  #
  def after_class
    pop_scope
  end

  ##
  # Builds the definition for a block.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_block(node)
    builder    = DefinitionBuilder::RubyBlock.new(node, self)
    definition = builder.build

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the block.
  #
  def after_block
    pop_scope
  end

  ##
  # Processes an sclass block. Sclass blocks look like the following:
  #
  #     class << self
  #
  #     end
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_sclass(node)
    parent       = node.children[0]
    definition   = evaluate_node(parent)
    @method_type = definition.method_call_type

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Pops the scope created by the `sclass` block and resets the method
  # definition/send type.
  #
  def after_sclass
    reset_method_type
    pop_scope
  end

  ##
  # Creates the definition for a method definition.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_def(node)
    receiver = nil

    if node.type == :defs
      receiver = evaluate_node(node.children[0])
    end

    builder = DefinitionBuilder::RubyMethod.new(
      node,
      self,
      :type       => @method_type,
      :receiver   => receiver,
      :visibility => @visibility
    )

    definition = builder.build

    builder.scope.add_definition(definition)

    associate_node(node, definition)

    buffer_docstring_tags(node)

    if docstring_tags and docstring_tags.return_tag
      assign_return_value_from_tag(
        docstring_tags.return_tag,
        definition
      )
    end

    push_scope(definition)
  end

  ##
  # Exports various variables to the outer scope of the method definition.
  #
  def after_def
    previous = pop_scope
    current  = current_scope

    reset_docstring_tags

    EXPORT_VARIABLES.each do |type|
      current.copy(previous, type)
    end
  end

  # Creates callbacks for various argument types such as :arg and :optarg.
  ARGUMENT_TYPES.each do |type|
    define_method("on_#{type}") do
      value_stack.add_stack
    end

    define_method("after_#{type}") do |node|
      value = value_stack.pop.first
      name  = node.children[0].to_s
      var   = Definition::RubyObject.new(
        :type          => :lvar,
        :name          => name,
        :value         => value,
        :instance_type => :instance
      )

      if docstring_tags and docstring_tags.param_tags[name]
        update_parents_from_tag(docstring_tags.param_tags[name], var)
      end

      associate_node(node, var)
      current_scope.add(type, name, var)
      current_scope.add_definition(var)
    end
  end

  alias_method :on_defs, :on_def
  alias_method :after_defs, :after_def

  ##
  # Processes a method call. If a certain method call has its own dedicated
  # callback that one will be called as well.
  #
  # @param [RubyLint::AST::Node] node
  #
  def on_send(node)
    name     = node.children[1].to_s
    name     = SEND_MAPPING.fetch(name, name)
    callback = "on_send_#{name}"

    value_stack.add_stack

    execute_callback(callback, node)
  end

  ##
  # @param [RubyLint::AST::Node] node
  #
  def after_send(node)
    receiver, name, _ = *node

    receiver    = unpack_block(receiver)
    name        = name.to_s
    args_length = node.children[2..-1].length
    values      = value_stack.pop
    arguments   = values.pop(args_length)
    block       = nil

    receiver_definition = values.first

    if arguments.length != args_length
      raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
      EOF
    end

    # Associate the argument definitions with their nodes.
    arguments.each_with_index do |obj, index|
      arg_node = unpack_block(node.children[2 + index])

      associate_node(arg_node, obj)
    end

    # If the receiver doesn't exist there's no point in associating a context
    # with it.
    if receiver and !receiver_definition
      push_unknown_value

      return
    end

    if receiver and receiver_definition
      context = receiver_definition
    else
      context = current_scope

      # `parser` wraps (block) nodes around (send) calls which is a bit
      # inconvenient
      if context.block?
        block   = context
        context = previous_scope
      end
    end

    if SEND_MAPPING[name]
      evaluator = SEND_MAPPING[name].new(node, self)

      evaluator.evaluate(arguments, context, block)
    end

    # Associate the receiver node with the context so that it becomes
    # easier to retrieve later on.
    if receiver and context
      associate_node(receiver, context)
    end

    if context and context.method_defined?(name)
      retval = context.call_method(name)

      retval ? push_value(retval) : push_unknown_value

      # Track the method call
      track_method_call(context, name, node)
    else
      push_unknown_value
    end
  end

  VISIBILITIES.each do |vis|
    define_method("on_send_#{vis}") do
      @visibility = vis
    end
  end

  ##
  # Adds a new value stack for the values of an alias.
  #
  def on_alias
    value_stack.add_stack
  end

  ##
  # Processes calls to `alias`. Two types of data can be aliased:
  #
  # 1. Methods (using the syntax `alias ALIAS SOURCE`)
  # 2. Global variables
  #
  # This method dispatches the alias process to two possible methods:
  #
  # * on_alias_sym: aliasing methods (using symbols)
  # * on_alias_gvar: aliasing global variables
  #
  def after_alias(node)
    arguments = value_stack.pop
    evaluator = MethodCall::Alias.new(node, self)

    evaluator.evaluate(arguments, current_scope)
  end

  ##
  # @return [RubyLint::Definition::RubyObject]
  #
  def current_scope
    return @scopes.last
  end

  ##
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def previous_scope
    return @scopes[-2]
  end

  ##
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def global_constant(name)
    found = definitions.lookup(:const, name)

    # Didn't find it? Lets see if the constant loader knows about it.
    unless found
      @constant_loader.load_constant(name)

      found = definitions.lookup(:const, name)
    end

    return found
  end

  ##
  # Evaluates and returns the value of the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def evaluate_node(node)
    value_stack.add_stack

    iterate(node)

    return value_stack.pop.first
  end

  private

  ##
  # Returns the initial set of definitions to use.
  #
  # @return [RubyLint::Definition::RubyObject]
  #
  def initial_definitions
    definitions = Definition::RubyObject.new(
      :name          => 'root',
      :type          => :root,
      :instance_type => :instance,
      :inherit_self  => false
    )

    definitions.parents = [
      definitions.constant_proxy('Object', RubyLint.registry)
    ]

    definitions.define_self

    return definitions
  end

  ##
  # Defines a new module/class based on the supplied node.
  #
  # @param [RubyLint::Node] node
  # @param [RubyLint::DefinitionBuilder::Base] definition_builder
  # @param [Hash] options
  #
  def define_module(node, definition_builder, options = {})
    builder    = definition_builder.new(node, self, options)
    definition = builder.build
    scope      = builder.scope
    existing   = scope.lookup(definition.type, definition.name, false)

    if existing
      definition = existing

      inherit_definition(definition, current_scope)
    else
      definition.add_definition(definition)

      scope.add_definition(definition)
    end

    associate_node(node, definition)

    push_scope(definition)
  end

  ##
  # Associates the given node and defintion with each other.
  #
  # @param [RubyLint::AST::Node] node
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def associate_node(node, definition)
    @associations[node] = definition
  end

  ##
  # Pushes a new scope on the list of available scopes.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_scope(definition)
    unless definition.is_a?(RubyLint::Definition::RubyObject)
      raise(
        ArgumentError,
        "Expected a RubyLint::Definition::RubyObject but got " \
          "#{definition.class} instead"
      )
    end

    @scopes << definition
  end

  ##
  # Removes a scope from the list.
  #
  def pop_scope
    raise 'Trying to pop an empty scope' if @scopes.empty?

    @scopes.pop
  end

  ##
  # Pushes the value of a variable onto the value stack.
  #
  # @param [RubyLint::AST::Node] node
  #
  def push_variable_value(node)
    return if value_stack.empty? || @ignored_nodes.include?(node)

    definition = definition_for_node(node)

    if definition
      value = definition.value ? definition.value : definition

      push_value(value)
    end
  end

  ##
  # Pushes a definition (of a value) onto the value stack.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def push_value(definition)
    value_stack.push(definition) if definition && !value_stack.empty?
  end

  ##
  # Pushes an unknown value object onto the value stack.
  #
  def push_unknown_value
    push_value(Definition::RubyObject.create_unknown)
  end

  ##
  # Adds a new variable and value stack.
  #
  def add_stacks
    variable_stack.add_stack
    value_stack.add_stack
  end

  ##
  # Assigns a basic variable.
  #
  # @param [Symbol] type The type of variable.
  # @param [String] name The name of the variable
  # @param [RubyLint::Definition::RubyObject] value
  # @param [RubyLint::AST::Node] node
  #
  def assign_variable(type, name, value, node)
    scope    = assignment_scope(type)
    variable = scope.lookup(type, name)

    # If there's already a variable we'll just update it.
    if variable
      variable.reference_amount += 1

      # `value` is not for conditional assignments as those are handled
      # manually.
      variable.value = value if value
    else
      variable = Definition::RubyObject.new(
        :type             => type,
        :name             => name,
        :value            => value,
        :instance_type    => :instance,
        :reference_amount => 0,
        :line             => node.line,
        :column           => node.column,
        :file             => node.file
      )
    end

    buffer_assignment_value(value)

    # Primarily used by #after_send to support variable assignments as method
    # call arguments.
    if value and !value_stack.empty?
      value_stack.push(variable.value)
    end

    add_variable(variable, scope)
  end

  ##
  # Determines the scope to use for a variable assignment.
  #
  # @param [Symbol] type
  # @return [RubyLint::Definition::RubyObject]
  #
  def assignment_scope(type)
    return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
  end

  ##
  # Adds a variable to the current scope of, if a the variable stack is not
  # empty, add it to the stack instead.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyObject] scope
  #
  def add_variable(variable, scope = current_scope)
    if variable_stack.empty?
      scope.add(variable.type, variable.name, variable)
    else
      variable_stack.push(variable)
    end
  end

  ##
  # Creates a primitive value such as an integer.
  #
  # @param [RubyLint::AST::Node] node
  # @param [Hash] options
  #
  def create_primitive(node, options = {})
    builder = DefinitionBuilder::Primitive.new(node, self, options)

    return builder.build
  end

  ##
  # Resets the variable used for storing the last assignment value.
  #
  def reset_assignment_value
    @assignment_value = nil
  end

  ##
  # Returns the value of the last assignment.
  #
  def assignment_value
    return @assignment_value
  end

  ##
  # Stores the value as the last assigned value.
  #
  # @param [RubyLint::Definition::RubyObject] value
  #
  def buffer_assignment_value(value)
    @assignment_value = value
  end

  ##
  # Resets the method assignment/call type.
  #
  def reset_method_type
    @method_type = :instance_method
  end

  ##
  # Performs a conditional assignment.
  #
  # @param [RubyLint::Definition::RubyObject] variable
  # @param [RubyLint::Definition::RubyValue] value
  # @param [TrueClass|FalseClass] bool When set to `true` existing variables
  #  will be overwritten.
  #
  def conditional_assignment(variable, value, bool = true)
    variable.reference_amount += 1

    if current_scope.has_definition?(variable.type, variable.name) == bool
      variable.value = value

      current_scope.add_definition(variable)

      buffer_assignment_value(variable.value)
    end
  end

  ##
  # Returns the definition for the given node.
  #
  # @param [RubyLint::AST::Node] node
  # @return [RubyLint::Definition::RubyObject]
  #
  def definition_for_node(node)
    if node.const? and node.children[0]
      definition = ConstantPath.new(node).resolve(current_scope)
    else
      definition = current_scope.lookup(node.type, node.name)
    end

    definition = Definition::RubyObject.create_unknown unless definition

    return definition
  end

  ##
  # Increments the reference amount of a node's definition unless the
  # definition is frozen.
  #
  # @param [RubyLint::AST::Node] node
  #
  def increment_reference_amount(node)
    definition = definition_for_node(node)

    if definition and !definition.frozen?
      definition.reference_amount += 1
    end
  end

  ##
  # Includes the definition `inherit` in the list of parent definitions of
  # `definition`.
  #
  # @param [RubyLint::Definition::RubyObject] definition
  # @param [RubyLint::Definition::RubyObject] inherit
  #
  def inherit_definition(definition, inherit)
    unless definition.parents.include?(inherit)
      definition.parents << inherit
    end
  end

  ##
  # Extracts all the docstring tags from the documentation of the given
  # node, retrieves the corresponding types and stores them for later use.
  #
  # @param [RubyLint::AST::Node] node
  #
  def buffer_docstring_tags(node)
    return unless comments[node]

    parser = Docstring::Parser.new
    tags   = parser.parse(comments[node].map(&:text))

    @docstring_tags = Docstring::Mapping.new(tags)
  end

  ##
  # Resets the docstring tags collection back to its initial value.
  #
  def reset_docstring_tags
    @docstring_tags = nil
  end

  ##
  # Updates the parents of a definition according to the types of a `@param`
  # tag.
  #
  # @param [RubyLint::Docstring::ParamTag] tag
  # @param [RubyLint::Definition::RubyObject] definition
  #
  def update_parents_from_tag(tag, definition)
    extra_parents = definitions_for_types(tag.types)

    definition.parents.concat(extra_parents)
  end

  ##
  # Creates an "unknown" definition with the given method in it.
  #
  # @param [String] name The name of the method to add.
  # @return [RubyLint::Definition::RubyObject]
  #
  def create_unknown_with_method(name)
    definition = Definition::RubyObject.create_unknown

    definition.send("define_#{@method_type}", name)

    return definition
  end

  ##
  # Returns a collection of definitions for a set of YARD types.
  #
  # @param [Array] types
  # @return [Array]
  #
  def definitions_for_types(types)
    definitions = []

    # There are basically two type signatures: either the name(s) of a
    # constant or a method in the form of `#method_name`.
    types.each do |type|
      if type[0] == '#'
        found = create_unknown_with_method(type[1..-1])
      else
        found = lookup_type_definition(type)
      end

      definitions << found if found
    end

    return definitions
  end

  ##
  # Tries to look up the given type/constant in the current scope and falls
  # back to the global scope if it couldn't be found in the former.
  #
  # @param [String] name
  # @return [RubyLint::Definition::RubyObject]
  #
  def lookup_type_definition(name)
    return current_scope.lookup(:const, name) || global_constant(name)
  end

  ##
  # @param [RubyLint::Docstring::ReturnTag] tag
  # @param [RubyLint::Definition::RubyMethod] definition
  #
  def assign_return_value_from_tag(tag, definition)
    definitions = definitions_for_types(tag.types)

    # THINK: currently ruby-lint assumes methods always return a single type
    # but YARD allows you to specify multiple ones. For now we'll take the
    # first one but there should be a nicer way to do this.
    definition.returns(definitions[0].instance) if definitions[0]
  end

  ##
  # Tracks a method call.
  #
  # @param [RubyLint::Definition::RubyMethod] definition
  # @param [String] name
  # @param [RubyLint::AST::Node] node
  #
  def track_method_call(definition, name, node)
    method   = definition.lookup(definition.method_call_type, name)
    current  = current_scope
    location = {
      :line   => node.line,
      :column => node.column,
      :file   => node.file
    }

    # Add the call to the current scope if we're dealing with a writable
    # method definition.
    if current.respond_to?(:calls) and !current.frozen?
      current.calls.push(
        MethodCallInfo.new(location.merge(:definition => method))
      )
    end

    # Add the caller to the called method, this allows for inverse lookups.
    unless method.frozen?
      method.callers.push(
        MethodCallInfo.new(location.merge(:definition => definition))
      )
    end
  end
end

Instance Method Details

#add_stacksObject (private)

Adds a new variable and value stack.



927
928
929
930
# File 'lib/ruby-lint/virtual_machine.rb', line 927

def add_stacks
  variable_stack.add_stack
  value_stack.add_stack
end

#add_variable(variable, scope = current_scope) ⇒ Object (private)

Adds a variable to the current scope of, if a the variable stack is not empty, add it to the stack instead.

Parameters:



992
993
994
995
996
997
998
# File 'lib/ruby-lint/virtual_machine.rb', line 992

def add_variable(variable, scope = current_scope)
  if variable_stack.empty?
    scope.add(variable.type, variable.name, variable)
  else
    variable_stack.push(variable)
  end
end

#after_alias(node) ⇒ Object

Processes calls to alias. Two types of data can be aliased:

  1. Methods (using the syntax alias ALIAS SOURCE)
  2. Global variables

This method dispatches the alias process to two possible methods:

  • on_alias_sym: aliasing methods (using symbols)
  • on_alias_gvar: aliasing global variables


750
751
752
753
754
755
# File 'lib/ruby-lint/virtual_machine.rb', line 750

def after_alias(node)
  arguments = value_stack.pop
  evaluator = MethodCall::Alias.new(node, self)

  evaluator.evaluate(arguments, current_scope)
end

#after_and_asgnObject

Processes an and assignment in the form of variable &&= value.



327
328
329
330
331
332
# File 'lib/ruby-lint/virtual_machine.rb', line 327

def after_and_asgn
  variable = variable_stack.pop.first
  value    = value_stack.pop.first

  conditional_assignment(variable, value)
end

#after_array(node) ⇒ Object

Builds an Array.

Parameters:



387
388
389
390
391
392
393
394
395
# File 'lib/ruby-lint/virtual_machine.rb', line 387

def after_array(node)
  builder = DefinitionBuilder::RubyArray.new(
    node,
    self,
    :values => value_stack.pop
  )

  push_value(builder.build)
end

#after_assign(node) ⇒ Object

Parameters:

See Also:



231
232
233
234
235
236
237
238
239
240
241
# File 'lib/ruby-lint/virtual_machine.rb', line 231

def after_assign(node)
  type  = ASSIGNMENT_TYPES[node.type]
  name  = node.children[0].to_s
  value = value_stack.pop.first

  if !value and assignment_value
    value = assignment_value
  end

  assign_variable(type, name, value, node)
end

#after_blockObject

Pops the scope created by the block.



521
522
523
# File 'lib/ruby-lint/virtual_machine.rb', line 521

def after_block
  pop_scope
end

#after_casgn(node) ⇒ Object

See Also:



264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
# File 'lib/ruby-lint/virtual_machine.rb', line 264

def after_casgn(node)
  values = value_stack.pop
  scope  = current_scope

  if node.children[0]
    scope = ConstantPath.new(node.children[0]).resolve(current_scope)

    return unless scope
  end

  variable = Definition::RubyObject.new(
    :type          => :const,
    :name          => node.children[1].to_s,
    :value         => values.first,
    :instance_type => :instance
  )

  add_variable(variable, scope)
end

#after_classObject

Pops the scope created by the class.



500
501
502
# File 'lib/ruby-lint/virtual_machine.rb', line 500

def after_class
  pop_scope
end

#after_defObject Also known as: after_defs

Exports various variables to the outer scope of the method definition.



594
595
596
597
598
599
600
601
602
603
# File 'lib/ruby-lint/virtual_machine.rb', line 594

def after_def
  previous = pop_scope
  current  = current_scope

  reset_docstring_tags

  EXPORT_VARIABLES.each do |type|
    current.copy(previous, type)
  end
end

#after_hash(node) ⇒ Object

Builds a Hash.

Parameters:



409
410
411
412
413
414
415
416
417
# File 'lib/ruby-lint/virtual_machine.rb', line 409

def after_hash(node)
  builder = DefinitionBuilder::RubyHash.new(
    node,
    self,
    :values => value_stack.pop
  )

  push_value(builder.build)
end

#after_initializeObject

Called after a new instance of the virtual machine has been created.



165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# File 'lib/ruby-lint/virtual_machine.rb', line 165

def after_initialize
  @comments ||= {}

  @associations    = {}
  @definitions     = initial_definitions
  @constant_loader = ConstantLoader.new(:definitions => @definitions)
  @scopes          = [@definitions]
  @value_stack     = NestedStack.new
  @variable_stack  = NestedStack.new
  @ignored_nodes   = []
  @visibility      = :public

  reset_docstring_tags
  reset_method_type

  @constant_loader.bootstrap
end

#after_masgnObject

Processes a mass variable assignment using the stacks created by #on_masgn.



292
293
294
295
296
297
298
299
300
301
302
# File 'lib/ruby-lint/virtual_machine.rb', line 292

def after_masgn
  variables = variable_stack.pop
  values    = value_stack.pop.first
  values    = values && values.value ? values.value : []

  variables.each_with_index do |variable, index|
    variable.value = values[index].value if values[index]

    current_scope.add(variable.type, variable.name, variable)
  end
end

#after_moduleObject

Pops the scope created by the module.



472
473
474
# File 'lib/ruby-lint/virtual_machine.rb', line 472

def after_module
  pop_scope
end

#after_or_asgnObject

Processes an or assignment in the form of variable ||= value.



311
312
313
314
315
316
317
318
# File 'lib/ruby-lint/virtual_machine.rb', line 311

def after_or_asgn
  variable = variable_stack.pop.first
  value    = value_stack.pop.first

  if variable and value
    conditional_assignment(variable, value, false)
  end
end

#after_pairObject

See Also:



429
430
431
432
433
434
435
436
437
438
439
440
441
# File 'lib/ruby-lint/virtual_machine.rb', line 429

def after_pair
  key, value = value_stack.pop

  return unless key

  member = Definition::RubyObject.new(
    :name  => key.value.to_s,
    :type  => :member,
    :value => value
  )

  push_value(member)
end

#after_sclassObject

Pops the scope created by the sclass block and resets the method definition/send type.



548
549
550
551
# File 'lib/ruby-lint/virtual_machine.rb', line 548

def after_sclass
  reset_method_type
  pop_scope
end

#after_send(node) ⇒ Object

Parameters:



653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
# File 'lib/ruby-lint/virtual_machine.rb', line 653

def after_send(node)
  receiver, name, _ = *node

  receiver    = unpack_block(receiver)
  name        = name.to_s
  args_length = node.children[2..-1].length
  values      = value_stack.pop
  arguments   = values.pop(args_length)
  block       = nil

  receiver_definition = values.first

  if arguments.length != args_length
    raise <<-EOF
Not enough argument definitions for #{node.inspect_oneline}.
Location: #{node.file} on line #{node.line}, column #{node.column}
Expected: #{args_length}
Received: #{arguments.length}
    EOF
  end

  # Associate the argument definitions with their nodes.
  arguments.each_with_index do |obj, index|
    arg_node = unpack_block(node.children[2 + index])

    associate_node(arg_node, obj)
  end

  # If the receiver doesn't exist there's no point in associating a context
  # with it.
  if receiver and !receiver_definition
    push_unknown_value

    return
  end

  if receiver and receiver_definition
    context = receiver_definition
  else
    context = current_scope

    # `parser` wraps (block) nodes around (send) calls which is a bit
    # inconvenient
    if context.block?
      block   = context
      context = previous_scope
    end
  end

  if SEND_MAPPING[name]
    evaluator = SEND_MAPPING[name].new(node, self)

    evaluator.evaluate(arguments, context, block)
  end

  # Associate the receiver node with the context so that it becomes
  # easier to retrieve later on.
  if receiver and context
    associate_node(receiver, context)
  end

  if context and context.method_defined?(name)
    retval = context.call_method(name)

    retval ? push_value(retval) : push_unknown_value

    # Track the method call
    track_method_call(context, name, node)
  else
    push_unknown_value
  end
end

#assign_return_value_from_tag(tag, definition) ⇒ Object (private)



1195
1196
1197
1198
1199
1200
1201
1202
# File 'lib/ruby-lint/virtual_machine.rb', line 1195

def assign_return_value_from_tag(tag, definition)
  definitions = definitions_for_types(tag.types)

  # THINK: currently ruby-lint assumes methods always return a single type
  # but YARD allows you to specify multiple ones. For now we'll take the
  # first one but there should be a nicer way to do this.
  definition.returns(definitions[0].instance) if definitions[0]
end

#assign_variable(type, name, value, node) ⇒ Object (private)

Assigns a basic variable.

Parameters:



940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
# File 'lib/ruby-lint/virtual_machine.rb', line 940

def assign_variable(type, name, value, node)
  scope    = assignment_scope(type)
  variable = scope.lookup(type, name)

  # If there's already a variable we'll just update it.
  if variable
    variable.reference_amount += 1

    # `value` is not for conditional assignments as those are handled
    # manually.
    variable.value = value if value
  else
    variable = Definition::RubyObject.new(
      :type             => type,
      :name             => name,
      :value            => value,
      :instance_type    => :instance,
      :reference_amount => 0,
      :line             => node.line,
      :column           => node.column,
      :file             => node.file
    )
  end

  buffer_assignment_value(value)

  # Primarily used by #after_send to support variable assignments as method
  # call arguments.
  if value and !value_stack.empty?
    value_stack.push(variable.value)
  end

  add_variable(variable, scope)
end

#assignment_scope(type) ⇒ RubyLint::Definition::RubyObject (private)

Determines the scope to use for a variable assignment.

Parameters:

  • type (Symbol)

Returns:



981
982
983
# File 'lib/ruby-lint/virtual_machine.rb', line 981

def assignment_scope(type)
  return ASSIGN_GLOBAL.include?(type) ? definitions : current_scope
end

#assignment_valueObject (private)

Returns the value of the last assignment.



1022
1023
1024
# File 'lib/ruby-lint/virtual_machine.rb', line 1022

def assignment_value
  return @assignment_value
end

#associate_node(node, definition) ⇒ Object (private)

Associates the given node and defintion with each other.

Parameters:



861
862
863
# File 'lib/ruby-lint/virtual_machine.rb', line 861

def associate_node(node, definition)
  @associations[node] = definition
end

#buffer_assignment_value(value) ⇒ Object (private)

Stores the value as the last assigned value.

Parameters:



1031
1032
1033
# File 'lib/ruby-lint/virtual_machine.rb', line 1031

def buffer_assignment_value(value)
  @assignment_value = value
end

#buffer_docstring_tags(node) ⇒ Object (private)

Extracts all the docstring tags from the documentation of the given node, retrieves the corresponding types and stores them for later use.

Parameters:



1113
1114
1115
1116
1117
1118
1119
1120
# File 'lib/ruby-lint/virtual_machine.rb', line 1113

def buffer_docstring_tags(node)
  return unless comments[node]

  parser = Docstring::Parser.new
  tags   = parser.parse(comments[node].map(&:text))

  @docstring_tags = Docstring::Mapping.new(tags)
end

#conditional_assignment(variable, value, bool = true) ⇒ Object (private)

Performs a conditional assignment.

Parameters:

  • variable (RubyLint::Definition::RubyObject)
  • value (RubyLint::Definition::RubyValue)
  • bool (TrueClass|FalseClass) (defaults to: true)

    When set to true existing variables will be overwritten.



1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
# File 'lib/ruby-lint/virtual_machine.rb', line 1050

def conditional_assignment(variable, value, bool = true)
  variable.reference_amount += 1

  if current_scope.has_definition?(variable.type, variable.name) == bool
    variable.value = value

    current_scope.add_definition(variable)

    buffer_assignment_value(variable.value)
  end
end

#create_primitive(node, options = {}) ⇒ Object (private)

Creates a primitive value such as an integer.

Parameters:



1006
1007
1008
1009
1010
# File 'lib/ruby-lint/virtual_machine.rb', line 1006

def create_primitive(node, options = {})
  builder = DefinitionBuilder::Primitive.new(node, self, options)

  return builder.build
end

#create_unknown_with_method(name) ⇒ RubyLint::Definition::RubyObject (private)

Creates an “unknown” definition with the given method in it.

Parameters:

  • name (String)

    The name of the method to add.

Returns:



1148
1149
1150
1151
1152
1153
1154
# File 'lib/ruby-lint/virtual_machine.rb', line 1148

def create_unknown_with_method(name)
  definition = Definition::RubyObject.create_unknown

  definition.send("define_#{@method_type}", name)

  return definition
end

#current_scopeRubyLint::Definition::RubyObject



760
761
762
# File 'lib/ruby-lint/virtual_machine.rb', line 760

def current_scope
  return @scopes.last
end

#define_module(node, definition_builder, options = {}) ⇒ Object (private)

Defines a new module/class based on the supplied node.

Parameters:



834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
# File 'lib/ruby-lint/virtual_machine.rb', line 834

def define_module(node, definition_builder, options = {})
  builder    = definition_builder.new(node, self, options)
  definition = builder.build
  scope      = builder.scope
  existing   = scope.lookup(definition.type, definition.name, false)

  if existing
    definition = existing

    inherit_definition(definition, current_scope)
  else
    definition.add_definition(definition)

    scope.add_definition(definition)
  end

  associate_node(node, definition)

  push_scope(definition)
end

#definition_for_node(node) ⇒ RubyLint::Definition::RubyObject (private)

Returns the definition for the given node.



1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
# File 'lib/ruby-lint/virtual_machine.rb', line 1068

def definition_for_node(node)
  if node.const? and node.children[0]
    definition = ConstantPath.new(node).resolve(current_scope)
  else
    definition = current_scope.lookup(node.type, node.name)
  end

  definition = Definition::RubyObject.create_unknown unless definition

  return definition
end

#definitions_for_types(types) ⇒ Array (private)

Returns a collection of definitions for a set of YARD types.

Parameters:

  • types (Array)

Returns:

  • (Array)


1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
# File 'lib/ruby-lint/virtual_machine.rb', line 1162

def definitions_for_types(types)
  definitions = []

  # There are basically two type signatures: either the name(s) of a
  # constant or a method in the form of `#method_name`.
  types.each do |type|
    if type[0] == '#'
      found = create_unknown_with_method(type[1..-1])
    else
      found = lookup_type_definition(type)
    end

    definitions << found if found
  end

  return definitions
end

#evaluate_node(node) ⇒ RubyLint::Definition::RubyObject

Evaluates and returns the value of the given node.



795
796
797
798
799
800
801
# File 'lib/ruby-lint/virtual_machine.rb', line 795

def evaluate_node(node)
  value_stack.add_stack

  iterate(node)

  return value_stack.pop.first
end

#freezeObject

Freezes the VM along with all the instance variables.



203
204
205
206
207
208
209
# File 'lib/ruby-lint/virtual_machine.rb', line 203

def freeze
  @associations.freeze
  @definitions.freeze
  @scopes.freeze

  super
end

#global_constant(name) ⇒ RubyLint::Definition::RubyObject

Parameters:

Returns:



776
777
778
779
780
781
782
783
784
785
786
787
# File 'lib/ruby-lint/virtual_machine.rb', line 776

def global_constant(name)
  found = definitions.lookup(:const, name)

  # Didn't find it? Lets see if the constant loader knows about it.
  unless found
    @constant_loader.load_constant(name)

    found = definitions.lookup(:const, name)
  end

  return found
end

#increment_reference_amount(node) ⇒ Object (private)

Increments the reference amount of a node’s definition unless the definition is frozen.

Parameters:



1086
1087
1088
1089
1090
1091
1092
# File 'lib/ruby-lint/virtual_machine.rb', line 1086

def increment_reference_amount(node)
  definition = definition_for_node(node)

  if definition and !definition.frozen?
    definition.reference_amount += 1
  end
end

#inherit_definition(definition, inherit) ⇒ Object (private)

Includes the definition inherit in the list of parent definitions of definition.



1101
1102
1103
1104
1105
# File 'lib/ruby-lint/virtual_machine.rb', line 1101

def inherit_definition(definition, inherit)
  unless definition.parents.include?(inherit)
    definition.parents << inherit
  end
end

#initial_definitionsRubyLint::Definition::RubyObject (private)

Returns the initial set of definitions to use.



810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
# File 'lib/ruby-lint/virtual_machine.rb', line 810

def initial_definitions
  definitions = Definition::RubyObject.new(
    :name          => 'root',
    :type          => :root,
    :instance_type => :instance,
    :inherit_self  => false
  )

  definitions.parents = [
    definitions.constant_proxy('Object', RubyLint.registry)
  ]

  definitions.define_self

  return definitions
end

#lookup_type_definition(name) ⇒ RubyLint::Definition::RubyObject (private)

Tries to look up the given type/constant in the current scope and falls back to the global scope if it couldn’t be found in the former.

Parameters:

Returns:



1187
1188
1189
# File 'lib/ruby-lint/virtual_machine.rb', line 1187

def lookup_type_definition(name)
  return current_scope.lookup(:const, name) || global_constant(name)
end

#on_aliasObject

Adds a new value stack for the values of an alias.



735
736
737
# File 'lib/ruby-lint/virtual_machine.rb', line 735

def on_alias
  value_stack.add_stack
end

#on_and_asgnObject



320
321
322
# File 'lib/ruby-lint/virtual_machine.rb', line 320

def on_and_asgn
  add_stacks
end

#on_arrayObject

Adds a new stack for Array values.



378
379
380
# File 'lib/ruby-lint/virtual_machine.rb', line 378

def on_array
  value_stack.add_stack
end

#on_assignObject

Processes a regular variable assignment.



221
222
223
224
# File 'lib/ruby-lint/virtual_machine.rb', line 221

def on_assign
  reset_assignment_value
  value_stack.add_stack
end

#on_block(node) ⇒ Object

Builds the definition for a block.

Parameters:



509
510
511
512
513
514
515
516
# File 'lib/ruby-lint/virtual_machine.rb', line 509

def on_block(node)
  builder    = DefinitionBuilder::RubyBlock.new(node, self)
  definition = builder.build

  associate_node(node, definition)

  push_scope(definition)
end

#on_casgn(node) ⇒ Object

Processes the assignment of a constant.

Parameters:



253
254
255
256
257
258
259
# File 'lib/ruby-lint/virtual_machine.rb', line 253

def on_casgn(node)
  # Don't push values for the receiver constant.
  @ignored_nodes << node.children[0] if node.children[0]

  reset_assignment_value
  value_stack.add_stack
end

#on_class(node) ⇒ Object

Creates the definition for a class.

Parameters:



481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
# File 'lib/ruby-lint/virtual_machine.rb', line 481

def on_class(node)
  parent      = nil
  parent_node = node.children[1]

  if parent_node
    parent = evaluate_node(parent_node)

    if !parent or !parent.const?
      # FIXME: this should use `definitions` instead.
      parent = current_scope.lookup(:const, 'Object')
    end
  end

  define_module(node, DefinitionBuilder::RubyClass, :parent => parent)
end

#on_const(node) ⇒ Object

Parameters:



366
367
368
369
370
371
372
373
# File 'lib/ruby-lint/virtual_machine.rb', line 366

def on_const(node)
  increment_reference_amount(node)
  push_variable_value(node)

  # The root node is also used in such a way that it processes child (=
  # receiver) constants.
  skip_child_nodes!(node)
end

#on_def(node) ⇒ Object Also known as: on_defs

Creates the definition for a method definition.

Parameters:



558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
# File 'lib/ruby-lint/virtual_machine.rb', line 558

def on_def(node)
  receiver = nil

  if node.type == :defs
    receiver = evaluate_node(node.children[0])
  end

  builder = DefinitionBuilder::RubyMethod.new(
    node,
    self,
    :type       => @method_type,
    :receiver   => receiver,
    :visibility => @visibility
  )

  definition = builder.build

  builder.scope.add_definition(definition)

  associate_node(node, definition)

  buffer_docstring_tags(node)

  if docstring_tags and docstring_tags.return_tag
    assign_return_value_from_tag(
      docstring_tags.return_tag,
      definition
    )
  end

  push_scope(definition)
end

#on_hashObject

Adds a new stack for Hash values.



400
401
402
# File 'lib/ruby-lint/virtual_machine.rb', line 400

def on_hash
  value_stack.add_stack
end

#on_masgnObject



284
285
286
# File 'lib/ruby-lint/virtual_machine.rb', line 284

def on_masgn
  add_stacks
end

#on_module(node) ⇒ Object

Creates the definition for a module.

Parameters:



465
466
467
# File 'lib/ruby-lint/virtual_machine.rb', line 465

def on_module(node)
  define_module(node, DefinitionBuilder::RubyModule)
end

#on_nth_ref(node) ⇒ Object

Called whenever a magic regexp global variable is referenced (e.g. $1).

Parameters:



355
356
357
358
359
360
361
# File 'lib/ruby-lint/virtual_machine.rb', line 355

def on_nth_ref(node)
  var = definitions.lookup(:gvar, "$#{node.children[0]}")
  # If the number is not found, then add it as there is no limit for them
  var = definitions.define_global_variable(node.children[0]) if !var && node.children[0].is_a?(Fixnum)

  push_value(var.value)
end

#on_or_asgnObject



304
305
306
# File 'lib/ruby-lint/virtual_machine.rb', line 304

def on_or_asgn
  add_stacks
end

#on_pairObject

Adds a new value stack for key/value pairs.



422
423
424
# File 'lib/ruby-lint/virtual_machine.rb', line 422

def on_pair
  value_stack.add_stack
end

#on_root(node) ⇒ Object

Parameters:



214
215
216
# File 'lib/ruby-lint/virtual_machine.rb', line 214

def on_root(node)
  associate_node(node, current_scope)
end

#on_sclass(node) ⇒ Object

Processes an sclass block. Sclass blocks look like the following:

class << self

end

Parameters:



534
535
536
537
538
539
540
541
542
# File 'lib/ruby-lint/virtual_machine.rb', line 534

def on_sclass(node)
  parent       = node.children[0]
  definition   = evaluate_node(parent)
  @method_type = definition.method_call_type

  associate_node(node, definition)

  push_scope(definition)
end

#on_selfObject

Pushes the value of self onto the current stack.



446
447
448
449
450
451
# File 'lib/ruby-lint/virtual_machine.rb', line 446

def on_self
  scope  = current_scope
  method = scope.lookup(scope.method_call_type, 'self')

  push_value(method.return_value)
end

#on_send(node) ⇒ Object

Processes a method call. If a certain method call has its own dedicated callback that one will be called as well.

Parameters:



640
641
642
643
644
645
646
647
648
# File 'lib/ruby-lint/virtual_machine.rb', line 640

def on_send(node)
  name     = node.children[1].to_s
  name     = SEND_MAPPING.fetch(name, name)
  callback = "on_send_#{name}"

  value_stack.add_stack

  execute_callback(callback, node)
end

#on_yieldObject

Pushes the return value of the block yielded to, that is, an unknown one.



456
457
458
# File 'lib/ruby-lint/virtual_machine.rb', line 456

def on_yield
  push_unknown_value
end

#pop_scopeObject (private)

Removes a scope from the list.



885
886
887
888
889
# File 'lib/ruby-lint/virtual_machine.rb', line 885

def pop_scope
  raise 'Trying to pop an empty scope' if @scopes.empty?

  @scopes.pop
end

#previous_scopeRubyLint::Definition::RubyObject



768
769
770
# File 'lib/ruby-lint/virtual_machine.rb', line 768

def previous_scope
  return @scopes[-2]
end

#push_scope(definition) ⇒ Object (private)

Pushes a new scope on the list of available scopes.

Parameters:



870
871
872
873
874
875
876
877
878
879
880
# File 'lib/ruby-lint/virtual_machine.rb', line 870

def push_scope(definition)
  unless definition.is_a?(RubyLint::Definition::RubyObject)
    raise(
      ArgumentError,
      "Expected a RubyLint::Definition::RubyObject but got " \
        "#{definition.class} instead"
    )
  end

  @scopes << definition
end

#push_unknown_valueObject (private)

Pushes an unknown value object onto the value stack.



920
921
922
# File 'lib/ruby-lint/virtual_machine.rb', line 920

def push_unknown_value
  push_value(Definition::RubyObject.create_unknown)
end

#push_value(definition) ⇒ Object (private)

Pushes a definition (of a value) onto the value stack.

Parameters:



913
914
915
# File 'lib/ruby-lint/virtual_machine.rb', line 913

def push_value(definition)
  value_stack.push(definition) if definition && !value_stack.empty?
end

#push_variable_value(node) ⇒ Object (private)

Pushes the value of a variable onto the value stack.

Parameters:



896
897
898
899
900
901
902
903
904
905
906
# File 'lib/ruby-lint/virtual_machine.rb', line 896

def push_variable_value(node)
  return if value_stack.empty? || @ignored_nodes.include?(node)

  definition = definition_for_node(node)

  if definition
    value = definition.value ? definition.value : definition

    push_value(value)
  end
end

#reset_assignment_valueObject (private)

Resets the variable used for storing the last assignment value.



1015
1016
1017
# File 'lib/ruby-lint/virtual_machine.rb', line 1015

def reset_assignment_value
  @assignment_value = nil
end

#reset_docstring_tagsObject (private)

Resets the docstring tags collection back to its initial value.



1125
1126
1127
# File 'lib/ruby-lint/virtual_machine.rb', line 1125

def reset_docstring_tags
  @docstring_tags = nil
end

#reset_method_typeObject (private)

Resets the method assignment/call type.



1038
1039
1040
# File 'lib/ruby-lint/virtual_machine.rb', line 1038

def reset_method_type
  @method_type = :instance_method
end

#run(ast) ⇒ Object

Processes the given AST or a collection of AST nodes.

Parameters:

See Also:



189
190
191
192
193
194
195
196
197
198
# File 'lib/ruby-lint/virtual_machine.rb', line 189

def run(ast)
  ast = [ast] unless ast.is_a?(Array)

  # pre-load all the built-in definitions.
  @constant_loader.run(ast)

  ast.each { |node| iterate(node) }

  freeze
end

#track_method_call(definition, name, node) ⇒ Object (private)

Tracks a method call.

Parameters:



1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
# File 'lib/ruby-lint/virtual_machine.rb', line 1211

def track_method_call(definition, name, node)
  method   = definition.lookup(definition.method_call_type, name)
  current  = current_scope
  location = {
    :line   => node.line,
    :column => node.column,
    :file   => node.file
  }

  # Add the call to the current scope if we're dealing with a writable
  # method definition.
  if current.respond_to?(:calls) and !current.frozen?
    current.calls.push(
      MethodCallInfo.new(location.merge(:definition => method))
    )
  end

  # Add the caller to the called method, this allows for inverse lookups.
  unless method.frozen?
    method.callers.push(
      MethodCallInfo.new(location.merge(:definition => definition))
    )
  end
end

#update_parents_from_tag(tag, definition) ⇒ Object (private)

Updates the parents of a definition according to the types of a @param tag.



1136
1137
1138
1139
1140
# File 'lib/ruby-lint/virtual_machine.rb', line 1136

def update_parents_from_tag(tag, definition)
  extra_parents = definitions_for_types(tag.types)

  definition.parents.concat(extra_parents)
end