Home | History | Annotate | Download | only in mjsunit

Lines Matching full:eval

45     return eval("(function(){" + s + ";return " + e + "})")();
66 this.eval(code);
88 return eval(s + ";" + e);
107 // No eval.
109 // Eval everything.
110 TestAll("TypeError", 'eval("' + def0 + '; ' + def1 + '")');
111 // Eval first definition.
112 TestAll("TypeError", 'eval("' + def0 +'"); ' + def1);
113 // Eval second definition.
114 TestAll("TypeError", def0 + '; eval("' + def1 + '")');
115 // Eval both definitions separately.
116 TestAll("TypeError", 'eval("' + def0 +'"); eval("' + def1 + '")');