chore(docs): added more docs for core.ts
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import {isPresent, isBlank, RegExpWrapper} from 'angular2/src/facade/lang';
|
||||
import {Promise} from 'angular2/src/facade/async';
|
||||
import {List, Map, MapWrapper, StringMap, StringMapWrapper} from 'angular2/src/facade/collection';
|
||||
import {ASTWithSource} from 'angular2/change_detection';
|
||||
import {ASTWithSource} from 'angular2/src/change_detection/change_detection';
|
||||
|
||||
/**
|
||||
* General notes:
|
||||
@ -354,7 +354,7 @@ export class RenderViewWithFragments {
|
||||
}
|
||||
|
||||
/**
|
||||
* Abstract reference to the element which can be marshaled across web-worker boundry.
|
||||
* Abstract reference to the element which can be marshaled across web-worker boundary.
|
||||
*
|
||||
* This interface is used by the Renderer API.
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {List} from 'angular2/src/facade/collection';
|
||||
import {Parser} from 'angular2/change_detection';
|
||||
import {Parser} from 'angular2/src/change_detection/change_detection';
|
||||
import {ViewDefinition} from '../../api';
|
||||
import {CompileStep} from './compile_step';
|
||||
import {PropertyBindingParser} from './property_binding_parser';
|
||||
|
@ -16,7 +16,7 @@ import {
|
||||
import {CompilePipeline} from './compile_pipeline';
|
||||
import {ViewLoader} from 'angular2/src/render/dom/compiler/view_loader';
|
||||
import {CompileStepFactory, DefaultStepFactory} from './compile_step_factory';
|
||||
import {Parser} from 'angular2/change_detection';
|
||||
import {Parser} from 'angular2/src/change_detection/change_detection';
|
||||
import {ShadowDomStrategy} from '../shadow_dom/shadow_dom_strategy';
|
||||
import * as pvm from '../view/proto_view_merger';
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {isPresent, isBlank, BaseException, StringWrapper} from 'angular2/src/facade/lang';
|
||||
import {List, MapWrapper, ListWrapper} from 'angular2/src/facade/collection';
|
||||
import {DOM} from 'angular2/src/dom/dom_adapter';
|
||||
import {Parser} from 'angular2/change_detection';
|
||||
import {Parser} from 'angular2/src/change_detection/change_detection';
|
||||
|
||||
import {SelectorMatcher, CssSelector} from 'angular2/src/render/dom/compiler/selector';
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {isPresent, RegExpWrapper, StringWrapper} from 'angular2/src/facade/lang';
|
||||
import {MapWrapper} from 'angular2/src/facade/collection';
|
||||
|
||||
import {Parser} from 'angular2/change_detection';
|
||||
import {Parser} from 'angular2/src/change_detection/change_detection';
|
||||
|
||||
import {CompileStep} from './compile_step';
|
||||
import {CompileElement} from './compile_element';
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {RegExpWrapper, StringWrapper, isPresent} from 'angular2/src/facade/lang';
|
||||
import {DOM} from 'angular2/src/dom/dom_adapter';
|
||||
|
||||
import {Parser} from 'angular2/change_detection';
|
||||
import {Parser} from 'angular2/src/change_detection/change_detection';
|
||||
|
||||
import {CompileStep} from './compile_step';
|
||||
import {CompileElement} from './compile_element';
|
||||
|
@ -1,7 +1,7 @@
|
||||
import {isBlank, isPresent, BaseException, StringWrapper} from 'angular2/src/facade/lang';
|
||||
import {DOM} from 'angular2/src/dom/dom_adapter';
|
||||
import {MapWrapper, ListWrapper} from 'angular2/src/facade/collection';
|
||||
import {Parser} from 'angular2/change_detection';
|
||||
import {Parser} from 'angular2/src/change_detection/change_detection';
|
||||
|
||||
import {CompileStep} from './compile_step';
|
||||
import {CompileElement} from './compile_element';
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {AST} from 'angular2/change_detection';
|
||||
import {AST} from 'angular2/src/change_detection/change_detection';
|
||||
import {List, ListWrapper} from 'angular2/src/facade/collection';
|
||||
import {isPresent} from 'angular2/src/facade/lang';
|
||||
|
||||
|
@ -16,7 +16,7 @@ import {
|
||||
AccessMember,
|
||||
LiteralArray,
|
||||
ImplicitReceiver
|
||||
} from 'angular2/change_detection';
|
||||
} from 'angular2/src/change_detection/change_detection';
|
||||
|
||||
import {DomProtoView, DomProtoViewRef, resolveInternalDomProtoView} from './proto_view';
|
||||
import {DomElementBinder, Event, HostAction} from './element_binder';
|
||||
|
Reference in New Issue
Block a user