Lines Matching full:eval
38 var eval_compilations = 0; // Number of scources compiled through eval.
43 eval(current_source);
61 case Debug.ScriptCompilationType.Eval:
67 // If the compiled source contains 'eval' there will be additional compile
68 // events for the source inside eval.
69 if (current_source.indexOf('eval') == 0) {
70 // For source with 'eval' there will be compile events with substrings
74 // For source without 'eval' there will be a compile events with the
80 var msg = eval('(' + json + ')');
100 compileSource('eval("a=2")');
101 source_count++; // Using eval causes additional compilation event.
102 compileSource('eval("eval(\'(function(){return a;})\')")');
103 source_count += 2; // Using eval causes additional compilation event.
115 // source compiled through eval).