Files
sdk/pkg/kernel/bin/count_breakdown.dart
T
Alexander Aprelev c339846594 [kernel] Move util.dart from bin to lib.
bin/util.dart doesn't have main() entry point and that breaks snapshot generation that is
automatically invoked by pub for all dart sources in bin/ folder.

See https://github.com/flutter/flutter/pull/19044\#issuecomment-402241782

Change-Id: Ie91549173536740992ce61d830efdfdc603c5564
Reviewed-on: https://dart-review.googlesource.com/63683
Commit-Queue: Alexander Aprelev <aam@google.com>
Reviewed-by: Alexander Markov <alexmarkov@google.com>
2018-07-04 00:50:16 +00:00

52 lines
1.5 KiB
Dart
Executable File

#!/usr/bin/env dart
// Copyright (c) 2018, 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.
import 'dart:io';
import 'package:kernel/kernel.dart';
import 'package:kernel/src/tool/command_line_util.dart';
void usage() {
print("Enumerates the different node types in the provided dill file");
print("and counts them.");
print("");
print("Usage: dart <script> dillFile.dill");
print("The given argument should be an existing file");
print("that is valid to load as a dill file.");
exit(1);
}
main(List<String> args) {
CommandLineHelper.requireExactlyOneArgument(true, args, usage);
Component component = CommandLineHelper.tryLoadDill(args[0], usage);
TypeCounter counter = new TypeCounter();
component.accept(counter);
counter.printStats();
}
class TypeCounter extends RecursiveVisitor {
Map<String, int> _typeCounts = <String, int>{};
defaultNode(Node node) {
String key = node.runtimeType.toString();
_typeCounts[key] ??= 0;
_typeCounts[key]++;
super.defaultNode(node);
}
printStats() {
List<List<Object>> data = [];
_typeCounts.forEach((type, count) {
data.add([type, count]);
});
data.sort((a, b) {
int aCount = a[1];
int bCount = b[1];
return bCount - aCount;
});
for (var entry in data) {
print("${entry[0]}: ${entry[1]}");
}
}
}