JS, Python, Ruby: Make implicit this receivers explicit

This commit is contained in:
Kasper Svendsen
2023-05-03 13:51:51 +02:00
parent e9c25949fa
commit aca2ace843
3 changed files with 3 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ private CryptographicAlgorithm getBestAlgorithmForName(string name) {
*/
abstract class CryptographicAlgorithm extends TCryptographicAlgorithm {
/** Gets a textual representation of this element. */
string toString() { result = getName() }
string toString() { result = this.getName() }
/**
* Gets the normalized name of this algorithm (upper-case, no spaces, dashes or underscores).