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
//nested multi-declarations statement nested in anonymous class declarationsObjectc = newC() { Stringa, b; };
//bad style of writing multiple statements in one lineObjectd; Stringe, f;
These two examples would break the assumption of multiDeclRefactor that "the start line of multi-declarations statement does not has other statements on the same line".
Although above examples should be hopefully very rare to happen in real-world applications, multiDeclRefactor should be able to handle above cases correctly.
The text was updated successfully, but these errors were encountered:
Consider following examples:
These two examples would break the assumption of
multiDeclRefactor
that "the start line of multi-declarations statement does not has other statements on the same line".Although above examples should be hopefully very rare to happen in real-world applications,
multiDeclRefactor
should be able to handle above cases correctly.The text was updated successfully, but these errors were encountered: