Utility
dotty.tools.dotc.parsing.xml.Utility
object Utility
The Utility
object provides utility functions for processing instances of bound and not bound XML classes, as well as escaping text nodes.
Attributes
- Authors:
-
Burak Emir
- Graph
-
- Supertypes
- Self type
-
Utility.type
Members list
Value members
Concrete methods
See [5] of XML 1.0 specification.
Name ::= ( Letter | '_' ) (NameChar)*
See [5] of XML 1.0 specification.
Attributes
See [4] and Appendix B of XML 1.0 specification.
NameChar ::= Letter | Digit | '.' | '-' | '_' | ':'
| CombiningChar | Extender
See [4] and Appendix B of XML 1.0 specification.
Attributes
where Letter means in one of the Unicode general categories { Ll, Lu, Lo, Lt, Nl }
.
NameStart ::= ( Letter | '_' )
where Letter means in one of the Unicode general categories { Ll, Lu, Lo, Lt, Nl }
.
We do not allow a name to start with :
. See [3] and Appendix B of XML 1.0 specification
Attributes
In this article