refactor(imports): simplify paths
This commit is contained in:
parent
b00b9fe564
commit
27a47e7841
|
@ -1,4 +1,4 @@
|
||||||
import {Type} from '../../src/facade/lang';
|
import {Type} from '../facade/lang';
|
||||||
import {NgClass} from './ng_class';
|
import {NgClass} from './ng_class';
|
||||||
import {NgFor} from './ng_for';
|
import {NgFor} from './ng_for';
|
||||||
import {NgIf} from './ng_if';
|
import {NgIf} from './ng_if';
|
||||||
|
|
|
@ -11,8 +11,8 @@ import {
|
||||||
CollectionChangeRecord,
|
CollectionChangeRecord,
|
||||||
KeyValueChangeRecord
|
KeyValueChangeRecord
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {isPresent, isString, isArray} from '../../src/facade/lang';
|
import {isPresent, isString, isArray} from '../facade/lang';
|
||||||
import {StringMapWrapper, isListLikeIterable} from '../../src/facade/collection';
|
import {StringMapWrapper, isListLikeIterable} from '../facade/collection';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The `NgClass` directive conditionally adds and removes CSS classes on an HTML element based on
|
* The `NgClass` directive conditionally adds and removes CSS classes on an HTML element based on
|
||||||
|
|
|
@ -11,8 +11,8 @@ import {
|
||||||
DefaultIterableDiffer,
|
DefaultIterableDiffer,
|
||||||
CollectionChangeRecord
|
CollectionChangeRecord
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {isPresent, isBlank, getTypeNameForDebugging} from '../../src/facade/lang';
|
import {isPresent, isBlank, getTypeNameForDebugging} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
export class NgForRow {
|
export class NgForRow {
|
||||||
constructor(public $implicit: any, public index: number, public count: number) {}
|
constructor(public $implicit: any, public index: number, public count: number) {}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Directive, ViewContainerRef, TemplateRef} from '@angular/core';
|
import {Directive, ViewContainerRef, TemplateRef} from '@angular/core';
|
||||||
import {isBlank} from '../../src/facade/lang';
|
import {isBlank} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Removes or recreates a portion of the DOM tree based on an {expression}.
|
* Removes or recreates a portion of the DOM tree based on an {expression}.
|
||||||
|
|
|
@ -8,8 +8,8 @@ import {
|
||||||
AfterContentInit,
|
AfterContentInit,
|
||||||
Input
|
Input
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {isPresent, NumberWrapper} from '../../src/facade/lang';
|
import {isPresent, NumberWrapper} from '../facade/lang';
|
||||||
import {Map} from '../../src/facade/collection';
|
import {Map} from '../facade/collection';
|
||||||
|
|
||||||
import {SwitchView} from './ng_switch';
|
import {SwitchView} from './ng_switch';
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ import {
|
||||||
Directive,
|
Directive,
|
||||||
Renderer
|
Renderer
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The `NgStyle` directive changes styles based on a result of expression evaluation.
|
* The `NgStyle` directive changes styles based on a result of expression evaluation.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {Directive, Host, ViewContainerRef, TemplateRef} from '@angular/core';
|
import {Directive, Host, ViewContainerRef, TemplateRef} from '@angular/core';
|
||||||
import {isPresent, isBlank, normalizeBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank, normalizeBlank} from '../facade/lang';
|
||||||
import {ListWrapper, Map} from '../../src/facade/collection';
|
import {ListWrapper, Map} from '../facade/collection';
|
||||||
|
|
||||||
const _WHEN_DEFAULT = /*@ts2dart_const*/ new Object();
|
const _WHEN_DEFAULT = /*@ts2dart_const*/ new Object();
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Directive, Input, ViewContainerRef, ViewRef, TemplateRef} from '@angular/core';
|
import {Directive, Input, ViewContainerRef, ViewRef, TemplateRef} from '@angular/core';
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and inserts an embedded view based on a prepared `TemplateRef`.
|
* Creates and inserts an embedded view based on a prepared `TemplateRef`.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {AbstractControl} from '../model';
|
import {AbstractControl} from '../model';
|
||||||
import {isPresent} from '../../../src/facade/lang';
|
import {isPresent} from '../../facade/lang';
|
||||||
import {unimplemented} from '../../../src/facade/exceptions';
|
import {unimplemented} from '../../facade/exceptions';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base class for control directives.
|
* Base class for control directives.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Directive, ElementRef, Renderer, forwardRef} from '@angular/core';
|
import {Directive, ElementRef, Renderer, forwardRef} from '@angular/core';
|
||||||
import {isBlank} from '../../../src/facade/lang';
|
import {isBlank} from '../../facade/lang';
|
||||||
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
||||||
|
|
||||||
export const DEFAULT_VALUE_ACCESSOR: any = /*@ts2dart_const*/
|
export const DEFAULT_VALUE_ACCESSOR: any = /*@ts2dart_const*/
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {unimplemented} from '../../../src/facade/exceptions';
|
import {unimplemented} from '../../facade/exceptions';
|
||||||
|
|
||||||
import {ControlValueAccessor} from './control_value_accessor';
|
import {ControlValueAccessor} from './control_value_accessor';
|
||||||
import {AbstractControlDirective} from './abstract_control_directive';
|
import {AbstractControlDirective} from './abstract_control_directive';
|
||||||
|
|
|
@ -11,7 +11,7 @@ import {
|
||||||
Self
|
Self
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
|
|
||||||
import {EventEmitter, ObservableWrapper} from '../../../src/facade/async';
|
import {EventEmitter, ObservableWrapper} from '../../facade/async';
|
||||||
import {ControlContainer} from './control_container';
|
import {ControlContainer} from './control_container';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor';
|
import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {Directive, Self} from '@angular/core';
|
import {Directive, Self} from '@angular/core';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
import {isPresent} from '../../../src/facade/lang';
|
import {isPresent} from '../../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Directive automatically applied to Angular forms that sets CSS classes
|
* Directive automatically applied to Angular forms that sets CSS classes
|
||||||
|
|
|
@ -3,9 +3,9 @@ import {
|
||||||
PromiseWrapper,
|
PromiseWrapper,
|
||||||
ObservableWrapper,
|
ObservableWrapper,
|
||||||
EventEmitter
|
EventEmitter
|
||||||
} from '../../../src/facade/async';
|
} from '../../facade/async';
|
||||||
import {ListWrapper} from '../../../src/facade/collection';
|
import {ListWrapper} from '../../facade/collection';
|
||||||
import {isPresent} from '../../../src/facade/lang';
|
import {isPresent} from '../../facade/lang';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
import {Form} from './form_interface';
|
import {Form} from './form_interface';
|
||||||
import {NgControlGroup} from './ng_control_group';
|
import {NgControlGroup} from './ng_control_group';
|
||||||
|
|
|
@ -8,8 +8,8 @@ import {
|
||||||
Self
|
Self
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
|
|
||||||
import {StringMapWrapper} from '../../../src/facade/collection';
|
import {StringMapWrapper} from '../../facade/collection';
|
||||||
import {EventEmitter, ObservableWrapper} from '../../../src/facade/async';
|
import {EventEmitter, ObservableWrapper} from '../../facade/async';
|
||||||
|
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
import {Control} from '../model';
|
import {Control} from '../model';
|
||||||
|
|
|
@ -7,10 +7,10 @@ import {
|
||||||
Optional,
|
Optional,
|
||||||
Self
|
Self
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {isBlank} from '../../../src/facade/lang';
|
import {isBlank} from '../../facade/lang';
|
||||||
import {ListWrapper, StringMapWrapper} from '../../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper} from '../../facade/collection';
|
||||||
import {BaseException} from '../../../src/facade/exceptions';
|
import {BaseException} from '../../facade/exceptions';
|
||||||
import {ObservableWrapper, EventEmitter} from '../../../src/facade/async';
|
import {ObservableWrapper, EventEmitter} from '../../facade/async';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
import {NgControlGroup} from './ng_control_group';
|
import {NgControlGroup} from './ng_control_group';
|
||||||
import {ControlContainer} from './control_container';
|
import {ControlContainer} from './control_container';
|
||||||
|
|
|
@ -7,7 +7,7 @@ import {
|
||||||
Optional,
|
Optional,
|
||||||
Self
|
Self
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {EventEmitter, ObservableWrapper} from '../../../src/facade/async';
|
import {EventEmitter, ObservableWrapper} from '../../facade/async';
|
||||||
import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor';
|
import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
import {Control} from '../model';
|
import {Control} from '../model';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Directive, ElementRef, Renderer, forwardRef} from '@angular/core';
|
import {Directive, ElementRef, Renderer, forwardRef} from '@angular/core';
|
||||||
import {NumberWrapper} from '../../../src/facade/lang';
|
import {NumberWrapper} from '../../facade/lang';
|
||||||
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
||||||
|
|
||||||
export const NUMBER_VALUE_ACCESSOR: any = /*@ts2dart_const*/ /*@ts2dart_Provider*/ {
|
export const NUMBER_VALUE_ACCESSOR: any = /*@ts2dart_const*/ /*@ts2dart_Provider*/ {
|
||||||
|
|
|
@ -9,8 +9,8 @@ import {
|
||||||
Injector,
|
Injector,
|
||||||
Injectable
|
Injectable
|
||||||
} from '@angular/core';
|
} from '@angular/core';
|
||||||
import {isPresent} from '../../../src/facade/lang';
|
import {isPresent} from '../../facade/lang';
|
||||||
import {ListWrapper} from '../../../src/facade/collection';
|
import {ListWrapper} from '../../facade/collection';
|
||||||
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
|
|
||||||
|
|
|
@ -14,8 +14,8 @@ import {
|
||||||
isPresent,
|
isPresent,
|
||||||
isBlank,
|
isBlank,
|
||||||
looseIdentical
|
looseIdentical
|
||||||
} from '../../../src/facade/lang';
|
} from '../../facade/lang';
|
||||||
import {MapWrapper} from '../../../src/facade/collection';
|
import {MapWrapper} from '../../facade/collection';
|
||||||
|
|
||||||
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
import {NG_VALUE_ACCESSOR, ControlValueAccessor} from './control_value_accessor';
|
||||||
|
|
||||||
|
|
|
@ -16,9 +16,9 @@ import {
|
||||||
isPresent,
|
isPresent,
|
||||||
looseIdentical,
|
looseIdentical,
|
||||||
isString
|
isString
|
||||||
} from '../../../src/facade/lang';
|
} from '../../facade/lang';
|
||||||
import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor';
|
import {ControlValueAccessor, NG_VALUE_ACCESSOR} from './control_value_accessor';
|
||||||
import {MapWrapper} from '../../../src/facade/collection';
|
import {MapWrapper} from '../../facade/collection';
|
||||||
|
|
||||||
const SELECT_MULTIPLE_VALUE_ACCESSOR = {
|
const SELECT_MULTIPLE_VALUE_ACCESSOR = {
|
||||||
provide: NG_VALUE_ACCESSOR,
|
provide: NG_VALUE_ACCESSOR,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {ListWrapper, StringMapWrapper} from '../../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper} from '../../facade/collection';
|
||||||
import {isBlank, isPresent, looseIdentical, hasConstructor} from '../../../src/facade/lang';
|
import {isBlank, isPresent, looseIdentical, hasConstructor} from '../../facade/lang';
|
||||||
import {BaseException} from '../../../src/facade/exceptions';
|
import {BaseException} from '../../facade/exceptions';
|
||||||
|
|
||||||
import {ControlContainer} from './control_container';
|
import {ControlContainer} from './control_container';
|
||||||
import {NgControl} from './ng_control';
|
import {NgControl} from './ng_control';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {StringMapWrapper} from '../../src/facade/collection';
|
import {StringMapWrapper} from '../facade/collection';
|
||||||
import {isPresent, isArray} from '../../src/facade/lang';
|
import {isPresent, isArray} from '../facade/lang';
|
||||||
import * as modelModule from './model';
|
import * as modelModule from './model';
|
||||||
import {ValidatorFn, AsyncValidatorFn} from './directives/validators';
|
import {ValidatorFn, AsyncValidatorFn} from './directives/validators';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {isPresent, isBlank, normalizeBool} from '../../src/facade/lang';
|
import {isPresent, isBlank, normalizeBool} from '../facade/lang';
|
||||||
import {Observable, EventEmitter, ObservableWrapper} from '../../src/facade/async';
|
import {Observable, EventEmitter, ObservableWrapper} from '../facade/async';
|
||||||
import {PromiseWrapper} from '../../src/facade/promise';
|
import {PromiseWrapper} from '../facade/promise';
|
||||||
import {StringMapWrapper, ListWrapper} from '../../src/facade/collection';
|
import {StringMapWrapper, ListWrapper} from '../facade/collection';
|
||||||
import {ValidatorFn, AsyncValidatorFn} from './directives/validators';
|
import {ValidatorFn, AsyncValidatorFn} from './directives/validators';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import {OpaqueToken} from '@angular/core';
|
import {OpaqueToken} from '@angular/core';
|
||||||
import {isBlank, isPresent, isString} from '../../src/facade/lang';
|
import {isBlank, isPresent, isString} from '../facade/lang';
|
||||||
import {PromiseWrapper} from '../../src/facade/promise';
|
import {PromiseWrapper} from '../facade/promise';
|
||||||
import {ObservableWrapper} from '../../src/facade/async';
|
import {ObservableWrapper} from '../facade/async';
|
||||||
import {StringMapWrapper} from '../../src/facade/collection';
|
import {StringMapWrapper} from '../facade/collection';
|
||||||
import * as modelModule from './model';
|
import * as modelModule from './model';
|
||||||
import {ValidatorFn, AsyncValidatorFn} from './directives/validators';
|
import {ValidatorFn, AsyncValidatorFn} from './directives/validators';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Injectable, Inject, Optional} from '@angular/core';
|
import {Injectable, Inject, Optional} from '@angular/core';
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
|
|
||||||
import {LocationStrategy, APP_BASE_HREF} from './location_strategy';
|
import {LocationStrategy, APP_BASE_HREF} from './location_strategy';
|
||||||
import {Location} from './location';
|
import {Location} from './location';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Injectable, EventEmitter} from '@angular/core';
|
import {Injectable, EventEmitter} from '@angular/core';
|
||||||
import {ObservableWrapper} from '../../src/facade/async';
|
import {ObservableWrapper} from '../facade/async';
|
||||||
|
|
||||||
import {LocationStrategy} from './location_strategy';
|
import {LocationStrategy} from './location_strategy';
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {Injectable, Inject, Optional} from '@angular/core';
|
import {Injectable, Inject, Optional} from '@angular/core';
|
||||||
import {isBlank} from '../../src/facade/lang';
|
import {isBlank} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
import {PlatformLocation, UrlChangeListener} from './platform_location';
|
import {PlatformLocation, UrlChangeListener} from './platform_location';
|
||||||
import {LocationStrategy, APP_BASE_HREF} from './location_strategy';
|
import {LocationStrategy, APP_BASE_HREF} from './location_strategy';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {Pipe, Injectable, ChangeDetectorRef, OnDestroy, WrappedValue} from '@angular/core';
|
import {Pipe, Injectable, ChangeDetectorRef, OnDestroy, WrappedValue} from '@angular/core';
|
||||||
|
|
||||||
import {isBlank, isPresent, isPromise} from '../../src/facade/lang';
|
import {isBlank, isPresent, isPromise} from '../facade/lang';
|
||||||
import {ObservableWrapper, Observable, EventEmitter} from '../../src/facade/async';
|
import {ObservableWrapper, Observable, EventEmitter} from '../facade/async';
|
||||||
|
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,9 @@ import {
|
||||||
isString,
|
isString,
|
||||||
DateWrapper,
|
DateWrapper,
|
||||||
isBlank,
|
isBlank,
|
||||||
} from '../../src/facade/lang';
|
} from '../facade/lang';
|
||||||
import {DateFormatter} from '../../src/facade/intl';
|
import {DateFormatter} from '../facade/intl';
|
||||||
import {StringMapWrapper} from '../../src/facade/collection';
|
import {StringMapWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {PipeTransform, Pipe} from '@angular/core';
|
import {PipeTransform, Pipe} from '@angular/core';
|
||||||
import {isStringMap, StringWrapper, isPresent, RegExpWrapper} from '../../src/facade/lang';
|
import {isStringMap, StringWrapper, isPresent, RegExpWrapper} from '../facade/lang';
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
var interpolationExp: RegExp = RegExpWrapper.create('#');
|
var interpolationExp: RegExp = RegExpWrapper.create('#');
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {PipeTransform, Pipe} from '@angular/core';
|
import {PipeTransform, Pipe} from '@angular/core';
|
||||||
import {isStringMap} from '../../src/facade/lang';
|
import {isStringMap} from '../facade/lang';
|
||||||
import {StringMapWrapper} from '../../src/facade/collection';
|
import {StringMapWrapper} from '../facade/collection';
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Type, stringify} from '../../src/facade/lang';
|
import {Type, stringify} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
export class InvalidPipeArgumentException extends BaseException {
|
export class InvalidPipeArgumentException extends BaseException {
|
||||||
constructor(type: Type, value: Object) {
|
constructor(type: Type, value: Object) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {PipeTransform, Pipe} from '@angular/core';
|
import {PipeTransform, Pipe} from '@angular/core';
|
||||||
import {Json} from '../../src/facade/lang';
|
import {Json} from '../facade/lang';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {PipeTransform, Pipe} from '@angular/core';
|
import {PipeTransform, Pipe} from '@angular/core';
|
||||||
import {isString, isBlank} from '../../src/facade/lang';
|
import {isString, isBlank} from '../facade/lang';
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -7,9 +7,10 @@ import {
|
||||||
NumberWrapper,
|
NumberWrapper,
|
||||||
RegExpWrapper,
|
RegExpWrapper,
|
||||||
Type
|
Type
|
||||||
} from '../../src/facade/lang';
|
} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {NumberFormatter, NumberFormatStyle} from '../../src/facade/intl';
|
import {NumberFormatter, NumberFormatStyle} from '../facade/intl';
|
||||||
|
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
var defaultLocale: string = 'en-US';
|
var defaultLocale: string = 'en-US';
|
||||||
|
|
|
@ -7,7 +7,7 @@ import {
|
||||||
isFunction,
|
isFunction,
|
||||||
RegExpWrapper,
|
RegExpWrapper,
|
||||||
StringWrapper
|
StringWrapper
|
||||||
} from '../../src/facade/lang';
|
} from '../facade/lang';
|
||||||
|
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
import {PipeTransform, Pipe} from '@angular/core';
|
import {PipeTransform, Pipe} from '@angular/core';
|
||||||
|
import {isBlank, isString, isArray, StringWrapper} from '../facade/lang';
|
||||||
import {isBlank, isString, isArray, StringWrapper} from '../../src/facade/lang';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
|
||||||
|
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {PipeTransform, Pipe} from '@angular/core';
|
import {PipeTransform, Pipe} from '@angular/core';
|
||||||
import {isString, isBlank} from '../../src/facade/lang';
|
import {isString, isBlank} from '../facade/lang';
|
||||||
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
import {InvalidPipeArgumentException} from './invalid_pipe_argument_exception';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {ComponentResolver, Type} from '@angular/core';
|
import {ComponentResolver, Type} from '@angular/core';
|
||||||
import {assertionsEnabled} from '../src/facade/lang';
|
import {assertionsEnabled} from './facade/lang';
|
||||||
|
|
||||||
export * from './template_ast';
|
export * from './template_ast';
|
||||||
export {TEMPLATE_TRANSFORMS} from './template_parser';
|
export {TEMPLATE_TRANSFORMS} from './template_parser';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {NumberWrapper, StringWrapper, isPresent, resolveEnumToken} from '../../src/facade/lang';
|
import {NumberWrapper, StringWrapper, isPresent, resolveEnumToken} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
isWhitespace,
|
isWhitespace,
|
||||||
|
|
|
@ -11,7 +11,7 @@ import {
|
||||||
NumberWrapper,
|
NumberWrapper,
|
||||||
StringWrapper,
|
StringWrapper,
|
||||||
isPresent
|
isPresent
|
||||||
} from '../../src/facade/lang';
|
} from '../facade/lang';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
CssLexerMode,
|
CssLexerMode,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
|
|
||||||
export class AST {
|
export class AST {
|
||||||
visit(visitor: AstVisitor, context: any = null): any { return null; }
|
visit(visitor: AstVisitor, context: any = null): any { return null; }
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {SetWrapper} from '../../src/facade/collection';
|
import {SetWrapper} from '../facade/collection';
|
||||||
import {NumberWrapper, StringJoiner, StringWrapper, isPresent} from '../../src/facade/lang';
|
import {NumberWrapper, StringJoiner, StringWrapper, isPresent} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
export enum TokenType {
|
export enum TokenType {
|
||||||
Character,
|
Character,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {isBlank, isPresent, StringWrapper} from '../../src/facade/lang';
|
import {isBlank, isPresent, StringWrapper} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {
|
import {
|
||||||
Lexer,
|
Lexer,
|
||||||
EOF,
|
EOF,
|
||||||
|
|
|
@ -10,7 +10,7 @@ import {
|
||||||
htmlVisitAll
|
htmlVisitAll
|
||||||
} from '../html_ast';
|
} from '../html_ast';
|
||||||
|
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {isPresent, escape} from '../../src/facade/lang';
|
import {isPresent, escape} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A message extracted from a template.
|
* A message extracted from a template.
|
||||||
|
|
|
@ -10,7 +10,7 @@ import {
|
||||||
HtmlExpansionCaseAst,
|
HtmlExpansionCaseAst,
|
||||||
htmlVisitAll
|
htmlVisitAll
|
||||||
} from '../html_ast';
|
} from '../html_ast';
|
||||||
import {isPresent, isBlank, StringWrapper} from '../../src/facade/lang';
|
import {isPresent, isBlank, StringWrapper} from '../facade/lang';
|
||||||
import {Message} from './message';
|
import {Message} from './message';
|
||||||
import {Parser} from '../expression_parser/parser';
|
import {Parser} from '../expression_parser/parser';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {isPresent, isBlank, RegExpWrapper} from '../../src/facade/lang';
|
import {isPresent, isBlank, RegExpWrapper} from '../facade/lang';
|
||||||
import {HtmlAst, HtmlElementAst} from '../html_ast';
|
import {HtmlAst, HtmlElementAst} from '../html_ast';
|
||||||
import {Message, id} from './message';
|
import {Message, id} from './message';
|
||||||
import {HtmlParser} from '../html_parser';
|
import {HtmlParser} from '../html_parser';
|
||||||
|
|
|
@ -7,8 +7,8 @@ import {
|
||||||
createHostComponentMeta
|
createHostComponentMeta
|
||||||
} from './compile_metadata';
|
} from './compile_metadata';
|
||||||
|
|
||||||
import {BaseException} from '../src/facade/exceptions';
|
import {BaseException} from './facade/exceptions';
|
||||||
import {ListWrapper} from '../src/facade/collection';
|
import {ListWrapper} from './facade/collection';
|
||||||
import {StyleCompiler, StylesCompileResult} from './style_compiler';
|
import {StyleCompiler, StylesCompileResult} from './style_compiler';
|
||||||
import {ViewCompiler, ViewCompileResult} from './view_compiler/view_compiler';
|
import {ViewCompiler, ViewCompileResult} from './view_compiler/view_compiler';
|
||||||
import {TemplateParser} from './template_parser';
|
import {TemplateParser} from './template_parser';
|
||||||
|
@ -17,10 +17,7 @@ import {OutputEmitter} from './output/abstract_emitter';
|
||||||
import * as o from './output/output_ast';
|
import * as o from './output/output_ast';
|
||||||
import {XHR} from './xhr';
|
import {XHR} from './xhr';
|
||||||
|
|
||||||
import {
|
import {assetUrl} from './util';
|
||||||
MODULE_SUFFIX,
|
|
||||||
assetUrl,
|
|
||||||
} from './util';
|
|
||||||
|
|
||||||
var _COMPONENT_FACTORY_IDENTIFIER = new CompileIdentifierMetadata({
|
var _COMPONENT_FACTORY_IDENTIFIER = new CompileIdentifierMetadata({
|
||||||
name: 'ComponentFactory',
|
name: 'ComponentFactory',
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent, isBlank, isString, StringWrapper} from '../../src/facade/lang';
|
import {isPresent, isBlank, isString, StringWrapper} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import * as o from './output_ast';
|
import * as o from './output_ast';
|
||||||
|
|
||||||
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
var _SINGLE_QUOTE_ESCAPE_STRING_RE = /'|\\|\n|\r|\$/g;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import * as o from './output_ast';
|
import * as o from './output_ast';
|
||||||
import {
|
import {
|
||||||
EmitterVisitorContext,
|
EmitterVisitorContext,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent, isBlank, isArray} from '../../src/facade/lang';
|
import {isPresent, isBlank, isArray} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {CompileIdentifierMetadata} from '../compile_metadata';
|
import {CompileIdentifierMetadata} from '../compile_metadata';
|
||||||
import * as o from './output_ast';
|
import * as o from './output_ast';
|
||||||
import {
|
import {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {isPresent, isBlank, RegExpWrapper, Math} from '../../src/facade/lang';
|
import {isPresent, isBlank, RegExpWrapper, Math} from '../facade/lang';
|
||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
|
|
||||||
import {AssetUrl, ImportGenerator} from './path_util';
|
import {AssetUrl, ImportGenerator} from './path_util';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {AppElement, AppView, DebugAppView} from '../../core_private';
|
import {AppElement, AppView, DebugAppView} from '../../core_private';
|
||||||
|
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {InstanceFactory, DynamicInstance} from './output_interpreter';
|
import {InstanceFactory, DynamicInstance} from './output_interpreter';
|
||||||
|
|
||||||
export class InterpretiveAppViewInstanceFactory implements InstanceFactory {
|
export class InterpretiveAppViewInstanceFactory implements InstanceFactory {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {isString, isPresent, isBlank} from '../../src/facade/lang';
|
import {isString, isPresent, isBlank} from '../facade/lang';
|
||||||
import {CompileIdentifierMetadata} from '../compile_metadata';
|
import {CompileIdentifierMetadata} from '../compile_metadata';
|
||||||
|
|
||||||
//// Types
|
//// Types
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import {reflector} from '../../core_private';
|
import {reflector} from '../../core_private';
|
||||||
import {isPresent, IS_DART, FunctionWrapper} from '../../src/facade/lang';
|
import {isPresent, IS_DART, FunctionWrapper} from '../facade/lang';
|
||||||
import {ObservableWrapper} from '../../src/facade/async';
|
import {ObservableWrapper} from '../facade/async';
|
||||||
import {BaseException, unimplemented} from '../../src/facade/exceptions';
|
import {BaseException, unimplemented} from '../facade/exceptions';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import * as o from './output_ast';
|
import * as o from './output_ast';
|
||||||
import {debugOutputAstAsDart} from './dart_emitter';
|
import {debugOutputAstAsDart} from './dart_emitter';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {
|
import {
|
||||||
isPresent,
|
isPresent,
|
||||||
evalExpression,
|
evalExpression,
|
||||||
} from '../../src/facade/lang';
|
} from '../facade/lang';
|
||||||
import * as o from './output_ast';
|
import * as o from './output_ast';
|
||||||
import {EmitterVisitorContext} from './abstract_emitter';
|
import {EmitterVisitorContext} from './abstract_emitter';
|
||||||
import {AbstractJsEmitterVisitor} from './abstract_js_emitter';
|
import {AbstractJsEmitterVisitor} from './abstract_js_emitter';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {isPresent, isBlank, RegExpWrapper, Math} from '../../src/facade/lang';
|
import {isPresent, isBlank, RegExpWrapper, Math} from '../facade/lang';
|
||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
|
|
||||||
// asset:<package-name>/<realm>/<path-to-module>
|
// asset:<package-name>/<realm>/<path-to-module>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import * as o from './output_ast';
|
import * as o from './output_ast';
|
||||||
import {isPresent, isBlank, isArray} from '../../src/facade/lang';
|
import {isPresent, isBlank, isArray} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {CompileIdentifierMetadata} from '../compile_metadata';
|
import {CompileIdentifierMetadata} from '../compile_metadata';
|
||||||
import {
|
import {
|
||||||
OutputEmitter,
|
OutputEmitter,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {BaseException} from '@angular/core';
|
import {BaseException} from '@angular/core';
|
||||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank} from '../facade/lang';
|
||||||
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {Identifiers, identifierToken} from '../identifiers';
|
import {Identifiers, identifierToken} from '../identifiers';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {TemplateAst} from '../template_ast';
|
import {TemplateAst} from '../template_ast';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank} from '../facade/lang';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {Identifiers} from '../identifiers';
|
import {Identifiers} from '../identifiers';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {ViewType} from '../../core_private';
|
import {ViewType} from '../../core_private';
|
||||||
|
|
||||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank} from '../facade/lang';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {EventHandlerVars} from './constants';
|
import {EventHandlerVars} from './constants';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';
|
import {ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';
|
||||||
import {ChangeDetectorState, ViewType} from '../../core_private';
|
import {ChangeDetectorState, ViewType} from '../../core_private';
|
||||||
|
|
||||||
import {isBlank, resolveEnumToken} from '../../src/facade/lang';
|
import {isBlank, resolveEnumToken} from '../facade/lang';
|
||||||
import {CompileIdentifierMetadata} from '../compile_metadata';
|
import {CompileIdentifierMetadata} from '../compile_metadata';
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {Identifiers} from '../identifiers';
|
import {Identifiers} from '../identifiers';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isBlank, isPresent, StringWrapper} from '../../src/facade/lang';
|
import {isBlank, isPresent, StringWrapper} from '../facade/lang';
|
||||||
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import {EventHandlerVars, ViewProperties} from './constants';
|
import {EventHandlerVars, ViewProperties} from './constants';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {isBlank, isPresent, isArray} from '../../src/facade/lang';
|
import {isBlank, isPresent, isArray} from '../facade/lang';
|
||||||
|
|
||||||
import * as cdAst from '../expression_parser/ast';
|
import * as cdAst from '../expression_parser/ast';
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {EMPTY_STATE as EMPTY_ANIMATION_STATE, LifecycleHooks, isDefaultChangeDetectionStrategy, SecurityContext} from '../../core_private';
|
import {EMPTY_STATE as EMPTY_ANIMATION_STATE, LifecycleHooks, isDefaultChangeDetectionStrategy, SecurityContext} from '../../core_private';
|
||||||
|
|
||||||
import {isBlank, isPresent} from '../../src/facade/lang';
|
import {isBlank, isPresent} from '../facade/lang';
|
||||||
|
|
||||||
import * as cdAst from '../expression_parser/ast';
|
import * as cdAst from '../expression_parser/ast';
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {
|
import {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {
|
import {
|
||||||
ListWrapper,
|
ListWrapper,
|
||||||
} from '../../src/facade/collection';
|
} from '../facade/collection';
|
||||||
import {
|
import {
|
||||||
TemplateAst,
|
TemplateAst,
|
||||||
TemplateAstVisitor,
|
TemplateAstVisitor,
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import {ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';
|
import {ChangeDetectionStrategy, ViewEncapsulation} from '@angular/core';
|
||||||
import {isDefaultChangeDetectionStrategy, ViewType} from '../../core_private';
|
import {isDefaultChangeDetectionStrategy, ViewType} from '../../core_private';
|
||||||
|
|
||||||
import {isPresent, StringWrapper} from '../../src/facade/lang';
|
import {isPresent, StringWrapper} from '../facade/lang';
|
||||||
import {ListWrapper, StringMapWrapper, SetWrapper} from '../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper, SetWrapper} from '../facade/collection';
|
||||||
|
|
||||||
import * as o from '../output/output_ast';
|
import * as o from '../output/output_ast';
|
||||||
import {Identifiers, identifierToken} from '../identifiers';
|
import {Identifiers, identifierToken} from '../identifiers';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {looseIdentical, isPrimitive} from '../../src/facade/lang';
|
import {looseIdentical, isPrimitive} from '../facade/lang';
|
||||||
import {isListLikeIterable, areIterablesEqual} from '../../src/facade/collection';
|
import {isListLikeIterable, areIterablesEqual} from '../facade/collection';
|
||||||
|
|
||||||
export {looseIdentical} from '../../src/facade/lang';
|
export {looseIdentical} from '../facade/lang';
|
||||||
export var uninitialized: Object = /*@ts2dart_const*/ new Object();
|
export var uninitialized: Object = /*@ts2dart_const*/ new Object();
|
||||||
|
|
||||||
export function devModeEqual(a: any, b: any): boolean {
|
export function devModeEqual(a: any, b: any): boolean {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {isBlank} from '../../src/facade/lang';
|
import {isBlank} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Describes the current state of the change detector.
|
* Describes the current state of the change detector.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {BaseException} from '../../../src/facade/exceptions';
|
import {BaseException} from '../../facade/exceptions';
|
||||||
import {isListLikeIterable, iterateListLike} from '../../../src/facade/collection';
|
import {isListLikeIterable, iterateListLike} from '../../facade/collection';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
isBlank,
|
isBlank,
|
||||||
|
@ -8,7 +8,7 @@ import {
|
||||||
getMapKey,
|
getMapKey,
|
||||||
looseIdentical,
|
looseIdentical,
|
||||||
isArray
|
isArray
|
||||||
} from '../../../src/facade/lang';
|
} from '../../facade/lang';
|
||||||
|
|
||||||
import {ChangeDetectorRef} from '../change_detector_ref';
|
import {ChangeDetectorRef} from '../change_detector_ref';
|
||||||
import {IterableDiffer, IterableDifferFactory, TrackByFn} from './iterable_differs';
|
import {IterableDiffer, IterableDifferFactory, TrackByFn} from './iterable_differs';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {MapWrapper, StringMapWrapper} from '../../../src/facade/collection';
|
import {MapWrapper, StringMapWrapper} from '../../facade/collection';
|
||||||
import {stringify, looseIdentical, isJsObject, isBlank} from '../../../src/facade/lang';
|
import {stringify, looseIdentical, isJsObject, isBlank} from '../../facade/lang';
|
||||||
import {BaseException} from '../../../src/facade/exceptions';
|
import {BaseException} from '../../facade/exceptions';
|
||||||
import {ChangeDetectorRef} from '../change_detector_ref';
|
import {ChangeDetectorRef} from '../change_detector_ref';
|
||||||
import {KeyValueDiffer, KeyValueDifferFactory} from './keyvalue_differs';
|
import {KeyValueDiffer, KeyValueDifferFactory} from './keyvalue_differs';
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {isBlank, isPresent, getTypeNameForDebugging} from '../../../src/facade/lang';
|
import {isBlank, isPresent, getTypeNameForDebugging} from '../../facade/lang';
|
||||||
import {BaseException} from '../../../src/facade/exceptions';
|
import {BaseException} from '../../facade/exceptions';
|
||||||
import {ListWrapper} from '../../../src/facade/collection';
|
import {ListWrapper} from '../../facade/collection';
|
||||||
import {ChangeDetectorRef} from '../change_detector_ref';
|
import {ChangeDetectorRef} from '../change_detector_ref';
|
||||||
import {Provider, SkipSelfMetadata, OptionalMetadata} from '../../di';
|
import {Provider, SkipSelfMetadata, OptionalMetadata} from '../../di';
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {isBlank, isPresent} from '../../../src/facade/lang';
|
import {isBlank, isPresent} from '../../facade/lang';
|
||||||
import {BaseException} from '../../../src/facade/exceptions';
|
import {BaseException} from '../../facade/exceptions';
|
||||||
import {ListWrapper} from '../../../src/facade/collection';
|
import {ListWrapper} from '../../facade/collection';
|
||||||
import {ChangeDetectorRef} from '../change_detector_ref';
|
import {ChangeDetectorRef} from '../change_detector_ref';
|
||||||
import {Provider, SkipSelfMetadata, OptionalMetadata} from '../../di';
|
import {Provider, SkipSelfMetadata, OptionalMetadata} from '../../di';
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {Predicate, ListWrapper, MapWrapper} from '../../src/facade/collection';
|
import {Predicate, ListWrapper, MapWrapper} from '../facade/collection';
|
||||||
import {Injector} from '../di';
|
import {Injector} from '../di';
|
||||||
import {RenderDebugInfo} from '../render/api';
|
import {RenderDebugInfo} from '../render/api';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {Renderer, RootRenderer, RenderComponentType, RenderDebugInfo} from '../render/api';
|
import {Renderer, RootRenderer, RenderComponentType, RenderDebugInfo} from '../render/api';
|
||||||
import {
|
import {
|
||||||
DebugNode,
|
DebugNode,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {Type, stringify, isFunction} from '../../src/facade/lang';
|
import {Type, stringify, isFunction} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An interface that a function passed into {@link forwardRef} has to implement.
|
* An interface that a function passed into {@link forwardRef} has to implement.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {unimplemented} from '../../src/facade/exceptions';
|
import {unimplemented} from '../facade/exceptions';
|
||||||
|
|
||||||
const _THROW_IF_NOT_FOUND = /*@ts2dart_const*/ new Object();
|
const _THROW_IF_NOT_FOUND = /*@ts2dart_const*/ new Object();
|
||||||
export const THROW_IF_NOT_FOUND = /*@ts2dart_const*/ _THROW_IF_NOT_FOUND;
|
export const THROW_IF_NOT_FOUND = /*@ts2dart_const*/ _THROW_IF_NOT_FOUND;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {stringify} from '../../src/facade/lang';
|
import {stringify} from '../facade/lang';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A parameter metadata that specifies a dependency.
|
* A parameter metadata that specifies a dependency.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {normalizeBool, Type, isType, isBlank, isFunction, stringify} from '../../src/facade/lang';
|
import {normalizeBool, Type, isType, isBlank, isFunction, stringify} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Describes how the {@link Injector} should instantiate a given token.
|
* Describes how the {@link Injector} should instantiate a given token.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {stringify, isBlank} from '../../src/facade/lang';
|
import {stringify, isBlank} from '../facade/lang';
|
||||||
import {BaseException, WrappedException} from '../../src/facade/exceptions';
|
import {BaseException, WrappedException} from '../facade/exceptions';
|
||||||
import {ReflectiveKey} from './reflective_key';
|
import {ReflectiveKey} from './reflective_key';
|
||||||
import {ReflectiveInjector} from './reflective_injector';
|
import {ReflectiveInjector} from './reflective_injector';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {Provider} from './provider';
|
import {Provider} from './provider';
|
||||||
import {
|
import {
|
||||||
ResolvedReflectiveProvider,
|
ResolvedReflectiveProvider,
|
||||||
|
@ -13,8 +13,8 @@ import {
|
||||||
InstantiationError,
|
InstantiationError,
|
||||||
OutOfBoundsError
|
OutOfBoundsError
|
||||||
} from './reflective_exceptions';
|
} from './reflective_exceptions';
|
||||||
import {Type} from '../../src/facade/lang';
|
import {Type} from '../facade/lang';
|
||||||
import {BaseException, unimplemented} from '../../src/facade/exceptions';
|
import {BaseException, unimplemented} from '../facade/exceptions';
|
||||||
import {ReflectiveKey} from './reflective_key';
|
import {ReflectiveKey} from './reflective_key';
|
||||||
import {SelfMetadata, SkipSelfMetadata} from './metadata';
|
import {SelfMetadata, SkipSelfMetadata} from './metadata';
|
||||||
import {Injector, THROW_IF_NOT_FOUND} from './injector';
|
import {Injector, THROW_IF_NOT_FOUND} from './injector';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {stringify, isBlank} from '../../src/facade/lang';
|
import {stringify, isBlank} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {resolveForwardRef} from './forward_ref';
|
import {resolveForwardRef} from './forward_ref';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -3,8 +3,8 @@ import {
|
||||||
isBlank,
|
isBlank,
|
||||||
isPresent,
|
isPresent,
|
||||||
isArray,
|
isArray,
|
||||||
} from '../../src/facade/lang';
|
} from '../facade/lang';
|
||||||
import {MapWrapper, ListWrapper} from '../../src/facade/collection';
|
import {MapWrapper, ListWrapper} from '../facade/collection';
|
||||||
import {reflector} from '../reflection/reflection';
|
import {reflector} from '../reflection/reflection';
|
||||||
import {ReflectiveKey} from './reflective_key';
|
import {ReflectiveKey} from './reflective_key';
|
||||||
import {
|
import {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {Type, isPresent, isBlank} from '../../src/facade/lang';
|
import {Type, isPresent, isBlank} from '../facade/lang';
|
||||||
import {unimplemented} from '../../src/facade/exceptions';
|
import {unimplemented} from '../facade/exceptions';
|
||||||
import {ElementRef} from './element_ref';
|
import {ElementRef} from './element_ref';
|
||||||
import {ViewRef, ViewRef_} from './view_ref';
|
import {ViewRef, ViewRef_} from './view_ref';
|
||||||
import {AppElement} from './element';
|
import {AppElement} from './element';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {Type, isBlank, isString, stringify} from '../../src/facade/lang';
|
import {Type, isBlank, isString, stringify} from '../facade/lang';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {PromiseWrapper} from '../../src/facade/async';
|
import {PromiseWrapper} from '../facade/async';
|
||||||
import {reflector} from '../reflection/reflection';
|
import {reflector} from '../reflection/reflection';
|
||||||
import {ComponentFactory} from './component_factory';
|
import {ComponentFactory} from './component_factory';
|
||||||
import {Injectable} from '../di/decorators';
|
import {Injectable} from '../di/decorators';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {isPresent, isBlank} from '../../src/facade/lang';
|
import {isPresent, isBlank} from '../facade/lang';
|
||||||
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper} from '../facade/collection';
|
||||||
import {Injector} from '../di';
|
import {Injector} from '../di';
|
||||||
import {ViewType} from './view_type';
|
import {ViewType} from './view_type';
|
||||||
import {RenderDebugInfo} from '../render/api';
|
import {RenderDebugInfo} from '../render/api';
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import {ComponentResolver} from './component_resolver';
|
import {ComponentResolver} from './component_resolver';
|
||||||
import {Type, isPresent} from '../../src/facade/lang';
|
import {Type, isPresent} from '../facade/lang';
|
||||||
import {ComponentRef} from './component_factory';
|
import {ComponentRef} from './component_factory';
|
||||||
import {ViewContainerRef} from './view_container_ref';
|
import {ViewContainerRef} from './view_container_ref';
|
||||||
import {ResolvedReflectiveProvider} from '../di/reflective_provider';
|
import {ResolvedReflectiveProvider} from '../di/reflective_provider';
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
|
|
||||||
import {AppView} from './view';
|
import {AppView} from './view';
|
||||||
import {ViewType} from './view_type';
|
import {ViewType} from './view_type';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {BaseException, WrappedException} from '../../src/facade/exceptions';
|
import {BaseException, WrappedException} from '../facade/exceptions';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An error thrown if application changes model breaking the top-down data flow.
|
* An error thrown if application changes model breaking the top-down data flow.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {getSymbolIterator} from '../../src/facade/lang';
|
import {getSymbolIterator} from '../facade/lang';
|
||||||
import {Observable, EventEmitter} from '../../src/facade/async';
|
import {Observable, EventEmitter} from '../facade/async';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import { ComponentResolver } from './component_resolver';
|
import { ComponentResolver } from './component_resolver';
|
||||||
import { Type, isString, global } from '../../src/facade/lang';
|
import { Type, isString, global } from '../facade/lang';
|
||||||
import { ComponentFactory } from './component_factory';
|
import { ComponentFactory } from './component_factory';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {ListWrapper} from '../../src/facade/collection';
|
import {ListWrapper} from '../facade/collection';
|
||||||
import {unimplemented} from '../../src/facade/exceptions';
|
import {unimplemented} from '../facade/exceptions';
|
||||||
import {Injector} from '../di/injector';
|
import {Injector} from '../di/injector';
|
||||||
import {isPresent} from '../../src/facade/lang';
|
import {isPresent} from '../facade/lang';
|
||||||
import {wtfCreateScope, wtfLeave, WtfScopeFn} from '../profile/profile';
|
import {wtfCreateScope, wtfLeave, WtfScopeFn} from '../profile/profile';
|
||||||
|
|
||||||
import {AppElement} from './element';
|
import {AppElement} from './element';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {unimplemented} from '../../src/facade/exceptions';
|
import {unimplemented} from '../facade/exceptions';
|
||||||
import {ChangeDetectorRef} from '../change_detection/change_detector_ref';
|
import {ChangeDetectorRef} from '../change_detection/change_detector_ref';
|
||||||
import {AppView} from './view';
|
import {AppView} from './view';
|
||||||
import {ChangeDetectionStrategy} from '../change_detection/constants';
|
import {ChangeDetectionStrategy} from '../change_detection/constants';
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import {SanitizationService} from '../security';
|
import {SanitizationService} from '../security';
|
||||||
import {isBlank, isPresent, looseIdentical} from '../../src/facade/lang';
|
import {isBlank, isPresent, looseIdentical} from '../facade/lang';
|
||||||
import {ListWrapper, StringMapWrapper} from '../../src/facade/collection';
|
import {ListWrapper, StringMapWrapper} from '../facade/collection';
|
||||||
import {BaseException} from '../../src/facade/exceptions';
|
import {BaseException} from '../facade/exceptions';
|
||||||
import {AppElement} from './element';
|
import {AppElement} from './element';
|
||||||
import {ExpressionChangedAfterItHasBeenCheckedException} from './exceptions';
|
import {ExpressionChangedAfterItHasBeenCheckedException} from './exceptions';
|
||||||
import {devModeEqual} from '../change_detection/change_detection';
|
import {devModeEqual} from '../change_detection/change_detection';
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {stringify, isString, Type, StringWrapper} from '../../src/facade/lang';
|
import {stringify, isString, Type, StringWrapper} from '../facade/lang';
|
||||||
import {DependencyMetadata} from '../di/metadata';
|
import {DependencyMetadata} from '../di/metadata';
|
||||||
import {resolveForwardRef} from '../di/forward_ref';
|
import {resolveForwardRef} from '../di/forward_ref';
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import {isPresent, Type} from '../../src/facade/lang';
|
import {isPresent, Type} from '../facade/lang';
|
||||||
import {InjectableMetadata} from '../di/metadata';
|
import {InjectableMetadata} from '../di/metadata';
|
||||||
import {ViewEncapsulation} from './view';
|
import {ViewEncapsulation} from './view';
|
||||||
import {ChangeDetectionStrategy} from '../change_detection/constants';
|
import {ChangeDetectionStrategy} from '../change_detection/constants';
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue