implement reload command
This commit is contained in:
rginda%netscape.com 2001-09-25 22:24:36 +00:00
Родитель 916119047f
Коммит 786350ce9b
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -98,6 +98,13 @@ function con_step()
return true; return true;
} }
console.doCommandReload =
function con_reload ()
{
if ("childData" in console.sourceView)
console.sourceView.childData.reloadSource();
}
console.onDebugTrap = console.onDebugTrap =
function con_ondt (type) function con_ondt (type)
{ {
@ -326,6 +333,7 @@ function con_ieval (e)
refreshValues(); refreshValues();
var l = $.length; var l = $.length;
$[l] = rv; $[l] = rv;
display (getMsg(MSN_FMT_TMP_ASSIGN, [l, formatValue (rv)]), display (getMsg(MSN_FMT_TMP_ASSIGN, [l, formatValue (rv)]),
MT_FEVAL_OUT); MT_FEVAL_OUT);
} }