mirror of https://github.com/AMT-Cheif/drift.git
Scan @-variable tokens (not used yet)
This commit is contained in:
parent
496f23d7d1
commit
0335e2482b
|
@ -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 '`':
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue