From ab56be46e14f45bd068201d0fb5cca0697ba182f Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Sat, 30 Apr 2016 12:30:00 -0700 Subject: [PATCH] chore: move static_reflector into compiler_cli Most of the bugs discovered so far in the offline compiler were related to the StaticReflector. As it was part of angular2 core, it was hard to update. Moving it into the compiler_cli allows to release more often until the compiler_cli gets more stable. Note: Moving the unit test next to the sources is the simplest option for now in terms of build setup. Note: This commit only does the move. The next commit updates the build to run it again. --- .../src/compiler => tools/compiler_cli/src}/static_reflector.ts | 0 .../compiler => tools/compiler_cli/src}/static_reflector_spec.ts | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {modules/angular2/src/compiler => tools/compiler_cli/src}/static_reflector.ts (100%) rename {modules/angular2/test/compiler => tools/compiler_cli/src}/static_reflector_spec.ts (100%) diff --git a/modules/angular2/src/compiler/static_reflector.ts b/tools/compiler_cli/src/static_reflector.ts similarity index 100% rename from modules/angular2/src/compiler/static_reflector.ts rename to tools/compiler_cli/src/static_reflector.ts diff --git a/modules/angular2/test/compiler/static_reflector_spec.ts b/tools/compiler_cli/src/static_reflector_spec.ts similarity index 100% rename from modules/angular2/test/compiler/static_reflector_spec.ts rename to tools/compiler_cli/src/static_reflector_spec.ts