feat(GroovyLangDoc): support Groovy | 支持 Groovy

This commit is contained in:
林万程
2024-02-27 20:13:17 +08:00
parent a9f1088b8b
commit e654e960d2
10 changed files with 121 additions and 20 deletions

View File

@@ -0,0 +1,32 @@
package io.github.linwancen.plugin.show.demo
/**
* Foo
*/
class Foo {
/** a */
String a;
/**
* fun1
*/
def fun1(){
a = 0;
fun2()
}
/**
* fun2
*/
def fun2(){
}
}
/**
* abc
* {@link Foo#fun2}
* @author name
*/
static def fun3(){
Foo.
fun2()
}