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

Unified Diff: client/html/scripts/html-diff.dart

Issue 8763001: Fix names with '$' to not conflict with operators or internal helpers (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merged again Created 9 years, 1 month 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 | frog/corejs.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/scripts/html-diff.dart
diff --git a/client/html/scripts/html-diff.dart b/client/html/scripts/html-diff.dart
index f0f2751e8fa9acb5de28b618eb18b9e9ef869a0e..f4580922836d90a757950fa1309a067a7d4976e4 100644
--- a/client/html/scripts/html-diff.dart
+++ b/client/html/scripts/html-diff.dart
@@ -109,7 +109,7 @@ class HtmlDiff {
}
if (domType == null) return new Set();
if (htmlMember.definition == null) return new Set();
- if (htmlMember.name == 'get\$on') {
+ if (htmlMember.name == 'get:on') {
final members = _members(domType.members['addEventListener']);
members.addAll(_members(domType.members['dispatchEvent']));
members.addAll(_members(domType.members['removeEventListener']));
« no previous file with comments | « no previous file | frog/corejs.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698