All files / src/storages/control-flow ControlFlowStorage.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12    1x   1x   8140x   8140x      
import { ICustomNode } from '../../interfaces/custom-nodes/ICustomNode';
 
import { MapStorage } from '../MapStorage';
 
export class ControlFlowStorage extends MapStorage <ICustomNode> {
    constructor () {
        super();
 
        this.initialize();
    }
}