UNPKG

477 BJavaScriptView Raw
1import RRElement from './rrelement';
2export default class RRBreak extends RRElement {
3
4 constructor() {
5 super();
6 }
7
8 computeLayoutInfo(rrDiagramToSVG) {
9 throw "This element must not be nested and should have been processed before entering generation.";
10 }
11
12 toSVG(rrDiagramToSVG, xOffset, yOffset, svgContent) {
13 throw "This element must not be nested and should have been processed before entering generation.";
14 }
15
16}