antlr4-autosuggest
v0.0.28
Published
Autosuggest engine for ANTLR4 grammars
Downloads
491
Maintainers
Readme
JavaScript autosuggest engine for ANTLR4 grammars
Oran Epelbaum
Getting the antlr-autosuggest JavaScript Module
npm install --save antlr4-autosuggest
Example
// Load the lexer and parser modules generated by antlr4
const lexerModule = require('./myGrammarLexer');
const parserModule = require('./myGrammarParser');
// Create an autosuggester, providing it with the lexer and parser classes
const autosuggest = require('antlr4-autosuggest');
const autosuggester = autosuggest.autosuggester(lexerModule.myGrammarLexer, parserModule.myGrammarParser);
// Suggest completions for the string "ABC"
let suggestions = autosuggester.autosuggest("ABC");
How It Works
See explanation in the Java project.
Building
- Clone the antlr-autosuggest-js repository.
- Install Node and NPM (tested with 8)
- Run the command
npm test
.
Credits
Written by Oran Epelbaum at Intigua. When starting to write this, studied the following blog posts (though much has changed since):