@@ -28,7 +28,7 @@ module Ruby {
28
28
string getAPrimaryQlClass ( ) { result = "???" }
29
29
30
30
/** Gets a comma-separated list of the names of the primary CodeQL classes to which this element belongs. */
31
- string getPrimaryQlClasses ( ) { result = concat ( getAPrimaryQlClass ( ) , "," ) }
31
+ string getPrimaryQlClasses ( ) { result = concat ( this . getAPrimaryQlClass ( ) , "," ) }
32
32
}
33
33
34
34
/** A token. */
@@ -40,7 +40,7 @@ module Ruby {
40
40
override Location getLocation ( ) { ruby_tokeninfo ( this , _, _, result ) }
41
41
42
42
/** Gets a string representation of this element. */
43
- override string toString ( ) { result = getValue ( ) }
43
+ override string toString ( ) { result = this . getValue ( ) }
44
44
45
45
/** Gets the name of the primary QL class for this element. */
46
46
override string getAPrimaryQlClass ( ) { result = "Token" }
@@ -1881,7 +1881,7 @@ module Erb {
1881
1881
string getAPrimaryQlClass ( ) { result = "???" }
1882
1882
1883
1883
/** Gets a comma-separated list of the names of the primary CodeQL classes to which this element belongs. */
1884
- string getPrimaryQlClasses ( ) { result = concat ( getAPrimaryQlClass ( ) , "," ) }
1884
+ string getPrimaryQlClasses ( ) { result = concat ( this . getAPrimaryQlClass ( ) , "," ) }
1885
1885
}
1886
1886
1887
1887
/** A token. */
@@ -1893,7 +1893,7 @@ module Erb {
1893
1893
override Location getLocation ( ) { erb_tokeninfo ( this , _, _, result ) }
1894
1894
1895
1895
/** Gets a string representation of this element. */
1896
- override string toString ( ) { result = getValue ( ) }
1896
+ override string toString ( ) { result = this . getValue ( ) }
1897
1897
1898
1898
/** Gets the name of the primary QL class for this element. */
1899
1899
override string getAPrimaryQlClass ( ) { result = "Token" }
0 commit comments