sig/diff.rbs in rbs-3.3.2 vs sig/diff.rbs in rbs-3.4.0.pre.1
- old
+ new
@@ -2,15 +2,17 @@
class Diff
@type_name: TypeName
@library_options: RBS::CLI::LibraryOptions
@after_path: Array[String]
@before_path: Array[String]
+ @detail: boolish
def initialize: (
type_name: TypeName,
library_options: RBS::CLI::LibraryOptions,
?after_path: Array[String],
- ?before_path: Array[String]
+ ?before_path: Array[String],
+ ?detail: boolish
) -> void
def each_diff: () { (String before, String after) -> void } -> void
private def each_diff_by: (Symbol kind, Hash[::Symbol, Definition::Method] before_methods, Hash[::Symbol, Definition::Method] after_methods) { (String before, String after) -> void } -> void