Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Unified Diff: pkg/compiler/lib/src/resolution/registry.dart

Issue 2827283002: Implement subtype relation for kernel based elements. (Closed)
Patch Set: Remove @override annotations Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/compiler/lib/src/resolution/registry.dart
diff --git a/pkg/compiler/lib/src/resolution/registry.dart b/pkg/compiler/lib/src/resolution/registry.dart
index df2f729eb0657e4a67941e2a3fc50dc471311f50..cc9db2c00894e5e5bd57d51d3fa77e9682bc95e1 100644
--- a/pkg/compiler/lib/src/resolution/registry.dart
+++ b/pkg/compiler/lib/src/resolution/registry.dart
@@ -147,6 +147,12 @@ class ResolutionWorldImpactBuilder extends WorldImpactBuilderImpl
if (_constSymbolNames != null) {
sb.write('\n const-symbol-names: $_constSymbolNames');
}
+ if (_nativeData != null) {
+ sb.write('\n native-data:');
+ for (var data in _nativeData) {
+ sb.write('\n $data');
+ }
+ }
return sb.toString();
}
}

Powered by Google App Engine
This is Rietveld 408576698