You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Per the reports of this error from @SoutiRini, the synectic@0.7.1 version appears to have an error that was previously masked but has appeared due to an update to the typescript package which allowed make deeper type inferences for class inheritance that involves a super class declaring and managing instances of parent. When attempting to compile, the tsc compiler gives the following error messages:
webpack --config webpack.config.js --progress --colors
Version: webpack 3.11.0
ERROR in /Users/Rini/Documents/Synectic/synectic/src/core/Stack.ts
[tsl] ERROR in /Users/Rini/Documents/Synectic/synectic/src/core/Stack.ts(8,10)
TS2564: Property 'parent' has no initializer and is not definitely assigned in the constructor.
ERROR in /Users/Rini/Documents/Synectic/synectic/src/core/Stack.ts
[tsl] ERROR in /Users/Rini/Documents/Synectic/synectic/src/core/Stack.ts(9,10)
TS2564: Property 'children' has no initializer and is not definitely assigned in the constructor.
The following screenshots demonstrate these errors:
The text was updated successfully, but these errors were encountered:
Per the reports of this error from @SoutiRini, the
synectic@0.7.1
version appears to have an error that was previously masked but has appeared due to an update to thetypescript
package which allowed make deeper type inferences for class inheritance that involves a super class declaring and managing instances ofparent
. When attempting to compile, thetsc
compiler gives the following error messages:The following screenshots demonstrate these errors:
The text was updated successfully, but these errors were encountered: