mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
9 lines
348 B
Dart
9 lines
348 B
Dart
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 {}
|