class TestVisitor
Public Instance Methods
ns_parse_error(msg)
click to toggle source
# File lib/xmlscan/namespace.rb 338 def ns_parse_error(msg) 339 STDERR.printf("%s:%d: %s\n", $s.path, $s.lineno, msg) if $VERBOSE 340 end
ns_wellformed_error(msg)
click to toggle source
# File lib/xmlscan/namespace.rb 341 def ns_wellformed_error(msg) 342 STDERR.printf("%s:%d: NSC: %s\n", $s.path, $s.lineno, msg) if $VERBOSE 343 end
parse_error(msg)
click to toggle source
# File lib/xmlscan/htmlscan.rb 278 def parse_error(msg) 279 STDERR.printf("%s:%d: %s\n", $s.path, $s.lineno, msg) if $VERBOSE 280 end
warning(msg)
click to toggle source
# File lib/xmlscan/namespace.rb 335 def warning(msg) 336 STDERR.printf("%s:%d: warning: %s\n", $s.path,$s.lineno, msg) if $VERBOSE 337 end
wellformed_error(msg)
click to toggle source
# File lib/xmlscan/namespace.rb 332 def wellformed_error(msg) 333 STDERR.printf("%s:%d: WFC: %s\n", $s.path, $s.lineno, msg) if $VERBOSE 334 end