| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 /// Transformer that removes uses of mirrors from the polymer runtime, so that | |
| 6 /// deployed applications are thin and small. | |
| 7 library polymer.src.build.mirrors_remover; | |
| 8 | |
| 9 import 'dart:async'; | |
| 10 import 'package:barback/barback.dart'; | |
| 11 | |
| 12 /// Removes the code-initialization logic based on mirrors. | |
| 13 class MirrorsRemover extends Transformer { | |
| 14 MirrorsRemover.asPlugin(); | |
| 15 | |
| 16 /// Only apply to `lib/polymer.dart`. | |
| 17 // TODO(nweiz): This should just take an AssetId when barback <0.13.0 support | |
| 18 // is dropped. | |
| 19 Future<bool> isPrimary(idOrAsset) { | |
| 20 var id = idOrAsset is AssetId ? idOrAsset : idOrAsset.id; | |
| 21 return new Future.value( | |
| 22 id.package == 'polymer' && id.path == 'lib/polymer.dart'); | |
| 23 } | |
| 24 | |
| 25 Future apply(Transform transform) { | |
| 26 var id = transform.primaryInput.id; | |
| 27 return transform.primaryInput.readAsString().then((code) { | |
| 28 // Note: this rewrite is highly-coupled with how polymer.dart is | |
| 29 // written. Make sure both are updated in sync. | |
| 30 var start = code.indexOf('@MirrorsUsed('); | |
| 31 if (start == -1) _error(); | |
| 32 var end = code.indexOf('show MirrorsUsed;', start); | |
| 33 if (end == -1) _error(); | |
| 34 end = code.indexOf('\n', end); | |
| 35 var loaderImport = code.indexOf( | |
| 36 "import 'src/mirror_loader.dart' as loader;", end); | |
| 37 if (loaderImport == -1) _error(); | |
| 38 var sb = new StringBuffer() | |
| 39 ..write(code.substring(0, start)) | |
| 40 ..write(code.substring(end) | |
| 41 .replaceAll('src/mirror_loader.dart', 'src/static_loader.dart')); | |
| 42 | |
| 43 transform.addOutput(new Asset.fromString(id, sb.toString())); | |
| 44 }); | |
| 45 } | |
| 46 } | |
| 47 | |
| 48 /** Transformer phases which should be applied to the smoke package. */ | |
| 49 List<List<Transformer>> get phasesForSmoke => | |
| 50 [[new MirrorsRemover.asPlugin()]]; | |
| 51 | |
| 52 _error() => throw new StateError("Couldn't remove imports to mirrors, maybe " | |
| 53 "polymer.dart was modified, but mirrors_remover.dart wasn't."); | |
| OLD | NEW |