I'm trying to migrate a desktop plugin into a Firefox for Android plugin , and I need to use the 'eval' function. When I run the plugin on mobile, it crashes when eval(). This is what I need to do:
String adaptionFunction = getConcreteFunctionName(); eval (adaptionFunction);
The first line returns something like this: __Application__.newList() I also tryed this, but didn't work:
var tmpFunc = new Function(adaptionFunction); tmpFunc();
What I can do? This same code runs fine on desktop. Thanks for your time,
GaL
↓ Show more
↑ Show less
-
gal007 5 months ago There was a logic problem, and eval works fine. I can't delete this post, so I answer here.