Bug 1071192 - Include column number in stack traces. r=dhylands

This commit is contained in:
Eric Rahm 2014-09-22 15:07:42 -07:00
Родитель 4cd2821756
Коммит c3faf6e570
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -33,7 +33,8 @@ function log(msg) {
function formatStackFrame(aFrame) {
let functionName = aFrame.functionName || '<anonymous>';
return ' at ' + functionName +
' (' + aFrame.filename + ':' + aFrame.lineNumber + ')';
' (' + aFrame.filename + ':' + aFrame.lineNumber +
':' + aFrame.columnNumber + ')';
}
const gFactoryResetFile = "/persist/__post_reset_cmd__";