Skip to content

Commit

Permalink
Merge pull request #12 from s-kybound/main
Browse files Browse the repository at this point in the history
Fix typing issues in scm-slang
  • Loading branch information
s-kybound authored Mar 22, 2024
2 parents 9cf6be9 + 219747f commit e012ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/encoder-visitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export function estreeEncode(ast: es.Program): es.Program {
}
});
walk.full(ast, (node: es.Node) => {
node.encoded = undefined;
(node as any).encoded = undefined;
});
return ast;
}

0 comments on commit e012ceb

Please sign in to comment.