chore(transformers): cleanup unneeded _toDepsUri function

Cleanu unneeded _toDepsUri function in favor of the common toDepsExtension.
This commit is contained in:
Ted Sander 2015-07-17 11:04:54 -07:00
parent 5cc84ed4bb
commit 3df8363a94
1 changed files with 1 additions and 5 deletions

View File

@ -9,7 +9,6 @@ import 'package:angular2/src/transform/common/names.dart';
import 'package:angular2/src/transform/common/ng_deps.dart';
import 'package:barback/barback.dart';
import 'package:code_transformers/assets.dart';
import 'package:path/path.dart' as path;
/// Checks the `.ng_deps.dart` file represented by `entryPoint` and
/// determines whether it is necessary to the functioning of the Angular 2
@ -93,9 +92,6 @@ List<UriBasedDirective> _getSortedDeps(NgDeps ngDeps) {
..sort((a, b) => a.end.compareTo(b.end));
}
String _toDepsUri(String importUri) =>
'${path.withoutExtension(importUri)}${DEPS_EXTENSION}';
bool _isNotDartDirective(UriBasedDirective directive) {
return !stringLiteralToString(directive.uri).startsWith('dart:');
}
@ -110,7 +106,7 @@ Future<Map<UriBasedDirective, String>> _processNgImports(AssetReader reader,
.wait(directives
.where(_isNotDartDirective)
.map((UriBasedDirective directive) {
var ngDepsUri = _toDepsUri(stringLiteralToString(directive.uri));
var ngDepsUri = toDepsExtension(stringLiteralToString(directive.uri));
var spanArg = null;
var ngDepsAsset = uriToAssetId(entryPoint, ngDepsUri, logger, spanArg,
errorOnAbsolute: false);