Sha256: 79d726a1f6fb14d6649dd512322f15d40d95449a2b443d02bba08e0106d43dd8
Contents?: true
Size: 556 Bytes
Versions: 57
Compression:
Stored size: 556 Bytes
Contents
module RBS module AST # RBS allows writing annotations of declarations and members. # # ```rbs # %a{annotation_here} # class Hello # %a{rbs:test:skip} # def foo: () -> void # end # ``` class Annotation attr_reader string: String attr_reader location: Location[untyped, untyped]? def initialize: (string: String, location: Location[untyped, untyped]?) -> void def ==: (untyped other) -> bool alias eql? == def hash: () -> Integer include _ToJson end end end
Version data entries
57 entries across 57 versions & 3 rubygems