| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 } | 1604 } |
| 1605 result += this.argumentValue(i).toText(); | 1605 result += this.argumentValue(i).toText(); |
| 1606 } | 1606 } |
| 1607 result += ')'; | 1607 result += ')'; |
| 1608 } | 1608 } |
| 1609 | 1609 |
| 1610 if (this.isAtReturn()) { | 1610 if (this.isAtReturn()) { |
| 1611 result += ' returning '; | 1611 result += ' returning '; |
| 1612 result += this.returnValue().toText(); | 1612 result += this.returnValue().toText(); |
| 1613 } | 1613 } |
| 1614 | 1614 |
| 1615 return result; | 1615 return result; |
| 1616 } | 1616 } |
| 1617 | 1617 |
| 1618 | 1618 |
| 1619 FrameMirror.prototype.sourceAndPositionText = function() { | 1619 FrameMirror.prototype.sourceAndPositionText = function() { |
| 1620 // Format source and position. | 1620 // Format source and position. |
| 1621 var result = ''; | 1621 var result = ''; |
| 1622 var func = this.func(); | 1622 var func = this.func(); |
| 1623 if (func.resolved()) { | 1623 if (func.resolved()) { |
| 1624 if (func.script()) { | 1624 if (func.script()) { |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2371 } | 2371 } |
| 2372 if (!isFinite(value)) { | 2372 if (!isFinite(value)) { |
| 2373 if (value > 0) { | 2373 if (value > 0) { |
| 2374 return 'Infinity'; | 2374 return 'Infinity'; |
| 2375 } else { | 2375 } else { |
| 2376 return '-Infinity'; | 2376 return '-Infinity'; |
| 2377 } | 2377 } |
| 2378 } | 2378 } |
| 2379 return value; | 2379 return value; |
| 2380 } | 2380 } |
| OLD | NEW |