File tree 2 files changed +3
-3
lines changed
skiplang/prelude/src/skstore
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -717,7 +717,7 @@ mutable class Context private {
717
717
};
718
718
EagerDir::update(
719
719
this,
720
- this.dirty,
720
+ this.dirty.maybeGet(parentName) ,
721
721
this.dirtyReaders.maybeGet(parentName),
722
722
parentName,
723
723
parentMaps,
Original file line number Diff line number Diff line change @@ -1537,7 +1537,7 @@ class EagerDir protected {
1537
1537
1538
1538
static fun update(
1539
1539
context: mutable Context,
1540
- contextDirty: SortedMap<DirName, SortedSet<Key> >,
1540
+ parentDirtyOpt: ? SortedSet<Key>,
1541
1541
contextDirtyReadersOpt: ?SortedMap<DirName, SortedSet<Key>>,
1542
1542
parentName: DirName,
1543
1543
parentMaps: Array<
@@ -1574,7 +1574,7 @@ class EagerDir protected {
1574
1574
})
1575
1575
}
1576
1576
};
1577
- contextDirty.maybeGet(parent.dirName) match {
1577
+ parentDirtyOpt match {
1578
1578
| None() -> void
1579
1579
| Some(dirtyKeys) ->
1580
1580
keys = dirtyKeys.values();
You can’t perform that action at this time.
0 commit comments