跳至内容 跳至搜索
方法
N
O

属性

[R] comments
[R] pattern

类公共方法

new(source, pattern:)

# File railties/lib/rails/source_annotation_extractor.rb, line 38
def initialize(source, pattern:)
  super(source)
  @pattern = pattern
  @comments = []
end

实例公共方法

on_comment(value)

# File railties/lib/rails/source_annotation_extractor.rb, line 44
def on_comment(value)
  @comments << Annotation.new(lineno, $1, $2) if value =~ pattern
end