antlr4-autosuggest
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/antlr4-autosuggest package

0.0.28 • Public • Published

JavaScript autosuggest engine for ANTLR4 grammars

Oran Epelbaum

npm version Codacy Badge

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):

  • RAPID7: How to Implement ANTLR4 Autocomplete
  • TOMASETTI: Building autocompletion for an editor based on ANTLR by Federico Tomassetti

Package Sidebar

Install

npm i antlr4-autosuggest

Weekly Downloads

59

Version

0.0.28

License

MIT

Unpacked Size

35.8 kB

Total Files

4

Last publish

Collaborators

  • oranoran