-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extracted source continues to next expression on same line #28
Comments
It's because we use a simplistic approach to extracting the code, we read line by line looking for complete expressions. This works in 90% of cases as users don't typically define more than one method on a line. |
I guess it wouldn't be very hard to try advancing by semicolon-separated chunks and not just complete lines. On Tue, Feb 10, 2015 at 9:06 AM, John Mair [email protected]
|
Since you are not aiming for dynamically defined methods, all method definitions will follow |
We actually do support dynamically-defined methods. It's also not uncommon for a |
Extracted source continues to the next expression on the same line
output:
I expected:
Is this bug or feature?
The text was updated successfully, but these errors were encountered: