We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45c5a1c commit 25fc896Copy full SHA for 25fc896
sig/ruby_header_parser/function_definition.rbs
@@ -0,0 +1,12 @@
1
+module RubyHeaderParser
2
+ class FunctionDefinition
3
+ attr_accessor name: String
4
+ attr_accessor definition: String
5
+ attr_accessor typeref: TyperefDefinition
6
+ attr_accessor args: Array[ArgumentDefinition]
7
+
8
+ def initialize: (name: String, definition: String, typeref: TyperefDefinition, args: Array[ArgumentDefinition]) -> void
9
10
+ def ==: (untyped other) -> bool
11
+ end
12
+end
0 commit comments