aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/gems/rdoc-2.4.3/test/xref_data.rb
blob: 5d7e42bc2f043f4b9ac0aae04da93a2f30f27bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
XREF_DATA = <<-XREF_DATA
class C1

  attr :attr
  attr_reader :attr_reader
  attr_writer :attr_writer
  attr_accessor :attr_accessor

  CONST = :const

  def self.m
  end

  def m
  end
end

class C2
  class C3
    def m
    end

    class H1
      def m?
      end
    end
  end
end

class C3
  class H1
  end

  class H2
  end
end

class C4
  class C4
  end
end

module M1
end
XREF_DATA