有没有类似 Nokogiri 的东西可以解析 Ruby 代码?
诺科切里太棒了。我可以执行诸如 #css('.bla')
之类的操作,它将返回第一个匹配元素。
现在我们需要对 Ruby 源代码进行一些解析 - 查找类中的所有方法等。我们使用 ruby_parser gem,但它所做的只是梳理源代码并吐出 S 表达式。对于这些 S 表达式,是否有类似 Nokogiri 的东西可以执行“返回名为 'foo' 的第一个方法的 S 表达式”之类的操作?
Nokogiri is awesome. I can do things like #css('.bla')
which will return the first matching element.
Right now we need to do some parsing of Ruby source code - finding all methods within a class etc. We're using the ruby_parser gem, but all it does is comb your source code and spit out S-expressions. Is there anything like Nokogiri for these S-expressions which can do things like "return S-expression for first method found named 'foo'"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我唯一能想到的是 Adam Sanderson 的
SExpPath
库。The only thing I can think of, is Adam Sanderson's
SExpPath
library.虽然我接受约尔格的答案,因为它更完整,但我最终发现了我最终使用的其他东西。 ruby_parser 安装一个名为 sexp_processor 的依赖 gem(在这个 gem 中,
Sexp
类实际上已定义)。如果您查看类文档,有一些方法可以帮助您了解基本的 Ruby发现者。这是一个例子:Although I am accepting Jörg's answer because it is more complete, I ended up discovering something else which I ended up using. ruby_parser installs a dependent gem named sexp_processor (it is in this gem where the
Sexp
class is actually defined). If you view the class docs there are a few methods that will help with basic Ruby finders. Here's an example:我对您正在寻找的 gem 一无所知,但您可以使用
instance_methods
找到类中的所有方法:I don't know anything about gem that you are looking for, but you can find all methods within a class using
instance_methods
:你可以检查 rubinius 解析器,它可能会帮助你做你想做的事。
You could check the rubinius parser, it may help you to do what you want.