google / diff-match-patch

Diff Match Patch is a high-performance library in multiple languages that manipulates plain text.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AST differencing

yehyaali151989w opened this issue · comments

Hi All,
Thanks for your work!

I would like to implement an ast diff in JavaScript programs

Could you please guide me to how to use it?

Thanks in advances

@yehyaali151989w this library probably isn't what you're looking for since it's focused on text diffing. AST diffing or graph diffing is a much more complicated topic. you may have interest in checking out what the folks at https://github.com/Wilfred/difftastic have done.