Home
last modified time | relevance | path

Searched refs:evalFromLocation (Results 1 – 3 of 3) sorted by relevance

/external/v8/test/mjsunit/
Ddebug-compile-event-newfunction.js47 var evalFromLocation = event_data.script().evalFromLocation();
48 assertTrue(!!evalFromLocation, 'evalFromLocation is undefined');
49 assertEquals(63, evalFromLocation.line);
Dmirror-script.js63 assertEquals(eval_from_line, mirror.evalFromLocation().line);
/external/v8/src/debug/
Dmirrors.js2390 ScriptMirror.prototype.evalFromLocation = function() { method in ScriptMirror
2695 var evalFromLocation = mirror.evalFromLocation();
2696 if (evalFromLocation) {
2697 content.evalFromLocation = { line: evalFromLocation.line,
2698 column: evalFromLocation.column };