We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7767ec1 commit f30a8c3Copy full SHA for f30a8c3
src/shadow/arborist.ts
@@ -1024,9 +1024,9 @@ class SafeOverrideSet extends OverrideSet {
1024
if (!otherChildren.has(key)) {
1025
return false
1026
}
1027
- const child = <OverrideSetClass>children.get(key)
1028
- const otherChild = <OverrideSetClass>otherChildren.get(key)
1029
- if (child!.value !== otherChild!.value) {
+ const child = children.get(key)!
+ const otherChild = otherChildren.get(key)!
+ if (child.value !== otherChild.value) {
1030
1031
1032
queue[queueLength++] = [child, otherChild]
0 commit comments