TejaswiniU
TejaswiniU
In engine.js at asignFunctionReturnValue() repetitive variable declaration made the loop run infinite times and caused heap out of memory . To overcome this loop optimisation is done by for (var...
I will push the code by Monday. On Fri, Dec 28, 2018, 12:06 Nishant Das Patnaik Hey @TejaswiniU , Would create a pull > request if you have fix? I...
I hope by now you would have got the solution If not change if (node2.argument.name != undefined) to if (node2.argument!=undefined & node2.argument.name != undefined) Reason : By the error msg...
Add ** exports.convertedFunction= convertedFunction;** in analyzer.js This would work
Here **document.write("hello" + document.location.href.substring(8) + "bye");** gets assigned as below Function Name: [] Function call: [{"name":"document.write","line":1,"startScope":1,"endScope":1,"arguments":{"variables":[],"functions":[],"literals":[]},"returns":{"variables":[],"literals":[],"functions":[]}},{"name":"document.location.href.substring","line":1,"startScope":1,"endScope":1,"arguments":{"variables":["#CONSTANT_VAL#"],"functions":[],"literals":[8]},"returns":{"variables":[],"literals":[],"functions":[]}}] Constant Variable value: [] Dynamic Variable value: [] Object Variable value: [] In the...
Add **exports.convertedFunction=convertedFunction;** in analyzer.js
@marcyss Can you check this
In engine.js at asignFunctionReturnValue() repetitive variable declaration made the loop run infinite times and caused **heap out of memory** . To overcome this loop optimisation is done by for (var...
Hi @ariya , It would be better to know which branch was being used in web https://esprima.org/demo/parse.html Certain code is being parsed in web but throws errors while using npm...