| Index: third_party/pkg/angular/lib/core/parser/parser.dart
|
| ===================================================================
|
| --- third_party/pkg/angular/lib/core/parser/parser.dart (revision 33054)
|
| +++ third_party/pkg/angular/lib/core/parser/parser.dart (working copy)
|
| @@ -10,14 +10,13 @@
|
| typedef LocalsWrapper(context, locals);
|
| typedef Getter(self);
|
| typedef Setter(self, value);
|
| -typedef BoundGetter([locals]);
|
| -typedef BoundSetter(value, [locals]);
|
|
|
| /// Placeholder for DI. The parser you are looking for is [DynamicParser].
|
| abstract class Parser<T> {
|
| T call(String input);
|
| }
|
|
|
| +
|
| abstract class ParserBackend<T> {
|
| bool isAssignable(T expression);
|
|
|
|
|