在编译时识别源代码中的字符串常量

时间:2018-02-19 03:14:03

标签: scala sbt

我需要检查在使用SBT构建的Scala项目中的源代码中是否使用了特定的字符串常量。

class Test {
  def f(s: String) = {
    val na = s"... from t2_trans where na_id > 300"
    ...
    na
}

我希望在编译/构建项目时捕获类t2_中使用的字符串Test

任何图书馆都可以完成这项工作吗?

0 个答案:

没有答案