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
对于下述代码,预期需要模糊匹配调用参数para的函数,目前_会确切标记处参数的个数以及位置,需要增添一个标志来同时匹配到[1]和[2]。
void func(void *para){ my_func(para, x1, x2 ,x3) // [1] my_func(x1, para, x2, x3) // [2] }
The text was updated successfully, but these errors were encountered:
weggli '_ $func(_* $param) { $func2(_($param)); }' ./test4.c /home/dong/wl_test/./test4.c:1 void func(void *para) { my_func(para, x1, x2, x3); // [1] my_func(x1, para, x2, x3); // [2] /home/dong/wl_test/./test4.c:1 void func(void *para) { my_func(para, x1, x2, x3); // [1] my_func(x1, para, x2, x3); // [2]
Use sub expression
Sorry, something went wrong.
No branches or pull requests
对于下述代码,预期需要模糊匹配调用参数para的函数,目前_会确切标记处参数的个数以及位置,需要增添一个标志来同时匹配到[1]和[2]。
The text was updated successfully, but these errors were encountered: