This commit is contained in:
Michael Bebenita 2015-08-18 00:22:41 -07:00
Родитель 819eb8b7b0
Коммит 1b7dc16e9f
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1230,7 +1230,8 @@ module J2ME {
enterTimeline("Eval Compiled Code");
// This overwrites the method on the global object.
var fn = new Function(args.join(','), body);
// var fn = new Function(args.join(','), body);
var fn = new Function("return function fn_" + methodInfo.implKey.replace(/\W+/g, "_") + "(" + args.join(",") + "){ " + body + "}")();
leaveTimeline("Eval Compiled Code");
methodInfo.state = MethodState.Compiled;