Your IP : 18.116.38.30


Current Path : /proc/thread-self/root/opt/alt/ruby26/lib64/ruby/2.6.0/rexml/dtd/
Upload File :
Current File : //proc/thread-self/root/opt/alt/ruby26/lib64/ruby/2.6.0/rexml/dtd/attlistdecl.rb

# frozen_string_literal: false
require_relative "../child"
module REXML
  module DTD
    class AttlistDecl < Child
      START = "<!ATTLIST"
      START_RE = /^\s*#{START}/um
      PATTERN_RE = /\s*(#{START}.*?>)/um
    end
  end
end

?>