UNPKG

@yworks/antlr4

Version:

Modified JavaScript runtime for ANTLR4

80 lines (68 loc) 2.52 kB
/* Copyright (c) 2012-2017 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. */ // A DFA walker that knows how to dump them to serialized strings.#/ function DFASerializer(dfa, literalNames, symbolicNames) { this.dfa = dfa; this.literalNames = literalNames || []; this.symbolicNames = symbolicNames || []; return this; } DFASerializer.prototype.toString = function() { if(this.dfa.s0 === null) { return null; } var buf = ""; var states = this.dfa.sortedStates(); for(var i=0;i<states.length;i++) { var s = states[i]; if(s.edges!==null) { var n = s.edges.length; for(var j=0;j<n;j++) { var 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; }; DFASerializer.prototype.getEdgeLabel = function(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); } }; DFASerializer.prototype.getStateString = function(s) { var baseStateStr = ( s.isAcceptState ? ":" : "") + "s" + s.stateNumber + ( s.requiresFullContext ? "^" : ""); if(s.isAcceptState) { if (s.predicates !== null) { return baseStateStr + "=>" + s.predicates.toString(); } else { return baseStateStr + "=>" + s.prediction.toString(); } } else { return baseStateStr; } }; function LexerDFASerializer(dfa) { DFASerializer.call(this, dfa, null); return this; } LexerDFASerializer.prototype = Object.create(DFASerializer.prototype); LexerDFASerializer.prototype.constructor = LexerDFASerializer; LexerDFASerializer.prototype.getEdgeLabel = function(i) { return "'" + String.fromCharCode(i) + "'"; }; exports.DFASerializer = DFASerializer; exports.LexerDFASerializer = LexerDFASerializer;