| 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 /// Includes any additional polyfills that may needed by the deployed app. | 5 /// Includes any additional polyfills that may needed by the deployed app. |
| 6 library polymer.src.build.polyfill_injector; | 6 library polymer.src.build.polyfill_injector; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 | 9 |
| 10 import 'package:barback/barback.dart'; | 10 import 'package:barback/barback.dart'; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 }); | 137 }); |
| 138 } | 138 } |
| 139 } | 139 } |
| 140 | 140 |
| 141 final _platformJS = new RegExp(r'platform.*\.js', caseSensitive: false); | 141 final _platformJS = new RegExp(r'platform.*\.js', caseSensitive: false); |
| 142 final _webComponentsJS = | 142 final _webComponentsJS = |
| 143 new RegExp(r'webcomponents.*\.js', caseSensitive: false); | 143 new RegExp(r'webcomponents.*\.js', caseSensitive: false); |
| 144 final _dartSupportJS = new RegExp(r'dart_support.js', caseSensitive: false); | 144 final _dartSupportJS = new RegExp(r'dart_support.js', caseSensitive: false); |
| 145 final _browserDartJS = | 145 final _browserDartJS = |
| 146 new RegExp(r'packages/browser/dart.js', caseSensitive: false); | 146 new RegExp(r'packages/browser/dart.js', caseSensitive: false); |
| OLD | NEW |