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

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

Side-by-side diff isn't available for this file because of its large size.
Issue 20219002: Fix compilation error (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 | 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 19d3211a39963f977363f505a8a8eef15645f45c..c9f131f3fee58ce91cb679fd880f7813d6af9c6c 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -88,7 +88,9 @@ Future<SendPort> spawnDomFunction(Function f) =>
@DocsEditable()
@DomName('AbstractWorker')
-class AbstractWorker extends Interceptor native "AbstractWorker" {
+class AbstractWorker extends EventTarget native "AbstractWorker" {
+ // To suppress missing implicit constructor warnings.
+ factory AbstractWorker._() { throw new UnsupportedError("Not supported"); }
@DomName('AbstractWorker.errorEvent')
@DocsEditable()
@@ -2654,11 +2656,6 @@ class CssStyleDeclaration extends Interceptor native "CSSStyleDeclaration,MSStyl
@DocsEditable()
final CssRule parentRule;
- @DomName('CSSStyleDeclaration.__getter__')
- @DocsEditable()
- @Experimental() // untriaged
- dynamic __getter__(String name) native;
-
@DomName('CSSStyleDeclaration.__setter__')
@DocsEditable()
void __setter__(String propertyName, String propertyValue) native;
@@ -11362,7 +11359,7 @@ class FormElement extends _HTMLElement native "HTMLFormElement" {
@DomName('HTMLFormElement.__getter__')
@DocsEditable()
- Node __getter__(index_OR_name) native;
+ Node __getter__(int index) native;
@DomName('HTMLFormElement.checkValidity')
@DocsEditable()
@@ -11789,7 +11786,7 @@ class HtmlAllCollection extends Interceptor with ListMixin<Node>, ImmutableListM
@DomName('HTMLAllCollection.__getter__')
@DocsEditable()
- Node __getter__(index_OR_name) native;
+ Node __getter__(int index) native;
@DomName('HTMLAllCollection.item')
@DocsEditable()
@@ -12067,7 +12064,7 @@ class HtmlFormControlsCollection extends HtmlCollection native "HTMLFormControls
@DomName('HTMLFormControlsCollection.__getter__')
@DocsEditable()
- Node __getter__(index_OR_name) native;
+ Node __getter__(int index) native;
@DomName('HTMLFormControlsCollection.namedItem')
@DocsEditable()
@@ -17432,11 +17429,6 @@ class NodeList extends Interceptor with ListMixin<Node>, ImmutableListMixin<Node
Node elementAt(int index) => this[index];
// -- end List<Node> mixins.
- @DomName('NodeList.__getter__')
- @DocsEditable()
- @Experimental() // untriaged
- dynamic __getter__(String name) native;
-
@JSName('item')
@DomName('NodeList.item')
@DocsEditable()
« 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