3095a082cd
Change-Id: I377fdc44d5e514d6d9a601b3947c3908e5a4497a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/140768 Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
9 lines
466 B
Dart
9 lines
466 B
Dart
// 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.
|
|
|
|
/// Defines the tokens that are produced by the scanner, used by the parser, and
|
|
/// referenced from the [AST structure](ast.dart).
|
|
export 'package:_fe_analyzer_shared/src/scanner/token.dart'
|
|
show Keyword, Token, TokenType, LanguageVersionToken;
|