@@ -34,10 +34,10 @@ module Ruby {
3434 /** A token. */
3535 class Token extends @ruby_token, AstNode {
3636 /** Gets the value of this token. */
37- string getValue ( ) { ruby_tokeninfo ( this , _, _ , _ , result , _) }
37+ string getValue ( ) { ruby_tokeninfo ( this , _, result , _) }
3838
3939 /** Gets the location of this token. */
40- override Location getLocation ( ) { ruby_tokeninfo ( this , _, _, _ , _ , result ) }
40+ override Location getLocation ( ) { ruby_tokeninfo ( this , _, _, result ) }
4141
4242 /** Gets a string representation of this element. */
4343 override string toString ( ) { result = getValue ( ) }
@@ -1875,10 +1875,10 @@ module Erb {
18751875 /** A token. */
18761876 class Token extends @erb_token, AstNode {
18771877 /** Gets the value of this token. */
1878- string getValue ( ) { erb_tokeninfo ( this , _, _ , _ , result , _) }
1878+ string getValue ( ) { erb_tokeninfo ( this , _, result , _) }
18791879
18801880 /** Gets the location of this token. */
1881- override Location getLocation ( ) { erb_tokeninfo ( this , _, _, _ , _ , result ) }
1881+ override Location getLocation ( ) { erb_tokeninfo ( this , _, _, result ) }
18821882
18831883 /** Gets a string representation of this element. */
18841884 override string toString ( ) { result = getValue ( ) }
0 commit comments