[dart2js] Exporting as package: to allow non-SDK usage

Change-Id: I0235f524904a1a4c54c83161eb51ab0277473d1e
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/244180
Reviewed-by: Joshua Litt <joshualitt@google.com>
Commit-Queue: Mark Zhou <markzipan@google.com>
This commit is contained in:
Mark Zhou 2022-05-10 00:34:32 +00:00 committed by Commit Bot
parent 53161dd26c
commit 8aeeffb848
2 changed files with 4 additions and 2 deletions

View file

@ -2,4 +2,5 @@
// 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.
export 'dart:_dart2js_runtime_metrics' show runtimeMetrics;
export 'package:dart2js_runtime_metrics/runtime_metrics.dart'
show runtimeMetrics;

View file

@ -2,4 +2,5 @@
// 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.
export 'dart:_dart2js_runtime_metrics' show startupMetrics;
export 'package:dart2js_runtime_metrics/startup_metrics.dart'
show startupMetrics;