@@ -28,7 +28,7 @@ module Ruby {
2828 string getAPrimaryQlClass ( ) { result = "???" }
2929
3030 /** 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 ( ) , "," ) }
3232 }
3333
3434 /** A token. */
@@ -40,7 +40,7 @@ module Ruby {
4040 override Location getLocation ( ) { ruby_tokeninfo ( this , _, _, result ) }
4141
4242 /** Gets a string representation of this element. */
43- override string toString ( ) { result = getValue ( ) }
43+ override string toString ( ) { result = this . getValue ( ) }
4444
4545 /** Gets the name of the primary QL class for this element. */
4646 override string getAPrimaryQlClass ( ) { result = "Token" }
@@ -1881,7 +1881,7 @@ module Erb {
18811881 string getAPrimaryQlClass ( ) { result = "???" }
18821882
18831883 /** 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 ( ) , "," ) }
18851885 }
18861886
18871887 /** A token. */
@@ -1893,7 +1893,7 @@ module Erb {
18931893 override Location getLocation ( ) { erb_tokeninfo ( this , _, _, result ) }
18941894
18951895 /** Gets a string representation of this element. */
1896- override string toString ( ) { result = getValue ( ) }
1896+ override string toString ( ) { result = this . getValue ( ) }
18971897
18981898 /** Gets the name of the primary QL class for this element. */
18991899 override string getAPrimaryQlClass ( ) { result = "Token" }
0 commit comments