Files
sdk/pkg/kernel/lib/analyzer/analyzer.dart
T
Asger Feldthaus 311c893fa3 [kernel] Avoid redundant allocations in the frontend.
Doesn't make much of a difference, but we might as well land it now.
At least it rules them out as a bottleneck.

BUG=
R=kmillikin@google.com, kustermann@google.com

Review URL: https://chromereviews.googleplex.com/439987013 .
2016-05-30 14:21:50 +02:00

14 lines
729 B
Dart

// Copyright (c) 2016, 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.
/// A library that re-exports the analyzer's program representation parts.
library kernel.analyzer.frontend;
export 'package:analyzer/dart/ast/visitor.dart';
export 'package:analyzer/dart/ast/ast.dart';
export 'package:analyzer/dart/element/element.dart';
export 'package:analyzer/dart/element/type.dart';
export 'package:analyzer/src/generated/utilities_dart.dart' show ParameterKind;
export 'package:analyzer/src/dart/element/member.dart' show Member;
export 'package:analyzer/dart/ast/token.dart' show Token;