7eae3a63bf
R=mathias@chromium.org Bug: v8:8880 Change-Id: I6954ede6669f19d970ad4257fa4699da2db62fd3 Reviewed-on: https://chromium-review.googlesource.com/c/1495982 Reviewed-by: Mathias Bynens <mathias@chromium.org> Commit-Queue: Simon Zünd <szuend@chromium.org> Cr-Commit-Position: refs/heads/master@{#59969}
1006 B
1006 B
Torque support
This extension adds language support for the Torque language used in V8.
Installation
Since the extension is currently not published to the marketplace, the easiest way to install the extension is to symlink it to your local extension directory:
ln -s $V8/tools/torque/vscode-torque $HOME/.vscode/extensions/vscode-torque
Additionally, for advanced language server features, the extension needs to be built locally (the syntax highlighting does not require this step). The following needs to be run everytime the extension is updated:
cd $V8/tools/torque/vscode-torque
npm install
Language server
The language server is not built by default. To build the language server manually:
autoninja -C <output dir> torque-language-server
The default directory where the extension looks for the executable is "out/x64.release",
but the absolute path to the executable can be configured with the torque.ls.executable
setting.