Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions lib/core/annotation_src.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,25 +73,21 @@ abstract class Directive {
* * [TRANSCLUDE_CHILDREN]
* * [IGNORE_CHILDREN]
*/
@deprecated
final String children;

/**
* Compile the child nodes of the element. This is the default.
*/
@deprecated
static const String COMPILE_CHILDREN = 'compile';
/**
* Compile the child nodes for transclusion and makes available
* [BoundViewFactory], [ViewFactory] and [ViewPort] for injection.
*/
@deprecated
static const String TRANSCLUDE_CHILDREN = 'transclude';
/**
* Do not compile/visit the child nodes. Angular markup on descendant nodes
* will not be processed.
*/
@deprecated
static const String IGNORE_CHILDREN = 'ignore';

/**
Expand Down Expand Up @@ -306,7 +302,6 @@ class Component extends Directive {
* published into. This allows the expressions in the template to be referring
* to controller instance and its properties.
*/
@deprecated
final String publishAs;

/**
Expand Down Expand Up @@ -482,7 +477,6 @@ abstract class DirectiveAnnotation {
* The value of the attribute to be treated as a string, equivalent
* to `@` specification.
*/
@deprecated
class NgAttr extends DirectiveAnnotation {
final _mappingSpec = '@';
const NgAttr(String attrName) : super(attrName);
Expand All @@ -494,7 +488,6 @@ class NgAttr extends DirectiveAnnotation {
* The value of the attribute to be treated as a one-way expression, equivalent
* to `=>` specification.
*/
@deprecated
class NgOneWay extends DirectiveAnnotation {
final _mappingSpec = '=>';
const NgOneWay(String attrName) : super(attrName);
Expand All @@ -506,7 +499,6 @@ class NgOneWay extends DirectiveAnnotation {
* The value of the attribute to be treated as a one time one-way expression,
* equivalent to `=>!` specification.
*/
@deprecated
class NgOneWayOneTime extends DirectiveAnnotation {
final _mappingSpec = '=>!';
const NgOneWayOneTime(String attrName) : super(attrName);
Expand All @@ -518,7 +510,6 @@ class NgOneWayOneTime extends DirectiveAnnotation {
* The value of the attribute to be treated as a two-way expression,
* equivalent to `<=>` specification.
*/
@deprecated
class NgTwoWay extends DirectiveAnnotation {
final _mappingSpec = '<=>';
const NgTwoWay(String attrName) : super(attrName);
Expand All @@ -530,7 +521,6 @@ class NgTwoWay extends DirectiveAnnotation {
* The value of the attribute to be treated as a callback expression,
* equivalent to `&` specification.
*/
@deprecated
class NgCallback extends DirectiveAnnotation {
final _mappingSpec = '&';
const NgCallback(String attrName) : super(attrName);
Expand Down