方法
- N
- O
Attributes
| [R] | comments | |
| [R] | pattern |
类公共方法
new(source, pattern:) 链接
源: 显示 | 在 GitHub 上
# File railties/lib/rails/source_annotation_extractor.rb, line 38 def initialize(source, pattern:) super(source) @pattern = pattern @comments = [] end
实例公共方法
on_comment(value) 链接
源: 显示 | 在 GitHub 上
# File railties/lib/rails/source_annotation_extractor.rb, line 44 def on_comment(value) @comments << Annotation.new(lineno, $1, $2) if value =~ pattern end