refactor(compiler): make static reflector work

Also adjust `RuntimeMetadataResolver` to
be able to use it. 

Also rename `RuntimeMetadataResolver` into `CompileMetadataResolver`.
Closes #8313
This commit is contained in:
Alex Eagle
2016-02-18 10:53:21 -08:00
committed by Tobias Bosch
parent 769835e53e
commit 70b23ae2ca
8 changed files with 447 additions and 512 deletions

View File

@ -0,0 +1,9 @@
library angular2.test.compiler.metadata_resolver_fixture;
import "package:angular2/core.dart" show Component;
// This component is not actually malformed; this fixture is here to
// make Dart not complain about a missing import for a test case that only
// matters in an JavaScript app.
@Component(template: "")
class MalformedStylesComponent {}