File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,17 +78,17 @@ def base_type name
7878module_exact . subtype "Class"
7979module_exact . subtype "ClassExact"
8080
81- ( integer , integer_exact ) = base_type "Integer"
81+ _ , integer_exact = base_type "Integer"
8282# CRuby partitions Integer into immediate and non-immediate variants.
8383fixnum = integer_exact . subtype "Fixnum"
8484integer_exact . subtype "Bignum"
8585
86- ( float , float_exact ) = base_type "Float"
86+ _ , float_exact = base_type "Float"
8787# CRuby partitions Float into immediate and non-immediate variants.
8888flonum = float_exact . subtype "Flonum"
8989float_exact . subtype "HeapFloat"
9090
91- ( symbol , symbol_exact ) = base_type "Symbol"
91+ _ , symbol_exact = base_type "Symbol"
9292# CRuby partitions Symbol into immediate and non-immediate variants.
9393static_sym = symbol_exact . subtype "StaticSymbol"
9494symbol_exact . subtype "DynamicSymbol"
You can’t perform that action at this time.
0 commit comments