blob: afea98e9c56e8d6fad85ff4d301871eaa466755c [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:analyzer/dart/ast/token.dart';
import 'package:analyzer/src/dart/ast/token.dart';
/**
* A set of utility methods that can be used to create tokens.
*/
class TokenFactory {
static Token tokenFromKeyword(Keyword keyword) =>
new KeywordToken(keyword, 0);
static Token tokenFromString(String lexeme) =>
new StringToken(TokenType.STRING, lexeme, 0);
static Token tokenFromType(TokenType type) => new Token(type, 0);
static Token tokenFromTypeAndString(TokenType type, String lexeme) =>
new StringToken(type, lexeme, 0);
}