From 8c05696ed4c2ec77abb921b6c3c73e6589a3efc0 Mon Sep 17 00:00:00 2001 From: parrt Date: Wed, 26 Apr 2017 09:56:31 -0700 Subject: [PATCH] update js doc --- doc/javascript-target.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/javascript-target.md b/doc/javascript-target.md index fc3c22e54..144aa5f81 100644 --- a/doc/javascript-target.md +++ b/doc/javascript-target.md @@ -154,6 +154,10 @@ In order to execute this listener, you would simply add the following lines to t antlr4.tree.ParseTreeWalker.DEFAULT.walk(printer, tree); ``` +## What about TypeScript? + +We currently do not have a TypeScript target, but Sam Harwell is [working on a port](https://github.com/tunnelvisionlabs/antlr4ts). [Here](https://github.com/ChuckJonas/extract-interface-ts) is Section 4.3 of [ANTLR 4 book](http://a.co/5jUJYmh) converted to typescript. + ## How do I integrate my parser with ACE editor? This specific task is described in this [dedicated page](ace-javascript-target.md).