| Index: third_party/pkg/angular/lib/core/parser/parser.dart
|
| diff --git a/third_party/pkg/angular/lib/core/parser/parser.dart b/third_party/pkg/angular/lib/core/parser/parser.dart
|
| index 74fbb09681ff47575b81451a2f9934e52091e101..0e8af1a811d045adf957312da0f0b5c52faa54ab 100644
|
| --- a/third_party/pkg/angular/lib/core/parser/parser.dart
|
| +++ b/third_party/pkg/angular/lib/core/parser/parser.dart
|
| @@ -10,13 +10,14 @@ export 'package:angular/core/parser/static_parser.dart'
|
| 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);
|
|
|
|
|