How complex it will be to add to store source of function/class etc to bytecode?
To get valid source code when .toString() is called when code was loaded from bytecode?
Let say. I have js code like this:
function test()
{
alert("ab");
}
print(test.toString())
When it will be compile it to bytecode and then run the output will not be as expected.
How complex it will be to add to store source of function/class etc to bytecode?
To get valid source code when .toString() is called when code was loaded from bytecode?
Let say. I have js code like this:
When it will be compile it to bytecode and then run the output will not be as expected.