File tree Expand file tree Collapse file tree
chapi-ast-go/src/test/kotlin/chapi/ast/goast
chapi-domain/src/main/kotlin/chapi/domain/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ func installController(g *gin.Engine) *gin.Engine {
110110 assertEquals(thirdCall.FunctionName , " Group" )
111111 assertEquals(thirdCall.NodeName , " *gin.Engine" )
112112 assertEquals(thirdCall.Parameters [0 ].TypeValue , " /users" )
113+
114+ println (Json .encodeToString(value))
113115 }
114116
115117 @Test
Original file line number Diff line number Diff line change @@ -29,7 +29,10 @@ open class CodeCall(
2929 var NodeName : String = " " ,
3030 var FunctionName : String = " " ,
3131 var Parameters : Array <CodeProperty > = arrayOf(),
32- var Position : CodePosition = CodePosition ()
32+ var Position : CodePosition = CodePosition (),
33+ // like "v1.Group", the v1 will be the Receiver
34+ // since 2.0.0-Beta.9
35+ var OriginNodeName : String = " " ,
3336) {
3437
3538 open fun buildClassFullName (): String {
You can’t perform that action at this time.
0 commit comments