3 个版本

0.1.1 2023年4月3日
0.1.1-rc.32023年4月1日

#2573开发工具

MIT 许可证

62KB
1.5K SLoC

Mogglo

Mogglo是一个基于AST的多语言代码搜索和重写工具。Mogglo支持在搜索模式和替换中嵌入Lua代码。

Mogglo专注于以下目标

  • 最小化设置:Mogglo将在任何受支持语言的代码库中立即工作。
  • 许多语言:12种及更多!
  • 高质量的语法:Mogglo基于tree-sitter语法。
  • Lua:Mogglo暴露了丰富的API以嵌入Lua片段。

简介

以下示例展示了Mogglo的功能。以下是如何找到对表达式自身进行无意义赋值的情况

mogglo-rust --detail 'let $x = $x;' ./**/*.rs

Lua代码用花括号括起来。Lua可以使用rec递归地匹配模式。以下是一个检测越界数组访问的模式

mogglo-rust 'while $i <= $buf.len() { ${{ rec("$buf.get($i)") }} }' ./**/*.rs

以下是如何展开简单循环

mogglo-rust \
  'for $i in 0..$h { $b; }' \
  --where 'h_num = tonumber(h); return h_num ~= nil and h_num % 4 == 0' \
  --replace 'for $i in 0..${{ string.format("%.0f", h / 4) }} { $b; $b; $b; $b; }' \
  ./*/**.rs

这种转换展示了使用Lua的强大功能:它不能使用正则表达式替换来完成,并且使用其他codemod工具将非常困难。

有关更多详细信息,请参阅文档

依赖项

~26MB
~680K SLoC