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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Issue 10869016: Regen html_dart2js - fix for dartc (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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:
Download patch
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index 4e214ba440d5ca96dfb4bf4ad95f8aa07c956ee8..4882362c6aea506098206f31e82f76d543661bae 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -37109,7 +37109,7 @@ _serialize(var message) {
}
class JsProxy {
- final int _id;
+ final _id;
JsProxy._internal(this._id);
}
@@ -37161,7 +37161,7 @@ class _JsSerializer extends _Serializer {
// TODO: provide better, backend specific implementation.
class _Registry<T> {
final String _name;
- final int _nextId;
+ int _nextId;
final Map<String, T> _registry;
_Registry(this._name) : _nextId = 0, _registry = <T>{};
@@ -37281,10 +37281,10 @@ class _JsDeserializer extends _Deserializer {
String tag = x[1];
switch (tag) {
case 'nativejs':
- int id = x[2];
+ var id = x[2];
return new JsProxy._internal(id);
case 'dart':
- int id = x[2];
+ var id = x[2];
// TODO(vsm): Check for isolate id. If the isolate isn't the
// current isolate, return a DartProxy.
return _getDartProxyObj(id);
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698