pedantic: string_value
This commit is contained in:
parent
cba6d7840d
commit
0fb5e16565
1 changed files with 14 additions and 5 deletions
|
@ -5,22 +5,31 @@ import '../syntax_error.dart';
|
||||||
import '../token.dart';
|
import '../token.dart';
|
||||||
import 'input_value.dart';
|
import 'input_value.dart';
|
||||||
|
|
||||||
|
/// A GraphQL string value literal.
|
||||||
class StringValueContext extends InputValueContext<String> {
|
class StringValueContext extends InputValueContext<String> {
|
||||||
final Token STRING;
|
/// The source token.
|
||||||
|
final Token stringToken;
|
||||||
|
|
||||||
|
/// Whether this is a block string.
|
||||||
final bool isBlockString;
|
final bool isBlockString;
|
||||||
|
|
||||||
StringValueContext(this.STRING, {this.isBlockString = false});
|
StringValueContext(this.stringToken, {this.isBlockString = false});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
FileSpan get span => STRING.span;
|
FileSpan get span => stringToken.span;
|
||||||
|
|
||||||
|
/// Use [stringToken] instead.
|
||||||
|
@deprecated
|
||||||
|
Token get STRING => stringToken;
|
||||||
|
|
||||||
|
/// The [String] value of the [stringToken].
|
||||||
String get stringValue {
|
String get stringValue {
|
||||||
String text;
|
String text;
|
||||||
|
|
||||||
if (!isBlockString) {
|
if (!isBlockString) {
|
||||||
text = STRING.text.substring(1, STRING.text.length - 1);
|
text = stringToken.text.substring(1, stringToken.text.length - 1);
|
||||||
} else {
|
} else {
|
||||||
text = STRING.text.substring(3, STRING.text.length - 3).trim();
|
text = stringToken.text.substring(3, stringToken.text.length - 3).trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
var codeUnits = text.codeUnits;
|
var codeUnits = text.codeUnits;
|
||||||
|
|
Loading…
Reference in a new issue