Chromium Code Reviews| Index: pkg/analyzer/lib/src/summary/resynthesize.dart |
| diff --git a/pkg/analyzer/lib/src/summary/resynthesize.dart b/pkg/analyzer/lib/src/summary/resynthesize.dart |
| index 5b3b24e41d7330e4d16d6df4a318f8b8bf92c1ed..3b6af5125a0a1b5cf801bf1b518f10875173cda9 100644 |
| --- a/pkg/analyzer/lib/src/summary/resynthesize.dart |
| +++ b/pkg/analyzer/lib/src/summary/resynthesize.dart |
| @@ -112,6 +112,7 @@ class SummaryResynthesizer extends ElementResynthesizer { |
| */ |
| LibraryElement getLibraryElement(String uri) { |
| return _resynthesizedLibraries.putIfAbsent(uri, () { |
| + print('getLibraryElement: $uri'); |
|
Paul Berry
2016/01/11 17:12:21
Looks like temporary debugging code that you forgo
|
| PrelinkedLibrary serializedLibrary = getPrelinkedSummary(uri); |
| List<UnlinkedUnit> serializedUnits = <UnlinkedUnit>[ |
| getUnlinkedSummary(uri) |