little update

This commit is contained in:
Felix Roos 2023-12-29 21:27:54 +01:00
parent 756f37e265
commit 64dbdd97ba
4 changed files with 17 additions and 3 deletions

View File

@ -23,4 +23,5 @@ dist-ssr
*.sln
*.sw?
public/tree-sitter.wasm
public/tree-sitter.wasm
public/tree-sitter-haskell.wasm

View File

@ -23,3 +23,9 @@ I've tried to generate it using <https://www.npmjs.com/package/tree-sitter-haske
It seems a lot of work has gone into this package in <https://github.com/tree-sitter/tree-sitter-haskell/pull/29>, without a new npm package version being released, which is why I've written this comment: <https://github.com/tree-sitter/tree-sitter-haskell/pull/29#issuecomment-1865951565>.
So either someone authorized releases a new version of the package or we might need to pull the changes and try to build it from the tree-sitter master branch.
## Update 1
I've managed to make it work by using [this tree-sitter-haskell.wasm](https://github.com/tree-sitter/tree-sitter-haskell/blob/master/tree-sitter-haskell.wasm), instead of using the version on npm! Make sure both `tree-sitter.wasm` and `tree-sitter-haskell.wasm` are in the public dir, then run `pnpm dev`. The console should log a tree sitter AST string.
Next step: understand how the ast works to then transform it into JS function calls!

View File

@ -2,6 +2,10 @@ import Parser from 'web-tree-sitter';
console.log('Parser', Parser);
Parser.init().then(() => {
console.log('init done..');
Parser.init().then(async () => {
const parser = new Parser();
const Lang = await Parser.Language.load('tree-sitter-haskell.wasm');
parser.setLanguage(Lang);
const tree = parser.parse('d1 $ s "hh*3"');
console.log(tree.rootNode.toString());
});

View File

@ -0,0 +1,3 @@
# public
this file is just here to make sure the public folder exists