From 76e6214b9b99095e6ac429155c9ecf05f036796a Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 3 Jun 2016 10:47:55 -0700 Subject: [PATCH] chore: remove angular_entry point (#8975) this is obsolete and no longer needed. it wasn't part of the public api so it's ok to remove. --- .../@angular/core/src/angular_entrypoint.dart | 23 ------------------- .../@angular/core/src/angular_entrypoint.ts | 3 --- 2 files changed, 26 deletions(-) delete mode 100644 modules/@angular/core/src/angular_entrypoint.dart delete mode 100644 modules/@angular/core/src/angular_entrypoint.ts diff --git a/modules/@angular/core/src/angular_entrypoint.dart b/modules/@angular/core/src/angular_entrypoint.dart deleted file mode 100644 index 80faed2786..0000000000 --- a/modules/@angular/core/src/angular_entrypoint.dart +++ /dev/null @@ -1,23 +0,0 @@ -library angular2.src.core.angular_entrypoint; - -/** - * Marks a function or method as an Angular 2 entrypoint. Only necessary in Dart code. - * - * The optional `name` parameter will be reflected in logs when the entry point is processed. - * - * See [the wiki][] for detailed documentation. - * [the wiki]: https://github.com/angular/angular/wiki/Angular-2-Dart-Transformer#entry_points - * - * ## Example - * - * ``` - * @AngularEntrypoint("name-for-debug") - * void main() { - * bootstrap(MyComponent); - * } - * ``` - */ -class AngularEntrypoint { - final String name; - const AngularEntrypoint([this.name]); -} diff --git a/modules/@angular/core/src/angular_entrypoint.ts b/modules/@angular/core/src/angular_entrypoint.ts deleted file mode 100644 index 7887b7c435..0000000000 --- a/modules/@angular/core/src/angular_entrypoint.ts +++ /dev/null @@ -1,3 +0,0 @@ -import 'angular2/src/facade/lang'; // kept so that Tools know this is an ES6 file - -// TS does not have AngularEntrypoint