Methods
F
N
T
Class Public methods
new(matched, value)
# File actionpack/test/template/html-scanner/node_test.rb, line 6
def initialize(matched, value)
  @matched = matched
  @value = value
end
Instance Public methods
find(conditions)
# File actionpack/test/template/html-scanner/node_test.rb, line 11
def find(conditions)
  @matched && self
end
to_s()
# File actionpack/test/template/html-scanner/node_test.rb, line 15
def to_s
  @value.to_s
end