PageRenderTime 41ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/IronPython_Main/External.LCA_RESTRICTED/Languages/Ruby/redist-libs/ruby/1.9.1/rexml/dtd/attlistdecl.rb

#
Ruby | 10 lines | 10 code | 0 blank | 0 comment | 0 complexity | b953da62d3713eade9e7047c6d00cfb0 MD5 | raw file
Possible License(s): GPL-2.0, MPL-2.0-no-copyleft-exception, CPL-1.0, CC-BY-SA-3.0, BSD-3-Clause, ISC, AGPL-3.0, LGPL-2.1, Apache-2.0
  1. require "rexml/child"
  2. module REXML
  3. module DTD
  4. class AttlistDecl < Child
  5. START = "<!ATTLIST"
  6. START_RE = /^\s*#{START}/um
  7. PATTERN_RE = /\s*(#{START}.*?>)/um
  8. end
  9. end
  10. end