-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathconfig.yml
More file actions
889 lines (887 loc) · 24.7 KB
/
config.yml
File metadata and controls
889 lines (887 loc) · 24.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
# See `docs/config.md` for quick documentation of this file format.
nodes:
- name: RBS::AST::Annotation
rust_name: AnnotationNode
fields:
- name: string
c_type: rbs_string
- name: RBS::AST::Bool
rust_name: BoolNode
expose_to_ruby: false
expose_location: false
fields:
- name: value
c_type: bool
- name: RBS::AST::Comment
rust_name: CommentNode
fields:
- name: string
c_type: rbs_string
- name: RBS::AST::Declarations::Class
rust_name: ClassNode
fields:
- name: name
c_type: rbs_type_name
- name: type_params
c_type: rbs_node_list
- name: super_class
c_type: rbs_ast_declarations_class_super
optional: true # NULL when no superclass (e.g., `class Foo end` vs `class Foo < Bar end`)
- name: members
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: keyword
- required: name
- required: end
- optional: type_params
- optional: lt
- name: RBS::AST::Declarations::Class::Super
rust_name: ClassSuperNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
locations:
- required: name
- optional: args
- name: RBS::AST::Declarations::ClassAlias
rust_name: ClassAliasNode
fields:
- name: new_name
c_type: rbs_type_name
- name: old_name
c_type: rbs_type_name
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: annotations
c_type: rbs_node_list
locations:
- required: keyword
- required: new_name
- required: eq
- required: old_name
- name: RBS::AST::Declarations::Constant
rust_name: ConstantNode
fields:
- name: name
c_type: rbs_type_name
- name: type
c_type: rbs_node
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: annotations
c_type: rbs_node_list
locations:
- required: name
- required: colon
- name: RBS::AST::Declarations::Global
rust_name: GlobalNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: annotations
c_type: rbs_node_list
locations:
- required: name
- required: colon
- name: RBS::AST::Declarations::Interface
rust_name: InterfaceNode
fields:
- name: name
c_type: rbs_type_name
- name: type_params
c_type: rbs_node_list
- name: members
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: keyword
- required: name
- required: end
- optional: type_params
- name: RBS::AST::Declarations::Module
rust_name: ModuleNode
fields:
- name: name
c_type: rbs_type_name
- name: type_params
c_type: rbs_node_list
- name: self_types
c_type: rbs_node_list
- name: members
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: keyword
- required: name
- required: end
- optional: type_params
- optional: colon
- optional: self_types
- name: RBS::AST::Declarations::Module::Self
rust_name: ModuleSelfNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
locations:
- required: name
- optional: args
- name: RBS::AST::Declarations::ModuleAlias
rust_name: ModuleAliasNode
fields:
- name: new_name
c_type: rbs_type_name
- name: old_name
c_type: rbs_type_name
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: annotations
c_type: rbs_node_list
locations:
- required: keyword
- required: new_name
- required: eq
- required: old_name
- name: RBS::AST::Declarations::TypeAlias
rust_name: TypeAliasNode
fields:
- name: name
c_type: rbs_type_name
- name: type_params
c_type: rbs_node_list
- name: type
c_type: rbs_node
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: keyword
- required: name
- required: eq
- optional: type_params
- name: RBS::AST::Directives::Use
rust_name: UseNode
fields:
- name: clauses
c_type: rbs_node_list
locations:
- required: keyword
- name: RBS::AST::Directives::Use::SingleClause
rust_name: UseSingleClauseNode
fields:
- name: type_name
c_type: rbs_type_name
- name: new_name
c_type: rbs_ast_symbol
optional: true # NULL when no alias (e.g., `use Foo::Bar` vs `use Foo::Bar as Baz`)
locations:
- required: type_name
- optional: keyword
- optional: new_name
- name: RBS::AST::Directives::Use::WildcardClause
rust_name: UseWildcardClauseNode
fields:
- name: namespace
c_type: rbs_namespace
c_name: rbs_namespace
locations:
- required: namespace
- required: star
- name: RBS::AST::Members::Alias
rust_name: AliasNode
fields:
- name: new_name
c_type: rbs_ast_symbol
- name: old_name
c_type: rbs_ast_symbol
- name: kind
c_type: alias_kind
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: keyword
- required: new_name
- required: old_name
- optional: new_kind
- optional: old_kind
- name: RBS::AST::Members::AttrAccessor
rust_name: AttrAccessorNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: ivar_name
c_type: rbs_attr_ivar_name
- name: kind
c_type: attribute_kind
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: visibility
c_type: attribute_visibility
locations:
- required: keyword
- required: name
- required: colon
- optional: kind
- optional: ivar
- optional: ivar_name
- optional: visibility
- name: RBS::AST::Members::AttrReader
rust_name: AttrReaderNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: ivar_name
c_type: rbs_attr_ivar_name
- name: kind
c_type: attribute_kind
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: visibility
c_type: attribute_visibility
locations:
- required: keyword
- required: name
- required: colon
- optional: kind
- optional: ivar
- optional: ivar_name
- optional: visibility
- name: RBS::AST::Members::AttrWriter
rust_name: AttrWriterNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: ivar_name
c_type: rbs_attr_ivar_name
- name: kind
c_type: attribute_kind
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: visibility
c_type: attribute_visibility
locations:
- required: keyword
- required: name
- required: colon
- optional: kind
- optional: ivar
- optional: ivar_name
- optional: visibility
- name: RBS::AST::Members::ClassInstanceVariable
rust_name: ClassInstanceVariableNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: name
- required: colon
- optional: kind
- name: RBS::AST::Members::ClassVariable
rust_name: ClassVariableNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: name
- required: colon
- optional: kind
- name: RBS::AST::Members::Extend
rust_name: ExtendNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: name
- required: keyword
- optional: args
- name: RBS::AST::Members::Include
rust_name: IncludeNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: name
- required: keyword
- optional: args
- name: RBS::AST::Members::InstanceVariable
rust_name: InstanceVariableNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: type
c_type: rbs_node
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: name
- required: colon
- optional: kind
- name: RBS::AST::Members::MethodDefinition
rust_name: MethodDefinitionNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: kind
c_type: method_definition_kind
- name: overloads
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
- name: overloading
c_type: bool
- name: visibility
c_type: method_definition_visibility
locations:
- required: keyword
- required: name
- optional: kind
- optional: overloading
- optional: visibility
- name: RBS::AST::Members::MethodDefinition::Overload
rust_name: MethodDefinitionOverloadNode
expose_location: false
fields:
- name: annotations
c_type: rbs_node_list
- name: method_type
c_type: rbs_node
- name: RBS::AST::Members::Prepend
rust_name: PrependNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
- name: annotations
c_type: rbs_node_list
- name: comment
c_type: rbs_ast_comment
optional: true # NULL when no comment precedes the declaration
locations:
- required: name
- required: keyword
- optional: args
- name: RBS::AST::Members::Private
rust_name: PrivateNode
- name: RBS::AST::Members::Public
rust_name: PublicNode
- name: RBS::AST::TypeParam
rust_name: TypeParamNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: variance
c_type: type_param_variance
- name: upper_bound
c_type: rbs_node
optional: true # NULL when no upper bound (e.g., `[T]` vs `[T < Bound]`)
- name: lower_bound
c_type: rbs_node
optional: true # NULL when no lower bound (e.g., `[T]` vs `[T > Bound]`)
- name: default_type
c_type: rbs_node
optional: true # NULL when no default (e.g., `[T]` vs `[T = Default]`)
- name: unchecked
c_type: bool
locations:
- required: name
- optional: variance
- optional: unchecked
- optional: upper_bound
- optional: lower_bound
- optional: default
- name: RBS::AST::Integer
rust_name: IntegerNode
expose_to_ruby: false
expose_location: false
fields:
- name: string_representation
c_type: rbs_string
- name: RBS::AST::String
rust_name: StringNode
expose_to_ruby: false
expose_location: false
fields:
- name: string
c_type: rbs_string
- name: RBS::MethodType
rust_name: MethodTypeNode
fields:
- name: type_params
c_type: rbs_node_list
- name: type
c_type: rbs_node
- name: block
c_type: rbs_types_block
optional: true # NULL when no block (e.g., `() -> void` vs `() { () -> void } -> void`)
locations:
- required: type
- optional: type_params
- name: RBS::Namespace
rust_name: NamespaceNode
expose_location: false
fields:
- name: path
c_type: rbs_node_list
- name: absolute
c_type: bool
- name: RBS::Signature
rust_name: SignatureNode
expose_to_ruby: false
expose_location: false
fields:
- name: directives
c_type: rbs_node_list
- name: declarations
c_type: rbs_node_list
- name: RBS::TypeName
rust_name: TypeNameNode
expose_location: false
fields:
- name: namespace
c_type: rbs_namespace
c_name: rbs_namespace
- name: name
c_type: rbs_ast_symbol
- name: RBS::Types::Alias
rust_name: AliasTypeNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
locations:
- required: name
- optional: args
- name: RBS::Types::Bases::Any
rust_name: AnyTypeNode
fields:
- name: todo
c_type: bool
- name: RBS::Types::Bases::Bool
rust_name: BoolTypeNode
- name: RBS::Types::Bases::Bottom
rust_name: BottomTypeNode
- name: RBS::Types::Bases::Class
rust_name: ClassTypeNode
- name: RBS::Types::Bases::Instance
rust_name: InstanceTypeNode
- name: RBS::Types::Bases::Nil
rust_name: NilTypeNode
- name: RBS::Types::Bases::Self
rust_name: SelfTypeNode
- name: RBS::Types::Bases::Top
rust_name: TopTypeNode
- name: RBS::Types::Bases::Void
rust_name: VoidTypeNode
- name: RBS::Types::Block
rust_name: BlockTypeNode
expose_location: true
fields:
- name: type
c_type: rbs_node
- name: required
c_type: bool
- name: self_type
c_type: rbs_node
optional: true # NULL when no self binding (e.g., `{ () -> void }` vs `{ () [self: T] -> void }`)
- name: RBS::Types::ClassInstance
rust_name: ClassInstanceTypeNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
locations:
- required: name
- optional: args
- name: RBS::Types::ClassSingleton
rust_name: ClassSingletonTypeNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
locations:
- required: name
- optional: args
- name: RBS::Types::Function
rust_name: FunctionTypeNode
expose_location: false
fields:
- name: required_positionals
c_type: rbs_node_list
- name: optional_positionals
c_type: rbs_node_list
- name: rest_positionals
c_type: rbs_node
optional: true # NULL when no splat (e.g., `(String) -> void` vs `(*String) -> void`)
- name: trailing_positionals
c_type: rbs_node_list
- name: required_keywords
c_type: rbs_hash
- name: optional_keywords
c_type: rbs_hash
- name: rest_keywords
c_type: rbs_node
optional: true # NULL when no double-splat (e.g., `() -> void` vs `(**String) -> void`)
- name: return_type
c_type: rbs_node
- name: RBS::Types::Function::Param
rust_name: FunctionParamNode
fields:
- name: type
c_type: rbs_node
- name: name
c_type: rbs_ast_symbol
optional: true # NULL when param is unnamed (e.g., `(String) -> void` vs `(String name) -> void`)
locations:
- optional: name
- name: RBS::Types::Interface
rust_name: InterfaceTypeNode
fields:
- name: name
c_type: rbs_type_name
- name: args
c_type: rbs_node_list
locations:
- required: name
- optional: args
- name: RBS::Types::Intersection
rust_name: IntersectionTypeNode
fields:
- name: types
c_type: rbs_node_list
- name: RBS::Types::Literal
rust_name: LiteralTypeNode
fields:
- name: literal
c_type: rbs_node
- name: RBS::Types::Optional
rust_name: OptionalTypeNode
fields:
- name: type
c_type: rbs_node
- name: RBS::Types::Proc
rust_name: ProcTypeNode
fields:
- name: type
c_type: rbs_node
- name: block
c_type: rbs_types_block
optional: true # NULL when proc has no block (e.g., `^() -> void` vs `^() { () -> void } -> void`)
- name: self_type
c_type: rbs_node
optional: true # NULL when no self binding (e.g., `^() -> void` vs `^() [self: T] -> void`)
- name: RBS::Types::Record
rust_name: RecordTypeNode
fields:
- name: all_fields
c_type: rbs_hash
- name: RBS::Types::Record::FieldType
rust_name: RecordFieldTypeNode
expose_to_ruby: false
expose_location: false
fields:
- name: type
c_type: rbs_node
- name: required
c_type: bool
- name: RBS::Types::Tuple
rust_name: TupleTypeNode
fields:
- name: types
c_type: rbs_node_list
- name: RBS::Types::Union
rust_name: UnionTypeNode
fields:
- name: types
c_type: rbs_node_list
- name: RBS::Types::UntypedFunction
rust_name: UntypedFunctionTypeNode
expose_location: false
fields:
- name: return_type
c_type: rbs_node
- name: RBS::Types::Variable
rust_name: VariableTypeNode
fields:
- name: name
c_type: rbs_ast_symbol
- name: RBS::AST::Ruby::Annotations::NodeTypeAssertion
rust_name: NodeTypeAssertionNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: type
c_type: rbs_node
- name: RBS::AST::Ruby::Annotations::ColonMethodTypeAnnotation
rust_name: ColonMethodTypeAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: annotations
c_type: rbs_node_list
- name: method_type
c_type: rbs_node
- name: RBS::AST::Ruby::Annotations::MethodTypesAnnotation
rust_name: MethodTypesAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: overloads
c_type: rbs_node_list
- name: vertical_bar_locations
c_type: rbs_location_range_list
- name: dot3_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::SkipAnnotation
rust_name: SkipAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: skip_location
c_type: rbs_location_range
- name: comment_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::ReturnTypeAnnotation
rust_name: ReturnTypeAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: return_location
c_type: rbs_location_range
- name: colon_location
c_type: rbs_location_range
- name: return_type
c_type: rbs_node
- name: comment_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::TypeApplicationAnnotation
rust_name: TypeApplicationAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: type_args
c_type: rbs_node_list
- name: close_bracket_location
c_type: rbs_location_range
- name: comma_locations
c_type: rbs_location_range_list
- name: RBS::AST::Ruby::Annotations::InstanceVariableAnnotation
rust_name: InstanceVariableAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: ivar_name
c_type: rbs_ast_symbol
- name: ivar_name_location
c_type: rbs_location_range
- name: colon_location
c_type: rbs_location_range
- name: type
c_type: rbs_node
- name: comment_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::ClassAliasAnnotation
rust_name: ClassAliasAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: keyword_location
c_type: rbs_location_range
- name: type_name
c_type: rbs_type_name
- name: type_name_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::ModuleAliasAnnotation
rust_name: ModuleAliasAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: keyword_location
c_type: rbs_location_range
- name: type_name
c_type: rbs_type_name
- name: type_name_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::ParamTypeAnnotation
rust_name: ParamTypeAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: name_location
c_type: rbs_location_range
- name: colon_location
c_type: rbs_location_range
- name: param_type
c_type: rbs_node
- name: comment_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::SplatParamTypeAnnotation
rust_name: SplatParamTypeAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: star_location
c_type: rbs_location_range
- name: name_location
c_type: rbs_location_range
optional: true
- name: colon_location
c_type: rbs_location_range
- name: param_type
c_type: rbs_node
- name: comment_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::DoubleSplatParamTypeAnnotation
rust_name: DoubleSplatParamTypeAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: star2_location
c_type: rbs_location_range
- name: name_location
c_type: rbs_location_range
optional: true
- name: colon_location
c_type: rbs_location_range
- name: param_type
c_type: rbs_node
- name: comment_location
c_type: rbs_location_range
optional: true
- name: RBS::AST::Ruby::Annotations::BlockParamTypeAnnotation
rust_name: BlockParamTypeAnnotationNode
fields:
- name: prefix_location
c_type: rbs_location_range
- name: ampersand_location
c_type: rbs_location_range
- name: name_location
c_type: rbs_location_range
optional: true
- name: colon_location
c_type: rbs_location_range
- name: question_location
c_type: rbs_location_range
optional: true
- name: type_location
c_type: rbs_location_range
- name: type
c_name: type_
c_type: rbs_node
- name: comment_location
c_type: rbs_location_range
optional: true
enums:
attribute_visibility:
optional: true
symbols:
- unspecified
- public
- private
attribute_kind:
symbols:
- instance
- singleton
alias_kind:
symbols:
- instance
- singleton
method_definition_kind:
symbols:
- instance
- singleton
- singleton_instance
method_definition_visibility:
optional: true
symbols:
- unspecified
- public
- private
type_param_variance:
symbols:
- invariant
- covariant
- contravariant