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

Unified Diff: pkg/compiler/lib/src/js_backend/backend_serialization.dart

Issue 2863073003: Access NativeData only through ClosedWorld (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/js_backend/frequency_namer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_backend/backend_serialization.dart
diff --git a/pkg/compiler/lib/src/js_backend/backend_serialization.dart b/pkg/compiler/lib/src/js_backend/backend_serialization.dart
index 60cf714f5d1d063b31ad182ff5f7243c6dd5afe9..8aa4c061568bded8d8f91acec17787708088e283 100644
--- a/pkg/compiler/lib/src/js_backend/backend_serialization.dart
+++ b/pkg/compiler/lib/src/js_backend/backend_serialization.dart
@@ -54,7 +54,7 @@ class JavaScriptBackendSerializer implements SerializerPlugin {
JavaScriptBackendSerializer(this._backend);
NativeBasicDataImpl get nativeBasicData => _backend.nativeBasicData;
- NativeDataImpl get nativeData => _backend.nativeData;
+ NativeDataBuilderImpl get nativeData => _backend.nativeDataBuilder;
@override
void onElement(Element element, ObjectEncoder createEncoder(String tag)) {
@@ -119,7 +119,7 @@ class JavaScriptBackendDeserializer implements DeserializerPlugin {
NativeBasicDataBuilderImpl get nativeBasicData =>
_backend.nativeBasicDataBuilder;
- NativeDataImpl get nativeData => _backend.nativeData;
+ NativeDataBuilderImpl get nativeData => _backend.nativeDataBuilder;
@override
void onElement(Element element, ObjectDecoder getDecoder(String tag)) {
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend.dart ('k') | pkg/compiler/lib/src/js_backend/frequency_namer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698