File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,17 +77,17 @@ def base_type name
7777module_class , _ = base_type "Module"
7878module_class . subtype "Class"
7979
80- ( integer , integer_exact ) = base_type "Integer"
80+ _ , integer_exact = base_type "Integer"
8181# CRuby partitions Integer into immediate and non-immediate variants.
8282fixnum = integer_exact . subtype "Fixnum"
8383integer_exact . subtype "Bignum"
8484
85- ( float , float_exact ) = base_type "Float"
85+ _ , float_exact = base_type "Float"
8686# CRuby partitions Float into immediate and non-immediate variants.
8787flonum = float_exact . subtype "Flonum"
8888float_exact . subtype "HeapFloat"
8989
90- ( symbol , symbol_exact ) = base_type "Symbol"
90+ _ , symbol_exact = base_type "Symbol"
9191# CRuby partitions Symbol into immediate and non-immediate variants.
9292static_sym = symbol_exact . subtype "StaticSymbol"
9393symbol_exact . subtype "DynamicSymbol"
You can’t perform that action at this time.
0 commit comments