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

Side by Side Diff: tools/dom/templates/html/dartium/html_dartium.darttemplate

Issue 1346133002: Report hint on unmatched show and hide combinators. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove line-ending changes. Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:html library. 6 // Auto-generated dart:html library.
7 7
8 /** 8 /**
9 * HTML elements and other resources for web-based applications that need to 9 * HTML elements and other resources for web-based applications that need to
10 * interact with the browser and the DOM (Document Object Model). 10 * interact with the browser and the DOM (Document Object Model).
(...skipping 15 matching lines...) Expand all
26 * and run its built-in examples. 26 * and run its built-in examples.
27 * 27 *
28 * * For even more examples, see 28 * * For even more examples, see
29 * [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) 29 * [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples)
30 * on Github. 30 * on Github.
31 */ 31 */
32 library dart.dom.html; 32 library dart.dom.html;
33 33
34 import 'dart:async'; 34 import 'dart:async';
35 import 'dart:collection'; 35 import 'dart:collection';
36 import 'dart:_internal' hide Symbol, deprecated; 36 import 'dart:_internal' hide Symbol;
37 import 'dart:html_common'; 37 import 'dart:html_common';
38 import 'dart:indexed_db'; 38 import 'dart:indexed_db';
39 import 'dart:indexed_db' show indexed_dbBlinkMap; 39 import 'dart:indexed_db' show indexed_dbBlinkMap;
40 import 'dart:indexed_db' show indexed_dbBlinkFunctionMap; 40 import 'dart:indexed_db' show indexed_dbBlinkFunctionMap;
41 import 'dart:isolate'; 41 import 'dart:isolate';
42 import 'dart:js' as js; 42 import 'dart:js' as js;
43 import "dart:convert"; 43 import "dart:convert";
44 import 'dart:math'; 44 import 'dart:math';
45 // TODO(vsm): Remove this when we can do the proper checking in 45 // TODO(vsm): Remove this when we can do the proper checking in
46 // native code for custom elements. 46 // native code for custom elements.
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 var frozen_nodes = new _FrozenElementList._wrap(nodes); 426 var frozen_nodes = new _FrozenElementList._wrap(nodes);
427 frozen_nodes.dartClass_instance = jso_nodes; 427 frozen_nodes.dartClass_instance = jso_nodes;
428 return frozen_nodes; 428 return frozen_nodes;
429 } 429 }
430 $else 430 $else
431 unwrap_jso(dartClass_instance) => dartClass_instance; 431 unwrap_jso(dartClass_instance) => dartClass_instance;
432 wrap_jso(jsObject) => jsObject; 432 wrap_jso(jsObject) => jsObject;
433 wrap_jso_list(jso_nodes) => jso_nodes; 433 wrap_jso_list(jso_nodes) => jso_nodes;
434 make_dart_rectangle(r) => r; 434 make_dart_rectangle(r) => r;
435 $endif 435 $endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698