如何在 GNU Smalltalk 中查看图像代码?
如何从 GST 命令行界面中查看类/消息代码? 我只知道 #inspect 消息,但这仅显示对象的定义或摘要,而不是代码。
谢谢 :-)
how can I look at class / message code from within the GST command line interface?
I only know the #inspect message, but this shows only a definition or summary of the object, not the code.
Thank you :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用“methodSourceString”方法,例如
但是,字符串将用双引号打印,这对于重要的代码来说可能很不方便。
仅使用文本编辑器通常更简单,因为类几乎总是包含在单个文件中。您也可以从 REPL 查询文件名:
You can use the "methodSourceString" method, like
However, the string will be printed with double quotes, which can be inconvenient for non-trivial code.
It's often simpler to just use a text editor, because almost always classes are contained in a single file. You can query the file name from the REPL, too: