@@ -72,7 +72,7 @@ class XmlParent extends @xmlparent {
72
72
XmlElement getAChild ( string name ) { xmlElements ( result , _, this , _, _) and result .hasName ( name ) }
73
73
74
74
/** Gets a comment that is a child of this XML parent. */
75
- XmlComment getAComment ( ) { xmlComments ( result , _, this , _) }
75
+ XMLComment getAComment ( ) { xmlComments ( result , _, this , _) }
76
76
77
77
/** Gets a character sequence that is a child of this XML parent. */
78
78
XmlCharacters getACharactersSet ( ) { xmlChars ( result , _, this , _, _, _) }
@@ -325,7 +325,7 @@ deprecated class XMLNamespace = XmlNamespace;
325
325
* <!-- This is a comment. -->
326
326
* ```
327
327
*/
328
- class XmlComment extends @xmlcomment, XmlLocatable {
328
+ class XMLComment extends @xmlcomment, XmlLocatable {
329
329
/** Gets the text content of this XML comment. */
330
330
string getText ( ) { xmlComments ( this , result , _, _) }
331
331
@@ -336,9 +336,6 @@ class XmlComment extends @xmlcomment, XmlLocatable {
336
336
override string toString ( ) { result = this .getText ( ) }
337
337
}
338
338
339
- /** DEPRECATED: Alias for XmlComment */
340
- deprecated class XMLComment = XmlComment ;
341
-
342
339
/**
343
340
* A sequence of characters that occurs between opening and
344
341
* closing tags of an XML element, excluding other elements.
0 commit comments