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 749351e commit a3c23b6Copy full SHA for a3c23b6
+nix/Block.m
@@ -7,7 +7,7 @@
7
end
8
9
properties(Hidden)
10
- metadataCache = nix.CacheStruct()
+ metadataCache
11
12
13
methods
@@ -19,6 +19,8 @@
19
obj.add_dyn_relation('sources', @nix.Source);
20
obj.add_dyn_relation('tags', @nix.Tag);
21
obj.add_dyn_relation('multiTags', @nix.MultiTag);
22
+
23
+ obj.metadataCache = nix.CacheStruct();
24
end;
25
26
% -----------------
+nix/Section.m
@@ -8,7 +8,7 @@
- propsCache = nix.CacheStruct()
+ propsCache
14
properties(Dependent)
@@ -26,6 +26,8 @@
27
% assign relations
28
obj.add_dyn_relation('sections', @nix.Section);
29
30
+ obj.propsCache = nix.CacheStruct();
31
32
33
function section = parent(obj)
0 commit comments