Hello. I was looking for some help from some RE experts.
We have a lot (as in hundreds of files) of javascript code that uses the following declaration format:
function MyJScriptFunction() {
}
Because the "function" keyword and the function name are not on the same line, the Javascript parser cannot populate the function list with functions declared like this.
Is there a way to tweak the Javascript bundle so that it recognizes functions declared as described above?
---------------------------- B.C.