Scan @-variable tokens (not used yet)

This commit is contained in:
Simon Binder 2019-12-17 20:48:18 +01:00
parent 496f23d7d1
commit 0335e2482b
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
3 changed files with 15 additions and 3 deletions

View File

@ -152,6 +152,11 @@ class Scanner {
final name = _matchColumnName();
tokens.add(DollarSignVariableToken(_currentSpan, name));
break;
case '@':
final name = _matchColumnName();
tokens.add(AtSignVariableToken(_currentSpan, name));
break;
break;
case ';':
_addToken(TokenType.semicolon);
break;
@ -167,7 +172,6 @@ class Scanner {
_string();
break;
case '"':
// todo sqlite also allows string literals with double ticks, we don't
_identifier(escapedInQuotes: true);
break;
case '`':

View File

@ -42,8 +42,7 @@ enum TokenType {
questionMarkVariable,
colon,
colonVariable,
// todo at is not used at the moment
at,
atSignVariable,
dollarSignVariable,
stringLiteral,
@ -362,6 +361,13 @@ class DollarSignVariableToken extends Token {
: super(TokenType.dollarSignVariable, span);
}
class AtSignVariableToken extends Token {
final String name;
AtSignVariableToken(FileSpan span, this.name)
: super(TokenType.atSignVariable, span);
}
/// Inline Dart appearing in a create table statement. Only parsed when the moor
/// extensions are enabled. Dart code is wrapped in backticks.
class InlineDartToken extends Token {

View File

@ -44,6 +44,8 @@ Map<String, TokenType> testCases = {
'0Xf13A': TokenType.numberLiteral,
'SELECT': TokenType.select,
'"UPDATE"': TokenType.identifier,
'@foo': TokenType.atSignVariable,
':named': TokenType.colonVariable,
};
void main() {