File tree Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Expand file tree Collapse file tree 5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1010 * used by Angular to resolve dependencies.
1111 *
1212 */
13- export * from './src/core/annotations/annotations' ;
13+
14+ /** decorator wrappers for all annotations. This is an empty file for dart. */
1415export * from './src/core/annotations/decorators' ;
16+
17+ /** raw annotation classes */
18+ export * from './src/core/annotations/annotations' ;
19+ export * from './src/core/annotations/view' ;
20+ export * from './src/core/annotations/visibility' ;
21+ export * from './src/core/annotations/di' ;
Original file line number Diff line number Diff line change 44 * @description
55 * Define angular core API here.
66 */
7- export * from './src/core/annotations/visibility' ;
8- export * from './src/core/annotations/view' ;
97export * from './src/core/application' ;
108export * from './src/core/application_tokens' ;
11- export * from './src/core/annotations/di' ;
129export * from './src/core/compiler/query_list' ;
1310
1411export * from './src/core/compiler/compiler' ;
Original file line number Diff line number Diff line change 11library angular2.core.decorators;
22
3- export '../annotations_impl/annotations.dart' ;
4- export '../annotations_impl/visibility.dart' ;
5- export '../annotations_impl/view.dart' ;
6- export '../annotations_impl/di.dart' ;
3+ /** This file is intentionally empty as Dart does not have decorators. */
Original file line number Diff line number Diff line change 1- import { Directive , Ancestor } from 'angular2/src/core/ annotations/decorators ' ;
2- import { Optional } from 'angular2/src/di/decorators ' ;
1+ import { Directive , Ancestor } from 'angular2/annotations' ;
2+ import { Optional } from 'angular2/di ' ;
33import { ElementRef } from 'angular2/src/core/compiler/element_ref' ;
44import { Renderer } from 'angular2/src/render/api' ;
55import {
Original file line number Diff line number Diff line change 1- import { Directive } from 'angular2/src/core/ annotations/decorators ' ;
1+ import { Directive } from 'angular2/annotations' ;
22
33import { Validators } from './validators' ;
44import { ControlDirective } from './directives' ;
You can’t perform that action at this time.
0 commit comments