-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There seem to be a bug #8
Comments
the code is as following : package main import (
) type Auth struct { func (p *Auth) Login(userName, password string) bool { // use join point to get Args from real method
} // the args is same as Login // use join point to around the real func of login
} type Foo struct { // @AfterReturning, the method could have args of aop.Result, func main() {
} |
no matter which one I choose between method or invoke,the 'login' is always to be false,even I changed 'return false' to 'return true' in the function login.
The text was updated successfully, but these errors were encountered: