xref_data.rb 610 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. XREF_DATA = <<-XREF_DATA
  2. class C1
  3. attr :attr
  4. # :section: separate
  5. attr_reader :attr_reader
  6. attr_writer :attr_writer
  7. # :section:
  8. attr_accessor :attr_accessor
  9. CONST = :const
  10. def self.m
  11. end
  12. def m foo
  13. end
  14. end
  15. class C2
  16. def b
  17. end
  18. alias a b
  19. class C3
  20. def m
  21. end
  22. class H1
  23. def m?
  24. end
  25. end
  26. end
  27. end
  28. class C3
  29. class H1
  30. end
  31. class H2 < H1
  32. end
  33. end
  34. class C4
  35. class C4
  36. end
  37. end
  38. class C5
  39. class C1
  40. end
  41. end
  42. module M1
  43. def m
  44. end
  45. end
  46. module M1::M2
  47. end
  48. class Parent
  49. def m() end
  50. def self.m() end
  51. end
  52. class Child < Parent
  53. end
  54. XREF_DATA