@@ -22,7 +22,7 @@ def type_member(variance = :invariant, &bounds_proc)
2222 # `T::Generic#type_member` just instantiates a `T::Type::TypeMember` instance and returns it.
2323 # We use that when registering the type member and then later return it from this method.
2424 Tapioca ::TypeVariableModule . new (
25- T . cast ( self , Module ) ,
25+ T . cast ( self , :: Module ) ,
2626 Tapioca ::TypeVariableModule ::Type ::Member ,
2727 variance ,
2828 bounds_proc ,
@@ -35,7 +35,7 @@ def type_template(variance = :invariant, &bounds_proc)
3535 # `T::Generic#type_template` just instantiates a `T::Type::TypeTemplate` instance and returns it.
3636 # We use that when registering the type template and then later return it from this method.
3737 Tapioca ::TypeVariableModule . new (
38- T . cast ( self , Module ) ,
38+ T . cast ( self , :: Module ) ,
3939 Tapioca ::TypeVariableModule ::Type ::Template ,
4040 variance ,
4141 bounds_proc ,
@@ -48,7 +48,7 @@ def has_attached_class!(variance = :invariant, &bounds_proc)
4848 Tapioca ::Runtime ::GenericTypeRegistry . register_type_variable (
4949 self ,
5050 Tapioca ::TypeVariableModule . new (
51- T . cast ( self , Module ) ,
51+ T . cast ( self , :: Module ) ,
5252 Tapioca ::TypeVariableModule ::Type ::HasAttachedClass ,
5353 variance ,
5454 bounds_proc ,
0 commit comments