-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 555285c
Showing
265 changed files
with
25,312 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dist | ||
node_modules | ||
package | ||
*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@@ -0,0 +1,10 @@ | ||
spec | ||
webpack.config.js | ||
tsconfig.json | ||
src/**/*.js | ||
|
||
.vscode | ||
.babelrc | ||
.c8rc.json | ||
.eslintignore | ||
.eslintrc.json | ||
.project | ||
cspell.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"files": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# JavaScript + TypeScript Target Runtime for ANTLR 4 | ||
|
||
[](https://www.npmjs.com/package/antlr4) | ||
[](https://www.npmjs.com/package/antlr4) | ||
[](https://www.npmjs.com/package/antlr4) | ||
|
||
This package is a fork of the official ANTLR4 JavaScript runtime, with the following changes: | ||
|
||
- Much improved TypeScript type definitions. | ||
- XPath implementation. | ||
- Vocabulary implementation. | ||
- Complete Interval implementation. | ||
- Consistent formatting (indentation, semicolons, spaces, etc.). | ||
- Numerous smaller fixes (`null` instead of `undefined` and others). | ||
- Smaller node package (no test specs or other unnecessary files). | ||
|
||
It is a drop-in replacement of the `antlr4` package, and can be used as such. For more information about ANTLR see www.antlr.org. More details about the JavaScript/TypeScript target can be found [here](https://github.com/antlr/antlr4/blob/master/doc/javascript-target.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"version": "0.2", | ||
"ignorePaths": [ | ||
".eslintrc.json" | ||
], | ||
"dictionaryDefinitions": [], | ||
"dictionaries": [], | ||
"words": [ | ||
"ANTLR" | ||
], | ||
"ignoreWords": [ | ||
"AMBIG", | ||
"Harwell", | ||
"interp", | ||
"localctx", | ||
"precpred", | ||
"recog", | ||
"sempred", | ||
"ttype" | ||
], | ||
"import": [] | ||
} |
Oops, something went wrong.