| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 /// Logic to validate that developers are correctly using Polymer constructs. | 5 /// Logic to validate that developers are correctly using Polymer constructs. |
| 6 /// This is mainly used to produce warnings for feedback in the editor. | 6 /// This is mainly used to produce warnings for feedback in the editor. |
| 7 library polymer.src.build.linter; | 7 library polymer.src.build.linter; |
| 8 | 8 |
| 9 import 'dart:async'; | 9 import 'dart:async'; |
| 10 import 'dart:convert'; | 10 import 'dart:convert'; |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 } | 482 } |
| 483 | 483 |
| 484 const List<String> INTERNALLY_DEFINED_ELEMENTS = const [ | 484 const List<String> INTERNALLY_DEFINED_ELEMENTS = const [ |
| 485 'auto-binding-dart', | 485 'auto-binding-dart', |
| 486 'polymer-element' | 486 'polymer-element' |
| 487 ]; | 487 ]; |
| 488 const List<String> AUTO_BINDING_ELEMENTS = const [ | 488 const List<String> AUTO_BINDING_ELEMENTS = const [ |
| 489 'auto-binding-dart', | 489 'auto-binding-dart', |
| 490 'auto-binding' | 490 'auto-binding' |
| 491 ]; | 491 ]; |
| OLD | NEW |