b48d4f224f
Change-Id: I60891b46119d6451810adf2846a05a66050bacd0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/373246 Reviewed-by: Jens Johansen <jensj@google.com> Commit-Queue: Johnni Winther <johnniwinther@google.com>
19 lines
544 B
Dart
19 lines
544 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.
|
|
|
|
library front_end.tool.perf_test;
|
|
|
|
import 'dart:io' show Platform;
|
|
|
|
import 'perf.dart' as m;
|
|
|
|
Future<void> main() async {
|
|
var benchIds = ['scan', 'parse'];
|
|
var inputFile =
|
|
Platform.script.resolve('../lib/src/api_prototype/file_system.dart').path;
|
|
for (var id in benchIds) {
|
|
await m.main([id, inputFile]);
|
|
}
|
|
}
|