We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e383d81 commit 448bcccCopy full SHA for 448bccc
lib/tapioca/compilers/dsl/base.rb
@@ -25,6 +25,7 @@ class Base
25
sig { void }
26
def initialize
27
@processable_constants = T.let(Set.new(gather_constants), T::Set[Module])
28
+ @processable_constants.compare_by_identity
29
@errors = T.let([], T::Array[String])
30
end
31
sorbet/rbi/shims/set.rbi
@@ -0,0 +1,5 @@
1
+# typed: strict
2
+
3
+class Set
4
+ def compare_by_identity; end
5
+end
0 commit comments