I want to know from where my data is coming from which class, from which method
let's take an example like
EditValue(data)
{
/* my operations */
}
Now there are multiple classes in my project which send the data to this EditValue(data) method.
Is there any way in Typescript or in angular to know from which class that data is coming or from which class method that data is coming.
like className.method somewhat like this