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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 2857143003: dart2js_html: Fix for issue 29538 - some returned lists may be null (Closed)
Patch Set: Created 3 years, 8 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 | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index 0876734be093b420b097bb60aeba79d3ae38042e..ed5b122f0edc01831884108de47d3e7b7561ea89 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -5796,13 +5796,13 @@ class SvgSvgElement extends GraphicsElement
@DomName('SVGSVGElement.getEnclosureList')
@DocsEditable()
- @Returns('NodeList')
+ @Returns('NodeList|Null')
@Creates('NodeList')
List<Node> getEnclosureList(Rect rect, SvgElement referenceElement) native;
@DomName('SVGSVGElement.getIntersectionList')
@DocsEditable()
- @Returns('NodeList')
+ @Returns('NodeList|Null')
@Creates('NodeList')
List<Node> getIntersectionList(Rect rect, SvgElement referenceElement) native;
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698