Add GenericToken.getKind() to interface

This commit is contained in:
Maikel Steneker
2020-11-30 16:58:58 +01:00
parent 26728348f6
commit af31b3a773
15 changed files with 73 additions and 0 deletions

View File

@ -56,6 +56,11 @@ public class ScalaTokenAdapter implements GenericToken {
return token.pos().endColumn() + 1;
}
@Override
public int getKind() {
throw new UnsupportedOperationException();
}
@Override
public String toString() {
return "ScalaTokenAdapter{"