Closed vushu closed 1 year ago
Base: 98.57% // Head: 97.06% // Decreases project coverage by -1.51%
:warning:
Coverage data is based on head (
24b7dbe
) compared to base (87fd010
). Patch coverage: 100.00% of modified lines in pull request are covered.
:umbrella: View full report at Codecov.
:loudspeaker: Do you have feedback about the report comment? Let us know in this issue.
@atilaneves good question, but it will say boom when we try to GC.removeRange(_object);
for type of interface.
my best guess is that interfaces can't be dynamically allocated meaning you can't new
an interface
, therefore we can't GC.removeRange.
I have added asserts to ensure that the class gets properly de-allocated.
I tried to tinker around with
Unique
and it looks like it doesn't support interfaces, so I tried adding it. I also tried to do the same forRefCounted
, but had some problems.