spec/handlers/examples/class_handler_001.rb.txt in yard-0.2.2 vs spec/handlers/examples/class_handler_001.rb.txt in yard-0.2.3
- old
+ new
@@ -18,10 +18,12 @@
module B
class A < A
end
end
+class RT < XX::RT; end
+
class Test1 < R "something"
end
class Test2 < R(/something/)
end
@@ -34,6 +36,37 @@
class Test5 < DelegateClass(Array)
end
class Test6 < NotDelegateClass(Array)
+end
+
+class ::MyRootClass
+end
+
+module Holder
+ module SomeMod
+ class Importer
+ def parse; end
+ end
+ end
+end
+
+module Holder
+ class Importer < Holder::SomeMod::Importer
+ def a; end
+ end
+end
+
+class String; end
+CONST = String
+class << CONST
+ def classmethod; end
+end
+
+module Q
+ class Logger < ::Logger; end
+end
+
+class << Symbol
+ alias toString to_s
end
\ No newline at end of file