d07e33e11f
Change-Id: Ib1b2b1f6858c3c7503fd7a701b9badb9cfbfe8d0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/98050 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
9 lines
434 B
Dart
9 lines
434 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:front_end/src/scanner/token.dart'
|
|
show Keyword, Token, TokenType;
|