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
If a brace is followed by a comment on the next line, the brace is removed and added the end of the comment and now the code is missing a brace and is no longer compilable.
as3 code for example:
if(this._explicitWidth!==this._explicitWidth&&//isNaN
(this.actualWidth >value||this.actualWidth ==oldValue))
{
//only invalidate if this change might affect the width
this.invalidate(INVALIDATION_FLAG_SIZE);
}
expected result
if(this._explicitWidth!=this._explicitWidth&&//isNaN
(this.actualWidth>value||this.actualWidth==oldValue))
{
//only invalidate if this change might affect the widththis.invalidate(INVALIDATION_FLAG_SIZE);
}
actual result
if (this._explicitWidth!=this._explicitWidth&&//isNaN
(this.actualWidth>value||this.actualWidth==oldValue))
//only invalidate if this change might affect the width{this.invalidate(INVALIDATION_FLAG_SIZE);
}
The text was updated successfully, but these errors were encountered:
If a brace is followed by a comment on the next line, the brace is removed and added the end of the comment and now the code is missing a brace and is no longer compilable.
as3 code for example:
expected result
actual result
The text was updated successfully, but these errors were encountered: