fix all other implicit-this warnings introduced by the acronym patch

This commit is contained in:
Erik Krogh Kristensen
2022-03-11 13:22:07 +01:00
parent 2e2970128e
commit 1e365611fc
23 changed files with 38 additions and 38 deletions

View File

@@ -1671,7 +1671,7 @@ class LValue extends VarAccess {
Expr getRhs() { exists(Assignment e | e.getDest() = this and e.getSource() = result) }
/** DEPRECATED: Alias for getRhs */
deprecated Expr getRHS() { result = getRhs() }
deprecated Expr getRHS() { result = this.getRhs() }
}
/**

View File

@@ -929,7 +929,7 @@ class SsaVariable extends TSsaVariable {
}
/** DEPRECATED: Alias for getCfgNode */
deprecated ControlFlowNode getCFGNode() { result = getCfgNode() }
deprecated ControlFlowNode getCFGNode() { result = this.getCfgNode() }
/** Gets a textual representation of this SSA variable. */
string toString() { none() }

View File

@@ -483,7 +483,7 @@ class BaseSsaVariable extends TBaseSsaVariable {
}
/** DEPRECATED: Alias for getCfgNode */
deprecated ControlFlowNode getCFGNode() { result = getCfgNode() }
deprecated ControlFlowNode getCFGNode() { result = this.getCfgNode() }
string toString() { none() }

View File

@@ -59,7 +59,7 @@ class SpringRemotingDestinationClass extends Class {
/** DEPRECATED: Alias for getRemotingDestinationXml */
deprecated SpringRemotingDestination getRemotingDestinationXML() {
result = getRemotingDestinationXml()
result = this.getRemotingDestinationXml()
}
/**