In the transformer unit tests, we previously used a mock directive annotation. This update substitutes the actual Angular2 directive annotations. Closes #706
9 lines
129 B
Dart
9 lines
129 B
Dart
library foo;
|
|
|
|
const preDefinedSelector = 'soup';
|
|
|
|
class MyContext {
|
|
final String selector;
|
|
const MyContext(this.selector);
|
|
}
|