有没有类似 Nokogiri 的东西可以解析 Ruby 代码?

发布于 2024-11-15 17:45:53 字数 294 浏览 2 评论 0原文

诺科切里太棒了。我可以执行诸如 #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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

我的影子我的梦 2024-11-22 17:45:53

我唯一能想到的是 Adam Sanderson 的 SExpPath

The only thing I can think of, is Adam Sanderson's SExpPath library.

花辞树 2024-11-22 17:45:53

虽然我接受约尔格的答案,因为它更完整,但我最终发现了我最终使用的其他东西。 ruby_parser 安装一个名为 sexp_processor 的依赖 gem(在这个 gem 中,Sexp类实际上已定义)。如果您查看类文档,有一些方法可以帮助您了解基本的 Ruby发现者。这是一个例子:

class Sexp
  def name          # convenience method
    self.sexp_body.first
  end
end    

# Print out all instance methods within classes. Beware - if "code" sexp itself
# is a class, it will NOT be included!
code = RubyParser.new.parse(IO.read('/src/file'))
code.each_of_type(:class){ |klass|
  klass.each_of_type(:defn){ |meth|
    puts meth.name
  }
}

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:

class Sexp
  def name          # convenience method
    self.sexp_body.first
  end
end    

# Print out all instance methods within classes. Beware - if "code" sexp itself
# is a class, it will NOT be included!
code = RubyParser.new.parse(IO.read('/src/file'))
code.each_of_type(:class){ |klass|
  klass.each_of_type(:defn){ |meth|
    puts meth.name
  }
}
执着的年纪 2024-11-22 17:45:53

我对您正在寻找的 gem 一无所知,但您可以使用 instance_methods 找到类中的所有方法:

class Foo
  def bar
  end
end

irb(main):005:0> Foo.instance_methods - Object.instance_methods
=> [:bar]

I don't know anything about gem that you are looking for, but you can find all methods within a class using instance_methods:

class Foo
  def bar
  end
end

irb(main):005:0> Foo.instance_methods - Object.instance_methods
=> [:bar]
如梦亦如幻 2024-11-22 17:45:53

你可以检查 rubinius 解析器,它可能会帮助你做你想做的事。

You could check the rubinius parser, it may help you to do what you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文