297 B12 lines
Blame
1/**
2 * ZenUML manage parsing internally. It uses Antlr4 to parse the DSL.
3 * The parser is defined in https://github.com/ZenUml/vue-sequence/blob/main/src/parser/index.js
4 *
5 * This is a dummy parser that satisfies the mermaid API logic.
6 */
7export default {
8 parse: () => {
9 // no op
10 },
11};
12