Skip to content
This repository was archived by the owner on May 5, 2021. It is now read-only.

Commit e401c0e

Browse files
committed
[MOV] VNode: move AbstractNode into its own file
1 parent 9ba0e2e commit e401c0e

File tree

8 files changed

+662
-650
lines changed

8 files changed

+662
-650
lines changed

packages/core/src/VNodes/AbstractNode.ts

Lines changed: 649 additions & 0 deletions
Large diffs are not rendered by default.

packages/core/src/VNodes/AtomicNode.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { VNode, Predicate, AbstractNode } from './VNode';
1+
import { AbstractNode } from './AbstractNode';
2+
import { VNode, Predicate } from './VNode';
23
import { AtomicityError } from '../../../utils/src/errors';
34

45
/**

packages/core/src/VNodes/ContainerNode.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { VNode, Predicate, isLeaf, AbstractNode } from './VNode';
1+
import { AbstractNode } from './AbstractNode';
2+
import { VNode, Predicate, isLeaf } from './VNode';
23
import { ChildError } from '../../../utils/src/errors';
34

45
export class ContainerNode extends AbstractNode {

0 commit comments

Comments
 (0)