UNPKG

antlr4-runtime

Version:

JavaScript runtime for ANTLR4

70 lines (61 loc) 2.21 kB
/* Copyright (c) 2012-2022 The ANTLR Project. All rights reserved. * Use of this file is governed by the BSD 3-clause license that * can be found in the LICENSE.txt file in the project root. */ import arrayToString from "../utils/arrayToString.js"; /** * A DFA walker that knows how to dump them to serialized strings. */ export default class DFASerializer { constructor(dfa, literalNames, symbolicNames) { this.dfa = dfa; this.literalNames = literalNames || []; this.symbolicNames = symbolicNames || []; } toString() { if(this.dfa.s0 === null) { return null; } let buf = ""; const states = this.dfa.sortedStates(); for(let i=0; i<states.length; i++) { const s = states[i]; if(s.edges!==null) { const n = s.edges.length; for(let j=0;j<n;j++) { const t = s.edges[j] || null; if(t!==null && t.stateNumber !== 0x7FFFFFFF) { buf = buf.concat(this.getStateString(s)); buf = buf.concat("-"); buf = buf.concat(this.getEdgeLabel(j)); buf = buf.concat("->"); buf = buf.concat(this.getStateString(t)); buf = buf.concat('\n'); } } } } return buf.length===0 ? null : buf; } getEdgeLabel(i) { if (i===0) { return "EOF"; } else if(this.literalNames !==null || this.symbolicNames!==null) { return this.literalNames[i-1] || this.symbolicNames[i-1]; } else { return String.fromCharCode(i-1); } } getStateString(s) { const baseStateStr = ( s.isAcceptState ? ":" : "") + "s" + s.stateNumber + ( s.requiresFullContext ? "^" : ""); if(s.isAcceptState) { if (s.predicates !== null) { return baseStateStr + "=>" + arrayToString(s.predicates); } else { return baseStateStr + "=>" + s.prediction.toString(); } } else { return baseStateStr; } } }