We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
比如ClassA().print 和 ClassA a = ClassA(); a.print 前者 类型是MethodInvocation "callee":{ "type":"Identifier", "name":"ClassA" } 后者类型是MemberExpression "callee":{ "type":"Identifier", "name":"a" }
请问是怎么找到对应的类的AST来调用print方法的?
The text was updated successfully, but these errors were encountered:
我试了一下好像没实现
Sorry, something went wrong.
有解决方案吗
No branches or pull requests
比如ClassA().print
和 ClassA a = ClassA();
a.print
前者 类型是MethodInvocation
"callee":{
"type":"Identifier",
"name":"ClassA"
}
后者类型是MemberExpression
"callee":{
"type":"Identifier",
"name":"a"
}
请问是怎么找到对应的类的AST来调用print方法的?
The text was updated successfully, but these errors were encountered: