feat(ScalaLangDoc): support Scala | 支持 Scala

This commit is contained in:
林万程
2024-02-27 19:24:07 +08:00
parent 11eae9fa4d
commit 7e2b828434
11 changed files with 186 additions and 17 deletions

View File

@@ -0,0 +1,21 @@
/**
* Class
* [[ScalaClass#fun2()]]
*/
class ScalaClass {
/**
* fun
* call [[ScalaClass#fun2()]] method
*/
private def fun(): Unit = {
fun2()
}
/**
* fun2
* @author name
*/
def fun2(): Unit = {
}
}