跳至内容 跳至搜索

包装一个正则表达式,该表达式将针对源文件的每个注释进行测试。

命名空间
方法
A

实例公共方法

annotations(file)

# File railties/lib/rails/source_annotation_extractor.rb, line 26
def annotations(file)
  result = Prism.parse_file(file)
  return [] unless result.success?

  result.comments.filter_map do |comment|
    Annotation.new(comment.location.start_line, $1, $2) if comment.location.slice =~ pattern
  end
end