Created
February 2, 2011 10:31
-
-
Save Geal/807518 to your computer and use it in GitHub Desktop.
Displays only the body of a method (without prototype and comments)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| scriptMethod sourceString sourceStringWithBracketsStripped | | |
scriptMethod := CLASS_HERE compiledMethodAt: #METHOD_HERE. | |
sourceString := scriptMethod methodNode body asString. | |
sourceStringWithBracketsStripped := sourceString copyFrom: 3 to: sourceString size - 2. | |
sourceStringWithBracketsStripped. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment