chore: update all import paths

This commit is contained in:
Jeff Cross
2015-08-20 14:28:25 -07:00
parent 10437ab85c
commit 8ed22ce6e7
592 changed files with 1616 additions and 1486 deletions

View File

@ -1,5 +1,5 @@
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {DateWrapper} from 'angular2/src/facade/lang';
import {DateWrapper} from 'angular2/src/core/facade/lang';
export class Options {
static get DEFAULT_BINDINGS(): Binding[] { return _DEFAULT_BINDINGS; }

View File

@ -1,5 +1,5 @@
import {Date, DateWrapper} from 'angular2/src/facade/lang';
import {StringMap, Map} from 'angular2/src/facade/collection';
import {Date, DateWrapper} from 'angular2/src/core/facade/lang';
import {StringMap, Map} from 'angular2/src/core/facade/collection';
export class MeasureValues {
constructor(public runIndex: number, public timeStamp: Date,

View File

@ -1,7 +1,7 @@
import {bind, Binding} from 'angular2/di';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {ABSTRACT, BaseException} from 'angular2/src/facade/lang';
import {StringMap} from 'angular2/src/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {ABSTRACT, BaseException} from 'angular2/src/core/facade/lang';
import {StringMap} from 'angular2/src/core/facade/collection';
/**
* A metric is measures values

View File

@ -1,6 +1,6 @@
import {bind, Binding, Injector, OpaqueToken} from 'angular2/di';
import {List, ListWrapper, StringMapWrapper, StringMap} from 'angular2/src/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {List, ListWrapper, StringMapWrapper, StringMap} from 'angular2/src/core/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {Metric} from '../metric';

View File

@ -1,4 +1,4 @@
import {PromiseWrapper, Promise, TimerWrapper} from 'angular2/src/facade/async';
import {PromiseWrapper, Promise, TimerWrapper} from 'angular2/src/core/facade/async';
import {
isPresent,
isBlank,
@ -7,8 +7,8 @@ import {
Math,
RegExpWrapper,
NumberWrapper
} from 'angular2/src/facade/lang';
import {ListWrapper, StringMap, StringMapWrapper} from 'angular2/src/facade/collection';
} from 'angular2/src/core/facade/lang';
import {ListWrapper, StringMap, StringMapWrapper} from 'angular2/src/core/facade/collection';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {WebDriverExtension, PerfLogFeatures} from '../web_driver_extension';

View File

@ -1,8 +1,8 @@
import {bind, Binding} from 'angular2/di';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {ABSTRACT, BaseException} from 'angular2/src/facade/lang';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {ABSTRACT, BaseException} from 'angular2/src/core/facade/lang';
import {MeasureValues} from './measure_values';
import {List} from 'angular2/src/facade/collection';
import {List} from 'angular2/src/core/facade/collection';
/**
* A reporter reports measure values and the valid sample.

View File

@ -1,7 +1,7 @@
import {print, isPresent, isBlank, NumberWrapper} from 'angular2/src/facade/lang';
import {StringMapWrapper, ListWrapper, List} from 'angular2/src/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {Math} from 'angular2/src/facade/math';
import {print, isPresent, isBlank, NumberWrapper} from 'angular2/src/core/facade/lang';
import {StringMapWrapper, ListWrapper, List} from 'angular2/src/core/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {Math} from 'angular2/src/core/facade/math';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {Statistic} from '../statistic';

View File

@ -1,6 +1,6 @@
import {DateWrapper, isPresent, isBlank, Json} from 'angular2/src/facade/lang';
import {List} from 'angular2/src/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {DateWrapper, isPresent, isBlank, Json} from 'angular2/src/core/facade/lang';
import {List} from 'angular2/src/core/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {bind, Binding, OpaqueToken} from 'angular2/di';

View File

@ -1,6 +1,6 @@
import {bind, Binding, Injector, OpaqueToken} from 'angular2/di';
import {List, ListWrapper} from 'angular2/src/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {List, ListWrapper} from 'angular2/src/core/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {MeasureValues} from '../measure_values';
import {Reporter} from '../reporter';

View File

@ -1,7 +1,7 @@
import {Injector, bind, Binding} from 'angular2/di';
import {isPresent, isBlank} from 'angular2/src/facade/lang';
import {List, ListWrapper} from 'angular2/src/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {isPresent, isBlank} from 'angular2/src/core/facade/lang';
import {List, ListWrapper} from 'angular2/src/core/facade/collection';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {Sampler, SampleState} from './sampler';
import {ConsoleReporter} from './reporter/console_reporter';

View File

@ -1,4 +1,4 @@
import {StringMapWrapper, ListWrapper, List, StringMap} from 'angular2/src/facade/collection';
import {StringMapWrapper, ListWrapper, List, StringMap} from 'angular2/src/core/facade/collection';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {Validator} from './validator';
import {Metric} from './metric';

View File

@ -1,6 +1,6 @@
import {isPresent, isBlank, Date, DateWrapper} from 'angular2/src/facade/lang';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {StringMapWrapper, StringMap, List, ListWrapper} from 'angular2/src/facade/collection';
import {isPresent, isBlank, Date, DateWrapper} from 'angular2/src/core/facade/lang';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {StringMapWrapper, StringMap, List, ListWrapper} from 'angular2/src/core/facade/collection';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {Metric} from './metric';

View File

@ -1,5 +1,5 @@
import {Math} from 'angular2/src/facade/math';
import {ListWrapper, List} from 'angular2/src/facade/collection';
import {Math} from 'angular2/src/core/facade/math';
import {ListWrapper, List} from 'angular2/src/core/facade/collection';
export class Statistic {
static calculateCoefficientOfVariation(sample, mean) {

View File

@ -1,6 +1,6 @@
import {bind, Binding} from 'angular2/di';
import {List, StringMap} from 'angular2/src/facade/collection';
import {ABSTRACT, BaseException} from 'angular2/src/facade/lang';
import {List, StringMap} from 'angular2/src/core/facade/collection';
import {ABSTRACT, BaseException} from 'angular2/src/core/facade/lang';
import {MeasureValues} from './measure_values';

View File

@ -1,4 +1,4 @@
import {List, ListWrapper, StringMap} from 'angular2/src/facade/collection';
import {List, ListWrapper, StringMap} from 'angular2/src/core/facade/collection';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {Validator} from '../validator';

View File

@ -1,4 +1,4 @@
import {List, ListWrapper, StringMap} from 'angular2/src/facade/collection';
import {List, ListWrapper, StringMap} from 'angular2/src/core/facade/collection';
import {bind, Binding, OpaqueToken} from 'angular2/di';
import {Validator} from '../validator';

View File

@ -1,7 +1,7 @@
import {bind, Binding} from 'angular2/di';
import {Promise} from 'angular2/src/facade/async';
import {BaseException, ABSTRACT} from 'angular2/src/facade/lang';
import {List, Map} from 'angular2/src/facade/collection';
import {Promise} from 'angular2/src/core/facade/async';
import {BaseException, ABSTRACT} from 'angular2/src/core/facade/lang';
import {List, Map} from 'angular2/src/core/facade/collection';
/**
* A WebDriverAdapter bridges API differences between different WebDriver clients,

View File

@ -1,8 +1,8 @@
import {bind, Binding, Injector, OpaqueToken} from 'angular2/di';
import {BaseException, ABSTRACT, isBlank, isPresent} from 'angular2/src/facade/lang';
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {List, ListWrapper, StringMap} from 'angular2/src/facade/collection';
import {BaseException, ABSTRACT, isBlank, isPresent} from 'angular2/src/core/facade/lang';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {List, ListWrapper, StringMap} from 'angular2/src/core/facade/collection';
import {Options} from './common_options';

View File

@ -1,7 +1,7 @@
library benchpress.src.webdriver.async_webdriver_adapter_dart;
import 'package:webdriver/webdriver.dart' show WebDriver, LogEntry;
import 'package:angular2/src/facade/async.dart' show Future;
import 'package:angular2/src/core/facade/async.dart' show Future;
import '../web_driver_adapter.dart' show WebDriverAdapter;
class AsyncWebDriverAdapter extends WebDriverAdapter {

View File

@ -1,5 +1,5 @@
import {bind, Binding} from 'angular2/di';
import {ListWrapper, StringMapWrapper, StringMap} from 'angular2/src/facade/collection';
import {ListWrapper, StringMapWrapper, StringMap} from 'angular2/src/core/facade/collection';
import {
Json,
isPresent,
@ -8,11 +8,11 @@ import {
StringWrapper,
BaseException,
NumberWrapper
} from 'angular2/src/facade/lang';
} from 'angular2/src/core/facade/lang';
import {WebDriverExtension, PerfLogFeatures} from '../web_driver_extension';
import {WebDriverAdapter} from '../web_driver_adapter';
import {Promise} from 'angular2/src/facade/async';
import {Promise} from 'angular2/src/core/facade/async';
/**
* Set the following 'traceCategories' to collect metrics in Chrome:

View File

@ -1,8 +1,8 @@
import {bind, Binding} from 'angular2/di';
import {isPresent, StringWrapper} from 'angular2/src/facade/lang';
import {isPresent, StringWrapper} from 'angular2/src/core/facade/lang';
import {WebDriverExtension, PerfLogFeatures} from '../web_driver_extension';
import {WebDriverAdapter} from '../web_driver_adapter';
import {Promise} from 'angular2/src/facade/async';
import {Promise} from 'angular2/src/core/facade/async';
export class FirefoxDriverExtension extends WebDriverExtension {
static get BINDINGS(): List<Binding> { return _BINDINGS; }

View File

@ -1,5 +1,5 @@
import {bind, Binding} from 'angular2/di';
import {ListWrapper, StringMap} from 'angular2/src/facade/collection';
import {ListWrapper, StringMap} from 'angular2/src/core/facade/collection';
import {
Json,
isPresent,
@ -7,11 +7,11 @@ import {
RegExpWrapper,
StringWrapper,
BaseException
} from 'angular2/src/facade/lang';
} from 'angular2/src/core/facade/lang';
import {WebDriverExtension, PerfLogFeatures} from '../web_driver_extension';
import {WebDriverAdapter} from '../web_driver_adapter';
import {Promise} from 'angular2/src/facade/async';
import {Promise} from 'angular2/src/core/facade/async';
export class IOsDriverExtension extends WebDriverExtension {
// TODO(tbosch): use static values when our transpiler supports them

View File

@ -1,4 +1,4 @@
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
import {Promise, PromiseWrapper} from 'angular2/src/core/facade/async';
import {bind, Binding} from 'angular2/di';
import {WebDriverAdapter} from '../web_driver_adapter';