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

Unified Diff: lib/html/src/Isolates.dart

Issue 10869069: Fix syntax error (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:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/src/Isolates.dart
diff --git a/lib/html/src/Isolates.dart b/lib/html/src/Isolates.dart
index bedb8b49bbadec2211a3ad246bfd4e6ec28b3313..a026da0fbb530d43e3357686e16e7a0774fb7092 100644
--- a/lib/html/src/Isolates.dart
+++ b/lib/html/src/Isolates.dart
@@ -27,7 +27,7 @@ int _localNextElementId = 0;
const _DART_ID = 'data-dart_id';
-var _elementId(Element e) {
+_elementId(Element e) {
if (e.attributes.containsKey(_DART_ID)) return e.attributes[_DART_ID];
var id = '$_isolateId-${_localNextElementId++}';
e.attributes[_DART_ID] = id;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698