mirror of
https://codeberg.org/uzu/strudel
synced 2026-09-05 14:58:03 -04:00
little update
This commit is contained in:
@@ -23,4 +23,5 @@ dist-ssr
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
public/tree-sitter.wasm
|
||||
public/tree-sitter.wasm
|
||||
public/tree-sitter-haskell.wasm
|
||||
@@ -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!
|
||||
|
||||
@@ -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());
|
||||
});
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
# public
|
||||
|
||||
this file is just here to make sure the public folder exists
|
||||
Reference in New Issue
Block a user