Home | History | Annotate | Download | only in mjsunit

Lines Matching full:eval

38 var eval_compilations = 0;  // Number of scources compiled through eval.
44 eval(current_source);
62 case Debug.ScriptCompilationType.Eval:
71 // If the compiled source contains 'eval' there will be additional compile
72 // events for the source inside eval.
73 if (current_source.indexOf('eval') == 0) {
74 // For source with 'eval' there will be compile events with substrings
85 // For source without 'eval' there will be a compile events with the
91 var msg = eval('(' + json + ')');
111 compileSource('eval("a=2")');
112 source_count++; // Using eval causes additional compilation event.
113 compileSource('eval("eval(\'(function(){return a;})\')")');
114 source_count += 2; // Using eval causes additional compilation event.
126 // source compiled through eval except for one JSON.parse call).