platform/graphql_parser/lib/src/language/token.dart
2018-08-02 08:48:53 -04:00

18 lines
375 B
Dart

import 'package:source_span/source_span.dart';
import 'token_type.dart';
class Token {
final TokenType type;
final String text;
FileSpan span;
Token(this.type, this.text, [this.span]);
@override
String toString() {
if (span == null)
return "'$text' -> $type";
else
return "(${span.start.line}:${span.start.column}) '$text' -> $type";
}
}