yard 0.9.21 → 0.9.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (250) hide show
  1. checksums.yaml +4 -4
  2. data/.dockerignore +0 -0
  3. data/.gitattributes +4 -0
  4. data/.github/FUNDING.yml +3 -0
  5. data/.github/ISSUE_TEMPLATE.md +6 -6
  6. data/.github/PULL_REQUEST_TEMPLATE.md +5 -5
  7. data/.github/workflows/ci.yml +42 -0
  8. data/.github/workflows/gem.yml +27 -0
  9. data/.gitignore +0 -0
  10. data/.rspec +0 -0
  11. data/.rubocop.yml +37 -24
  12. data/.travis.yml +0 -3
  13. data/.yardopts +0 -0
  14. data/.yardopts_guide +0 -0
  15. data/.yardopts_i18n +0 -0
  16. data/CHANGELOG.md +47 -4
  17. data/CONTRIBUTING.md +2 -2
  18. data/Gemfile +4 -3
  19. data/README.md +97 -102
  20. data/Rakefile +2 -0
  21. data/lib/yard/cli/diff.rb +4 -1
  22. data/lib/yard/cli/server.rb +22 -13
  23. data/lib/yard/code_objects/method_object.rb +1 -1
  24. data/lib/yard/code_objects/namespace_mapper.rb +30 -3
  25. data/lib/yard/code_objects/proxy.rb +2 -1
  26. data/lib/yard/globals.rb +1 -1
  27. data/lib/yard/handlers/c/base.rb +35 -0
  28. data/lib/yard/handlers/ruby/mixin_handler.rb +4 -1
  29. data/lib/yard/parser/ruby/legacy/irb/slex.rb +1 -1
  30. data/lib/yard/parser/ruby/ruby_parser.rb +6 -4
  31. data/lib/yard/parser/ruby/token_resolver.rb +3 -1
  32. data/lib/yard/parser/source_parser.rb +1 -1
  33. data/lib/yard/registry_resolver.rb +10 -24
  34. data/lib/yard/registry_store.rb +1 -1
  35. data/lib/yard/serializers/yardoc_serializer.rb +1 -1
  36. data/lib/yard/server/commands/base.rb +2 -2
  37. data/lib/yard/templates/helpers/html_helper.rb +10 -3
  38. data/lib/yard/templates/helpers/html_syntax_highlight_helper.rb +1 -1
  39. data/lib/yard/templates/helpers/markup/rdoc_markup.rb +5 -4
  40. data/lib/yard/templates/section.rb +1 -3
  41. data/lib/yard/version.rb +1 -1
  42. data/samus.json +15 -46
  43. data/tasks/update_error_map.rake +53 -0
  44. data/templates/default/fulldoc/html/css/style.css +1 -0
  45. data/templates/default/fulldoc/html/js/jquery.js +4 -2
  46. data/yard.gemspec +1 -2
  47. metadata +9 -206
  48. data/spec/cli/command_parser_spec.rb +0 -43
  49. data/spec/cli/command_spec.rb +0 -36
  50. data/spec/cli/config_spec.rb +0 -148
  51. data/spec/cli/diff_spec.rb +0 -254
  52. data/spec/cli/display_spec.rb +0 -30
  53. data/spec/cli/gems_spec.rb +0 -81
  54. data/spec/cli/graph_spec.rb +0 -18
  55. data/spec/cli/help_spec.rb +0 -22
  56. data/spec/cli/i18n_spec.rb +0 -107
  57. data/spec/cli/list_spec.rb +0 -8
  58. data/spec/cli/markup_types_spec.rb +0 -22
  59. data/spec/cli/server_spec.rb +0 -324
  60. data/spec/cli/stats_spec.rb +0 -96
  61. data/spec/cli/yard_on_yard_spec.rb +0 -38
  62. data/spec/cli/yardoc_spec.rb +0 -896
  63. data/spec/cli/yri_spec.rb +0 -101
  64. data/spec/code_objects/base_spec.rb +0 -485
  65. data/spec/code_objects/class_object_spec.rb +0 -226
  66. data/spec/code_objects/code_object_list_spec.rb +0 -36
  67. data/spec/code_objects/constants_spec.rb +0 -116
  68. data/spec/code_objects/extra_file_object_spec.rb +0 -161
  69. data/spec/code_objects/macro_object_spec.rb +0 -150
  70. data/spec/code_objects/method_object_spec.rb +0 -184
  71. data/spec/code_objects/module_object_spec.rb +0 -142
  72. data/spec/code_objects/namespace_object_spec.rb +0 -171
  73. data/spec/code_objects/proxy_spec.rb +0 -147
  74. data/spec/code_objects/spec_helper.rb +0 -3
  75. data/spec/config_spec.rb +0 -171
  76. data/spec/core_ext/array_spec.rb +0 -13
  77. data/spec/core_ext/file_spec.rb +0 -72
  78. data/spec/core_ext/hash_spec.rb +0 -14
  79. data/spec/core_ext/insertion_spec.rb +0 -37
  80. data/spec/core_ext/module_spec.rb +0 -9
  81. data/spec/core_ext/string_spec.rb +0 -42
  82. data/spec/core_ext/symbol_hash_spec.rb +0 -89
  83. data/spec/docstring_parser_spec.rb +0 -280
  84. data/spec/docstring_spec.rb +0 -373
  85. data/spec/handlers/alias_handler_spec.rb +0 -82
  86. data/spec/handlers/attribute_handler_spec.rb +0 -96
  87. data/spec/handlers/base_spec.rb +0 -216
  88. data/spec/handlers/c/alias_handler_spec.rb +0 -34
  89. data/spec/handlers/c/attribute_handler_spec.rb +0 -41
  90. data/spec/handlers/c/class_handler_spec.rb +0 -78
  91. data/spec/handlers/c/constant_handler_spec.rb +0 -71
  92. data/spec/handlers/c/init_handler_spec.rb +0 -48
  93. data/spec/handlers/c/method_handler_spec.rb +0 -327
  94. data/spec/handlers/c/mixin_handler_spec.rb +0 -44
  95. data/spec/handlers/c/module_handler_spec.rb +0 -71
  96. data/spec/handlers/c/override_comment_handler_spec.rb +0 -47
  97. data/spec/handlers/c/path_handler_spec.rb +0 -36
  98. data/spec/handlers/c/spec_helper.rb +0 -23
  99. data/spec/handlers/c/struct_handler_spec.rb +0 -16
  100. data/spec/handlers/class_condition_handler_spec.rb +0 -87
  101. data/spec/handlers/class_handler_spec.rb +0 -247
  102. data/spec/handlers/class_method_handler_shared_examples.rb +0 -133
  103. data/spec/handlers/class_variable_handler_spec.rb +0 -12
  104. data/spec/handlers/constant_handler_spec.rb +0 -112
  105. data/spec/handlers/decorator_handler_methods_spec.rb +0 -393
  106. data/spec/handlers/dsl_handler_spec.rb +0 -226
  107. data/spec/handlers/examples/alias_handler_001.rb.txt +0 -46
  108. data/spec/handlers/examples/attribute_handler_001.rb.txt +0 -32
  109. data/spec/handlers/examples/class_condition_handler_001.rb.txt +0 -69
  110. data/spec/handlers/examples/class_handler_001.rb.txt +0 -120
  111. data/spec/handlers/examples/class_variable_handler_001.rb.txt +0 -10
  112. data/spec/handlers/examples/constant_handler_001.rb.txt +0 -35
  113. data/spec/handlers/examples/dsl_handler_001.rb.txt +0 -156
  114. data/spec/handlers/examples/exception_handler_001.rb.txt +0 -59
  115. data/spec/handlers/examples/extend_handler_001.rb.txt +0 -19
  116. data/spec/handlers/examples/method_condition_handler_001.rb.txt +0 -10
  117. data/spec/handlers/examples/method_handler_001.rb.txt +0 -128
  118. data/spec/handlers/examples/mixin_handler_001.rb.txt +0 -40
  119. data/spec/handlers/examples/module_handler_001.rb.txt +0 -29
  120. data/spec/handlers/examples/private_constant_handler_001.rb.txt +0 -8
  121. data/spec/handlers/examples/process_handler_001.rb.txt +0 -11
  122. data/spec/handlers/examples/visibility_handler_001.rb.txt +0 -36
  123. data/spec/handlers/examples/yield_handler_001.rb.txt +0 -54
  124. data/spec/handlers/exception_handler_spec.rb +0 -49
  125. data/spec/handlers/extend_handler_spec.rb +0 -28
  126. data/spec/handlers/legacy_base_spec.rb +0 -128
  127. data/spec/handlers/method_condition_handler_spec.rb +0 -15
  128. data/spec/handlers/method_handler_spec.rb +0 -214
  129. data/spec/handlers/mixin_handler_spec.rb +0 -60
  130. data/spec/handlers/module_function_handler_spec.rb +0 -106
  131. data/spec/handlers/module_handler_spec.rb +0 -35
  132. data/spec/handlers/private_class_method_handler_spec.rb +0 -11
  133. data/spec/handlers/private_constant_handler_spec.rb +0 -25
  134. data/spec/handlers/processor_spec.rb +0 -35
  135. data/spec/handlers/public_class_method_handler_spec.rb +0 -11
  136. data/spec/handlers/ruby/base_spec.rb +0 -95
  137. data/spec/handlers/ruby/legacy/base_spec.rb +0 -84
  138. data/spec/handlers/spec_helper.rb +0 -33
  139. data/spec/handlers/visibility_handler_spec.rb +0 -44
  140. data/spec/handlers/yield_handler_spec.rb +0 -52
  141. data/spec/i18n/locale_spec.rb +0 -81
  142. data/spec/i18n/message_spec.rb +0 -52
  143. data/spec/i18n/messages_spec.rb +0 -67
  144. data/spec/i18n/pot_generator_spec.rb +0 -295
  145. data/spec/i18n/text_spec.rb +0 -184
  146. data/spec/logging_spec.rb +0 -44
  147. data/spec/options_spec.rb +0 -171
  148. data/spec/parser/base_spec.rb +0 -24
  149. data/spec/parser/c_parser_spec.rb +0 -236
  150. data/spec/parser/examples/array.c.txt +0 -6267
  151. data/spec/parser/examples/example1.rb.txt +0 -8
  152. data/spec/parser/examples/extrafile.c.txt +0 -8
  153. data/spec/parser/examples/file.c.txt +0 -28
  154. data/spec/parser/examples/multifile.c.txt +0 -22
  155. data/spec/parser/examples/namespace.cpp.txt +0 -68
  156. data/spec/parser/examples/override.c.txt +0 -424
  157. data/spec/parser/examples/parse_in_order_001.rb.txt +0 -2
  158. data/spec/parser/examples/parse_in_order_002.rb.txt +0 -2
  159. data/spec/parser/examples/tag_handler_001.rb.txt +0 -8
  160. data/spec/parser/ruby/ast_node_spec.rb +0 -33
  161. data/spec/parser/ruby/legacy/statement_list_spec.rb +0 -299
  162. data/spec/parser/ruby/legacy/token_list_spec.rb +0 -79
  163. data/spec/parser/ruby/ruby_parser_spec.rb +0 -508
  164. data/spec/parser/ruby/token_resolver_spec.rb +0 -165
  165. data/spec/parser/source_parser_spec.rb +0 -727
  166. data/spec/parser/tag_parsing_spec.rb +0 -17
  167. data/spec/rake/yardoc_task_spec.rb +0 -118
  168. data/spec/registry_spec.rb +0 -463
  169. data/spec/registry_store_spec.rb +0 -327
  170. data/spec/rubygems/doc_manager_spec.rb +0 -112
  171. data/spec/serializers/data/serialized_yardoc/checksums +0 -1
  172. data/spec/serializers/data/serialized_yardoc/objects/Foo.dat +0 -0
  173. data/spec/serializers/data/serialized_yardoc/objects/Foo/bar_i.dat +0 -0
  174. data/spec/serializers/data/serialized_yardoc/objects/Foo/baz_i.dat +0 -0
  175. data/spec/serializers/data/serialized_yardoc/objects/root.dat +0 -0
  176. data/spec/serializers/data/serialized_yardoc/proxy_types +0 -2
  177. data/spec/serializers/file_system_serializer_spec.rb +0 -145
  178. data/spec/serializers/spec_helper.rb +0 -2
  179. data/spec/serializers/yardoc_serializer_spec.rb +0 -78
  180. data/spec/server/adapter_spec.rb +0 -39
  181. data/spec/server/commands/base_spec.rb +0 -91
  182. data/spec/server/commands/library_command_spec.rb +0 -39
  183. data/spec/server/doc_server_helper_spec.rb +0 -72
  184. data/spec/server/doc_server_serializer_spec.rb +0 -60
  185. data/spec/server/rack_adapter_spec.rb +0 -21
  186. data/spec/server/router_spec.rb +0 -123
  187. data/spec/server/spec_helper.rb +0 -22
  188. data/spec/server/static_caching_spec.rb +0 -47
  189. data/spec/server/webrick_servlet_spec.rb +0 -20
  190. data/spec/server_spec.rb +0 -19
  191. data/spec/spec_helper.rb +0 -212
  192. data/spec/tags/default_factory_spec.rb +0 -168
  193. data/spec/tags/default_tag_spec.rb +0 -11
  194. data/spec/tags/directives_spec.rb +0 -463
  195. data/spec/tags/library_spec.rb +0 -48
  196. data/spec/tags/overload_tag_spec.rb +0 -53
  197. data/spec/tags/ref_tag_list_spec.rb +0 -53
  198. data/spec/tags/types_explainer_spec.rb +0 -203
  199. data/spec/templates/class_spec.rb +0 -45
  200. data/spec/templates/constant_spec.rb +0 -41
  201. data/spec/templates/engine_spec.rb +0 -131
  202. data/spec/templates/examples/class001.html +0 -308
  203. data/spec/templates/examples/class001.txt +0 -36
  204. data/spec/templates/examples/class002.html +0 -39
  205. data/spec/templates/examples/constant001.txt +0 -25
  206. data/spec/templates/examples/constant002.txt +0 -7
  207. data/spec/templates/examples/constant003.txt +0 -11
  208. data/spec/templates/examples/method001.html +0 -137
  209. data/spec/templates/examples/method001.txt +0 -35
  210. data/spec/templates/examples/method002.html +0 -91
  211. data/spec/templates/examples/method002.txt +0 -20
  212. data/spec/templates/examples/method003.html +0 -165
  213. data/spec/templates/examples/method003.txt +0 -45
  214. data/spec/templates/examples/method004.html +0 -48
  215. data/spec/templates/examples/method004.txt +0 -10
  216. data/spec/templates/examples/method005.html +0 -105
  217. data/spec/templates/examples/method005.txt +0 -33
  218. data/spec/templates/examples/method006.html +0 -108
  219. data/spec/templates/examples/method006.txt +0 -20
  220. data/spec/templates/examples/module001.dot +0 -33
  221. data/spec/templates/examples/module001.html +0 -833
  222. data/spec/templates/examples/module001.txt +0 -33
  223. data/spec/templates/examples/module002.html +0 -341
  224. data/spec/templates/examples/module003.html +0 -202
  225. data/spec/templates/examples/module004.html +0 -394
  226. data/spec/templates/examples/module005.html +0 -82
  227. data/spec/templates/examples/tag001.txt +0 -82
  228. data/spec/templates/helpers/base_helper_spec.rb +0 -171
  229. data/spec/templates/helpers/html_helper_spec.rb +0 -687
  230. data/spec/templates/helpers/html_syntax_highlight_helper_spec.rb +0 -65
  231. data/spec/templates/helpers/markup/rdoc_markup_spec.rb +0 -84
  232. data/spec/templates/helpers/markup_helper_spec.rb +0 -136
  233. data/spec/templates/helpers/method_helper_spec.rb +0 -107
  234. data/spec/templates/helpers/module_helper_spec.rb +0 -35
  235. data/spec/templates/helpers/shared_signature_examples.rb +0 -126
  236. data/spec/templates/helpers/text_helper_spec.rb +0 -65
  237. data/spec/templates/markup_processor_integrations/asciidoctor_spec.rb +0 -60
  238. data/spec/templates/markup_processor_integrations/integration_spec_helper.rb +0 -46
  239. data/spec/templates/markup_processor_integrations/rdoc_markdown_spec.rb +0 -59
  240. data/spec/templates/markup_processor_integrations/rdoc_spec.rb +0 -39
  241. data/spec/templates/markup_processor_integrations/redcarpet_spec.rb +0 -59
  242. data/spec/templates/markup_processor_integrations/redcloth_spec.rb +0 -48
  243. data/spec/templates/method_spec.rb +0 -118
  244. data/spec/templates/module_spec.rb +0 -203
  245. data/spec/templates/onefile_spec.rb +0 -66
  246. data/spec/templates/section_spec.rb +0 -144
  247. data/spec/templates/spec_helper.rb +0 -76
  248. data/spec/templates/tag_spec.rb +0 -52
  249. data/spec/templates/template_spec.rb +0 -410
  250. data/spec/verifier_spec.rb +0 -106
@@ -1,10 +0,0 @@
1
- module A
2
- class B
3
- @@somevar = "hello"
4
- @@somevar.value = "H"
5
-
6
- def method
7
- @@somevar = "don't document this"
8
- end
9
- end
10
- end
@@ -1,35 +0,0 @@
1
- module A
2
- class B
3
- notaconstant = 2
4
- SOMECONSTANT= "hello"
5
-
6
- def method
7
- SOMECONSTANT = "don't document this"
8
- end
9
-
10
- MYCONSTANT = A +
11
- B +
12
- C +
13
- D
14
- end
15
- end
16
-
17
- MyClass = Struct.new(:a, :b, :c)
18
- NotMyClass = Struct.new("NotMyClass2", :b, :c)
19
- MyEmptyStruct = Struct.new
20
-
21
- MyStructWithConstant = Struct.new do
22
- # A constant.
23
- CONSTANT = 42
24
- # Special constant (empty symbol)
25
- EMPTY = :''
26
- end
27
-
28
- # A crazy struct.
29
- #
30
- # @attr [String] bar An attr
31
- # @attr [Number] baz Another attr
32
- # @!attribute new_syntax
33
- # Attribute defined with the new syntax
34
- # @return [Symbol] something useful
35
- DocstringStruct = Struct.new(:bar, :baz, :new_syntax)
@@ -1,156 +0,0 @@
1
- class Foo
2
- attr_accessor :ignoreme
3
-
4
- # IMPLICIT METHOD!
5
- # @return [String]
6
- just_a_method_for :implicit0
7
-
8
- # IMPLICIT METHOD2!
9
- # @!scope class
10
- just_a_method_for :implicit1
11
-
12
- # IMPLICIT METHOD3!
13
- # @!visibility protected
14
- just_a_method_for :implicit2
15
-
16
- # Not recognized
17
- just_a_method_for :implicit_invalid
18
-
19
- #
20
- ## IS NOT RECOGNIZED!
21
- just_a_method_for :implicit_invalid2
22
-
23
- # @deprecated don't use this
24
- just_a_method_for :implicit_invalid3
25
-
26
- ##
27
- # IS RECOGNIZED!
28
- just_a_method_for 'implicit_valid'
29
-
30
- # @!attribute [r]
31
- # @return [Numeric] a number
32
- a_readable_attribute :attr1
33
-
34
- # @!attribute [w]
35
- a_writable_attribute :attr2, 'bar'
36
-
37
- # @!attribute
38
- default_attribute :attr3
39
-
40
- # @!attribute custom
41
- default_attribute :attr4
42
-
43
- # @!method xyz(a, b, c)
44
- # The foo method
45
- # @param [String] a
46
- # @!visibility protected
47
- # @!scope class
48
- foo_bar
49
-
50
- # @!macro property
51
- # @!method $1(${3-})
52
- # A $0 that is awesome.
53
- # @param $3 first parameter
54
- # @return [$2] the property $1
55
- property :name, String, :a, :b, :c
56
-
57
- # @!macro property
58
- property :age, Fixnum, :value
59
-
60
- # This is just for x
61
- # @!macro [attach] parser
62
- # @!method $1(opts = {})
63
- # @return NOTHING!
64
- parser :x
65
-
66
- parser :c_parser
67
-
68
- # Another docstring
69
- parser :d_parser
70
-
71
- # @!macro [attach] none
72
- # @!method none(foo, bar)
73
- none
74
-
75
- # @!macro something
76
- # @!method $1(a, b, c)
77
- something :qux
78
-
79
- # @!method qux2(a, b, c)
80
- something
81
-
82
- # @!method no_src
83
-
84
- # @!macro
85
- # $1 $2 $3
86
- def regular_meth(a, b, c) end
87
-
88
- # @!macro [new] different
89
- # @!method $2_name(a = 1)
90
-
91
- # @!macro different
92
- implicit_with_different_method_name :wrong, :right
93
-
94
- # @!scope module
95
- a_module_function :modfunc1
96
- end
97
-
98
- module MyMixin
99
- # @!macro [attach] special
100
- # DSL method $1
101
- def defined_by_mixin; end
102
- end
103
-
104
- class Bar
105
- parser :x_parser
106
- end
107
-
108
- class Baz < Foo
109
- extend MyMixin
110
- parser :y_parser
111
- none { }
112
- defined_by_mixin :mixin_method
113
- end
114
-
115
- # @!method my_other_method
116
- # Docstring for method
117
- method_that_makes_a_method
118
-
119
- # @!macro something
120
- foobarbaz :beep
121
-
122
- module DSLMethods
123
- # @macro [attach] dsl_method
124
- # Returns $2 for $1
125
- dsl_method :foo, String
126
- dsl_method :bar, Integer
127
- end
128
-
129
- class AliasTest
130
- class << self
131
- # @!macro alias_main
132
- # @!method main_$1
133
- # Success main_$1
134
- def main; end
135
-
136
- # TODO: currently unsupported behavior
137
- # @!macro alias_alt
138
- # @!method alias_$1
139
- # Success alias_$1
140
- alias alt main
141
-
142
- alias alt2 main
143
- end
144
-
145
- alt :foo1
146
- alt2 :foo2
147
- end
148
-
149
- class DirectiveMethods
150
- # @!macro with_directive
151
- # @!parse
152
- # include $1
153
- def self.attach(x) end
154
-
155
- attach Bar
156
- end
@@ -1,59 +0,0 @@
1
- class Testing
2
- # Ignore yields outside methods
3
- raise NoMethodError, "reason"
4
-
5
- # Should document this
6
- def mymethod
7
- raise ArgumentError, "Argument is missing"
8
- end
9
-
10
- # Don't document this
11
- def mymethod2
12
- raise(a)
13
- end
14
-
15
- # Don't document this (docstring takes precedence)
16
- # @raise [A]
17
- def mymethod3
18
- raise SomethingElse
19
- end
20
-
21
- # Only document the first one (limitation of exc handler)
22
- def mymethod4
23
- raise(A)
24
- raise B, "Argument", somethingelse
25
- end
26
-
27
- def mymethod5
28
- raise YARD::Parser::UndocumentableError
29
- end
30
-
31
- def mymethod6
32
- raise YARD::Handlers.constants("test")
33
- end
34
-
35
- def mymethod7
36
- raise MethodCall('argument')
37
- end
38
-
39
- def mymethod8
40
- raise ExceptionClass.new('blah')
41
- end
42
-
43
- def mymethod9
44
- obj.raise IgnoreMe
45
- obj.raise(IgnoreMe)
46
- end
47
-
48
- def mymethod10
49
- raise ArgumentError 'Message' # actually a method call
50
- end
51
-
52
- def mymethod11
53
- raise foo('bar')
54
- end
55
-
56
- def mymethod12
57
- raise
58
- end
59
- end
@@ -1,19 +0,0 @@
1
- module A; end
2
- module B
3
- extend A
4
- end
5
-
6
- module C
7
- extend self
8
- end
9
-
10
- module Q
11
- module R
12
- module S
13
- extend A
14
- end
15
- end
16
- end
17
-
18
- module FromConstant; end
19
- FromConstant.extend A
@@ -1,10 +0,0 @@
1
- def a
2
- if 1
3
- # ignore this
4
- def b; end
5
- end
6
-
7
- # don't ignore these even though we know they're not executed
8
- def c; end if false
9
- def d; end unless true
10
- end
@@ -1,128 +0,0 @@
1
- class Foo
2
- class << self
3
- def inherited; end
4
- def included; end
5
- # docstring
6
- def extended; end
7
- def method_added; end
8
- def method_removed; end
9
- def method_undefined; end
10
- end
11
-
12
- # A docstring but no return type
13
- def initialize; end
14
-
15
- def ==(other)
16
- 'hello'
17
- end
18
- def /(other) 'hi' end
19
-
20
- attr_reader :method1
21
-
22
- def method1
23
- def dynamic; end
24
- end
25
-
26
- def self.method2; end
27
-
28
- # Docstring
29
- def String :: hello; "" end
30
-
31
- def self.new() end
32
-
33
- def [](key = 'default') puts key end
34
- def []=(key, value) end
35
- def
36
- allowed?
37
- end
38
-
39
- def ` param; end
40
- def /(x = File.new('x', 'w'), y = 2) end
41
- def |; end; def =~ ()
42
- def -@; end;
43
- def d_splat(reg, **opts); end
44
- def d_unnamed_splat(**); end
45
- end
46
- def *(o) def +@; end
47
- def ~@
48
- end end
49
- def &(o) end
50
- def %(o) end
51
- def ^(o) end
52
-
53
- def optsmeth(x, opts = {}) end
54
- def blockmeth(x, &block) end
55
-
56
- # @param a [Fixnum]
57
- # @overload def bar(a, b = 1)
58
- # @param a [String]
59
- # @return [String]
60
- # @overload def baz(b, c)
61
- # @return [Fixnum]
62
- # @overload bang(d, e)
63
- def foo(*args); end
64
-
65
- # No return tag
66
- def boolean?; end
67
-
68
- # @return without type
69
- def boolean2?; end
70
-
71
- # @return [NotBoolean, nil]
72
- def boolean3?; end
73
-
74
- # @overload rainy?
75
- # @return whether today is the rainy day.
76
- def rainy?; end
77
-
78
- attr_writer :attr_name
79
- def attr_name; end
80
-
81
- attr_reader :attr_name2
82
- def attr_name2=; end
83
-
84
- # @option opts :bar [String] It's bar!
85
- def auto_opts(opts)
86
- end
87
- end
88
-
89
- CONST = Foo
90
- def CONST.meth_on_const; end
91
- CONST2 = CONST
92
- def CONST2.meth2_on_const; end
93
-
94
- class D
95
- alias b a
96
-
97
- # foo bar
98
- def a; end
99
- end
100
-
101
- class E
102
- # @!macro prop
103
- # @!method $1(value)
104
- # $3
105
- # @return [$2]
106
- def self.property(name, ret_type, docstring)
107
- end
108
-
109
- property :foo, String, "create a foo"
110
-
111
- # @!macro xyz
112
- # @!method $1
113
- def xyz; end
114
-
115
- xyz :a
116
- end
117
-
118
- module F
119
- class A
120
- def foo; end
121
-
122
- def end
123
- end
124
-
125
- # PASS
126
- def bar; end
127
- end
128
- end
@@ -1,40 +0,0 @@
1
- module A; end
2
- module B;
3
- module C; end
4
- module D; end
5
- end
6
-
7
- QQQ = B::D
8
-
9
- class X
10
- include A
11
- include B, B::C, NOTEXIST
12
- end
13
-
14
- module Y
15
- include B::C, B if X == 2
16
- include A
17
- include QQQ
18
-
19
- class << self; include A; end
20
- end
21
-
22
- module Z
23
- include A, B
24
- end
25
-
26
- module ABC
27
- module FOO; end
28
- module DEF
29
- module FOO
30
- include ABC::FOO
31
- end
32
-
33
- module BAR
34
- include ABC::BAR
35
- end
36
- end
37
- end
38
-
39
- module FromConstant; end
40
- FromConstant.include A