File tree 3 files changed +9
-1
lines changed 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.15
2
+
3
+ * Add ` BasicInfo.resetIds ` to free internal cache used for id uniqueness.
4
+
1
5
## 0.5.14
2
6
* Updates ` coverage_log_server.dart ` and ` live_code_size_analysis.dart ` to make
3
7
them strong clean and match the latest changes in dart2js.
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ abstract class Info {
54
54
// - inputSize: bytes used in the Dart source program
55
55
abstract class BasicInfo implements Info {
56
56
static final Set <int > _ids = new Set <int >();
57
+
58
+ /// Frees internal cache used for id uniqueness.
59
+ static void resetIds () => BasicInfo ._ids.clear ();
60
+
57
61
final InfoKind kind;
58
62
59
63
int _id;
Original file line number Diff line number Diff line change 1
1
name : dart2js_info
2
- version : 0.5.14
2
+ version : 0.5.15
3
3
4
4
description : >
5
5
Libraries and tools to process data produced when running dart2js with
You can’t perform that action at this time.
0 commit comments