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 55368dc commit 3812a44Copy full SHA for 3812a44
Sources/Common/DataModel/ImplicitBoolean/index.js
@@ -19,8 +19,11 @@ function vtkImplicitBoolean(publicAPI, model) {
19
// Set our className
20
model.classHierarchy.push('vtkImplicitBoolean');
21
22
+ // Capture "parentClass" api for internal use
23
+ const superClass = Object.assign({}, publicAPI);
24
+
25
publicAPI.getMTime = () => {
- let mTime = model.superClass.getMTime();
26
+ let mTime = superClass.getMTime();
27
if (!model.functions || model.functions.length <= 0) {
28
return mTime;
29
}
0 commit comments