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
classA{prop: string;}consta=newA();a.prop.length;// TypeError: Cannot read property 'length' of undefined
Expected behavior:
TS should throw a compile time error to ensure that non-nullable class members are initialized inside the constructor and can not lead to runtime errors.
Actual behavior:
No compile time error, rather an exception at runtime
The text was updated successfully, but these errors were encountered:
TypeScript Version: 2.1.0-dev.20160909
Code
Expected behavior:
TS should throw a compile time error to ensure that non-nullable class members are initialized inside the constructor and can not lead to runtime errors.
Actual behavior:
No compile time error, rather an exception at runtime
The text was updated successfully, but these errors were encountered: