class RDoc::Markup::RegexpHandling

保存正则表达式处理序列的详细信息

属性

text[RW]

正则表达式处理文本

type[R]

正则表达式处理类型

公共类方法

new(type, text) 点击以切换源代码

创建一个新的 type 类型的正则表达式处理序列,内容为 text

# File rdoc/markup/regexp_handling.rb, line 20
def initialize(type, text)
  @type, @text = type, text
end

公共实例方法

==(o) 点击以切换源代码

当正则表达式处理具有相同的文本和类型时,它们相等

# File rdoc/markup/regexp_handling.rb, line 27
def ==(o)
  self.text == o.text && self.type == o.type
end