未验证 提交 4419bae9 编写于 作者: P Phodal Huang

feat: thinking in overrode

上级 e66d8e15
......@@ -207,6 +207,13 @@ func (s *JavaCallListener) EnterLocalTypeDeclaration(ctx *parser.LocalTypeDeclar
// TODO
}
func (s *JavaCallListener) EnterAnnotation(ctx *parser.AnnotationContext) {
annotationName := ctx.QualifiedName().GetText()
if annotationName == "Override" {
}
}
func (s *JavaCallListener) EnterMethodCall(ctx *parser.MethodCallContext) {
var targetCtx = ctx.GetParent().GetChild(0).(antlr.ParseTree).GetText()
var targetType = parseTargetType(targetCtx)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册