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
We should report warnings for so-called train wrecks that violate the information hiding principle.
Train wrecks are calls such as var x = A.B.C.D.E.F.G.h() where A - G are properties or invocations.
The reason for the warning is that there is too much information involved and spread across the code. To call h() you need to know that there is an A which has a B which in turn has a C that has a D ...
The text was updated successfully, but these errors were encountered:
We should report warnings for so-called train wrecks that violate the information hiding principle.
Train wrecks are calls such as
var x = A.B.C.D.E.F.G.h()
where A - G are properties or invocations.The reason for the warning is that there is too much information involved and spread across the code. To call
h()
you need to know that there is anA
which has aB
which in turn has aC
that has aD
...The text was updated successfully, but these errors were encountered: