Now I have a code snippet. like it:
const targetFunc = (a, b, c) => {
return a + b + c
}
I need find the code locations similar to function targetFunc in src. how I can do it ?
const sum3 = (a, b, c) => {
return a + b + c
}
sum3(1, 2, 3)
const sum = (a, b) => {
return a + b
}
sum(2, 3)
Now I have a code snippet. like it:
I need find the code locations similar to function
targetFuncin src. how I can do it ?