Unreviewed. Fix whitespaces for r6314.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@6315 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
podivilov@chromium.org 2011-01-14 12:01:57 +00:00
parent beb16ce681
commit ee9fd1d922

View File

@ -124,10 +124,10 @@ assertTrue(Debug.showBreakPoints(g).indexOf("[B0]") < 0);
function setBreakpointByPosition(f, position)
{
var break_point = Debug.setBreakPointByScriptIdAndPosition(
Debug.findScript(f).id,
position + Debug.sourcePosition(f),
"",
true);
Debug.findScript(f).id,
position + Debug.sourcePosition(f),
"",
true);
return break_point.number();
}