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

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

Issue 11364186: Dartifying SVG library class names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Syncing to latest, updating for style guide. Created 8 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 | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index f357399bde8768f64f35060be7418ea992ec4866..1e7dbf5fa96bc75507f4e563d35361907988d63a 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -8962,8 +8962,7 @@ class Float32Array extends ArrayBufferView implements JavaScriptIndexingBehavior
num operator[](int index) => JS("num", "#[#]", this, index);
- void operator[]=(int index, num value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<num> mixins.
+ void operator[]=(int index, num value) { JS("void", "#[#] = #", this, index, value); } // -- start List<num> mixins.
// num is the element type.
// From Iterable<num>:
@@ -9073,8 +9072,7 @@ class Float64Array extends ArrayBufferView implements JavaScriptIndexingBehavior
num operator[](int index) => JS("num", "#[#]", this, index);
- void operator[]=(int index, num value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<num> mixins.
+ void operator[]=(int index, num value) { JS("void", "#[#] = #", this, index, value); } // -- start List<num> mixins.
// num is the element type.
// From Iterable<num>:
@@ -11194,8 +11192,7 @@ class Int16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
int operator[](int index) => JS("int", "#[#]", this, index);
- void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<int> mixins.
+ void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); } // -- start List<int> mixins.
// int is the element type.
// From Iterable<int>:
@@ -11305,8 +11302,7 @@ class Int32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
int operator[](int index) => JS("int", "#[#]", this, index);
- void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<int> mixins.
+ void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); } // -- start List<int> mixins.
// int is the element type.
// From Iterable<int>:
@@ -11416,8 +11412,7 @@ class Int8Array extends ArrayBufferView implements JavaScriptIndexingBehavior, L
int operator[](int index) => JS("int", "#[#]", this, index);
- void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<int> mixins.
+ void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); } // -- start List<int> mixins.
// int is the element type.
// From Iterable<int>:
@@ -17996,8 +17991,7 @@ class Uint16Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
int operator[](int index) => JS("int", "#[#]", this, index);
- void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<int> mixins.
+ void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); } // -- start List<int> mixins.
// int is the element type.
// From Iterable<int>:
@@ -18107,8 +18101,7 @@ class Uint32Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
int operator[](int index) => JS("int", "#[#]", this, index);
- void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<int> mixins.
+ void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); } // -- start List<int> mixins.
// int is the element type.
// From Iterable<int>:
@@ -18218,8 +18211,7 @@ class Uint8Array extends ArrayBufferView implements JavaScriptIndexingBehavior,
int operator[](int index) => JS("int", "#[#]", this, index);
- void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); }
- // -- start List<int> mixins.
+ void operator[]=(int index, int value) { JS("void", "#[#] = #", this, index, value); } // -- start List<int> mixins.
// int is the element type.
// From Iterable<int>:
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698