-1 I think this refactoring is so uncommon, adding it in will be more confusiing than helpful.
"Roger Dubbs" <[EMAIL PROTECTED]> wrote in message af7fj4$gii$[EMAIL PROTECTED]">news:af7fj4$gii$[EMAIL PROTECTED]... > Let's say I have a loop that looks like: > for (int i = 0; i < 2; i++) { > someArray[i] = i; > } > > I'd like to be able to inline i and get the following: > someArray[0] = 0; > someArray[1] = 1; > > Obviously this can only work when the bounds of the loop are constants. > > Roger Dubbs > > _______________________________________________ Eap-features mailing list [EMAIL PROTECTED] http://lists.jetbrains.com/mailman/listinfo/eap-features
