Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit 9b790f4

Browse files
committed
fix(compiler): Remove the Block/BlockFactory typedefs
1 parent 0c0a6b9 commit 9b790f4

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

lib/core_dom/view.dart

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,3 @@ class ViewPort {
5959
? placeholder
6060
: insertAfter.nodes[insertAfter.nodes.length - 1];
6161
}
62-
63-
// TODO remove once everybody is using the new names
64-
65-
class Block extends View {
66-
Block(List<dom.Node> nodes)
67-
: super(nodes);
68-
}
69-
70-
class BlockHole extends ViewPort {
71-
BlockHole(dom.Node placeholder, NgAnimate animate)
72-
: super(placeholder, animate);
73-
}

lib/core_dom/view_factory.dart

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -288,15 +288,3 @@ class ElementProbe {
288288

289289
ElementProbe(this.parent, this.element, this.injector, this.scope);
290290
}
291-
292-
// TODO remove once everybody is using the new names
293-
294-
class BlockFactory extends WalkingViewFactory {
295-
BlockFactory(templateElements, elementBinders, perf, expando)
296-
:super(templateElements, elementBinders, perf, expando);
297-
}
298-
299-
class BoundBlockFactory extends BoundViewFactory {
300-
BoundBlockFactory(ViewFactory viewFactory, Injector injector)
301-
: super(viewFactory, injector);
302-
}

0 commit comments

Comments
 (0)