/opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/rexml/dtd
NameSizeModeActions
attlistdecl.rb2340644editdlrm
dtd.rb12380644editdlrm
elementdecl.rb4560644editdlrm
entitydecl.rb17020644editdlrm
notationdecl.rb10960644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/rexml/dtd/elementdecl.rb (456B)
# frozen_string_literal: false require_relative "../child" module REXML module DTD class ElementDecl < Child START = "/um PATTERN_RE = /^\s*#{START}\s+((?:[:\w][-\.\w]*:)?[-!\*\.\w]*)(.*?)>/ #\s*((((["']).*?\5)|[^\/'">]*)*?)(\/)?>/um, true) def initialize match @name = match[1] @rest = match[2] end end end end