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 a3f52c0 commit 10712e7Copy full SHA for 10712e7
src/system.ts
@@ -174,9 +174,10 @@ export namespace Dependency {
174
do {
175
if (link !== undefined) {
176
const sub: Link['sub'] = link.sub;
177
+ const subTrackId = sub.trackId;
178
- if (sub.trackId > 0) {
179
- if (sub.trackId === link.trackId) {
+ if (subTrackId > 0) {
180
+ if (subTrackId === link.trackId) {
181
const subDirtyLevel = sub.dirtyLevel;
182
if (subDirtyLevel < dirtyLevel) {
183
sub.dirtyLevel = dirtyLevel;
@@ -199,7 +200,7 @@ export namespace Dependency {
199
200
}
201
202
- } else if (sub.trackId === -link.trackId) {
203
+ } else if (subTrackId === -link.trackId) {
204
205
206
const notDirty = subDirtyLevel === DirtyLevels.None;
0 commit comments