run the implicit-this patch

This commit is contained in:
erik-krogh
2022-08-22 21:23:31 +02:00
parent a593a52b5e
commit 28083ebe09
12 changed files with 46 additions and 44 deletions

View File

@@ -135,7 +135,7 @@ class XmlFile extends XmlParent, File {
XmlDtd getADtd() { xmlDTDs(result, _, _, _, this) }
/** DEPRECATED: Alias for getADtd */
deprecated XmlDTD getADTD() { result = getADtd() }
deprecated XmlDTD getADTD() { result = this.getADtd() }
}
/** DEPRECATED: Alias for XmlFile */
@@ -291,7 +291,7 @@ class XmlNamespace extends XmlLocatable, @xmlnamespace {
string getUri() { xmlNs(this, _, result, _) }
/** DEPRECATED: Alias for getUri */
deprecated string getURI() { result = getUri() }
deprecated string getURI() { result = this.getUri() }
/** Holds if this namespace has no prefix. */
predicate isDefault() { this.getPrefix() = "" }