@@ -68,25 +68,21 @@ abstract class Directive {
68
68
* * [TRANSCLUDE_CHILDREN]
69
69
* * [IGNORE_CHILDREN]
70
70
*/
71
- @deprecated
72
71
final String children;
73
72
74
73
/**
75
74
* Compile the child nodes of the element. This is the default.
76
75
*/
77
- @deprecated
78
76
static const String COMPILE_CHILDREN = 'compile' ;
79
77
/**
80
78
* Compile the child nodes for transclusion and makes available
81
79
* [BoundViewFactory] , [ViewFactory] and [ViewPort] for injection.
82
80
*/
83
- @deprecated
84
81
static const String TRANSCLUDE_CHILDREN = 'transclude' ;
85
82
/**
86
83
* Do not compile/visit the child nodes. Angular markup on descendant nodes
87
84
* will not be processed.
88
85
*/
89
- @deprecated
90
86
static const String IGNORE_CHILDREN = 'ignore' ;
91
87
92
88
/**
@@ -297,7 +293,6 @@ class Component extends Directive {
297
293
* published into. This allows the expressions in the template to be referring
298
294
* to controller instance and its properties.
299
295
*/
300
- @deprecated
301
296
final String publishAs;
302
297
303
298
/**
@@ -473,7 +468,6 @@ abstract class DirectiveAnnotation {
473
468
* The value of the attribute to be treated as a string, equivalent
474
469
* to `@` specification.
475
470
*/
476
- @deprecated
477
471
class NgAttr extends DirectiveAnnotation {
478
472
final _mappingSpec = '@' ;
479
473
const NgAttr (String attrName) : super (attrName);
@@ -485,7 +479,6 @@ class NgAttr extends DirectiveAnnotation {
485
479
* The value of the attribute to be treated as a one-way expression, equivalent
486
480
* to `=>` specification.
487
481
*/
488
- @deprecated
489
482
class NgOneWay extends DirectiveAnnotation {
490
483
final _mappingSpec = '=>' ;
491
484
const NgOneWay (String attrName) : super (attrName);
@@ -497,7 +490,6 @@ class NgOneWay extends DirectiveAnnotation {
497
490
* The value of the attribute to be treated as a one time one-way expression,
498
491
* equivalent to `=>!` specification.
499
492
*/
500
- @deprecated
501
493
class NgOneWayOneTime extends DirectiveAnnotation {
502
494
final _mappingSpec = '=>!' ;
503
495
const NgOneWayOneTime (String attrName) : super (attrName);
@@ -509,7 +501,6 @@ class NgOneWayOneTime extends DirectiveAnnotation {
509
501
* The value of the attribute to be treated as a two-way expression,
510
502
* equivalent to `<=>` specification.
511
503
*/
512
- @deprecated
513
504
class NgTwoWay extends DirectiveAnnotation {
514
505
final _mappingSpec = '<=>' ;
515
506
const NgTwoWay (String attrName) : super (attrName);
@@ -521,7 +512,6 @@ class NgTwoWay extends DirectiveAnnotation {
521
512
* The value of the attribute to be treated as a callback expression,
522
513
* equivalent to `&` specification.
523
514
*/
524
- @deprecated
525
515
class NgCallback extends DirectiveAnnotation {
526
516
final _mappingSpec = '&' ;
527
517
const NgCallback (String attrName) : super (attrName);
0 commit comments