| OLD | NEW |
| 1 // Copyright 2008 the V8 project authors. All rights reserved. | 1 // Copyright 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 function f() { | 139 function f() { |
| 140 a=1 | 140 a=1 |
| 141 }; | 141 }; |
| 142 | 142 |
| 143 function g() { | 143 function g() { |
| 144 // Comment. | 144 // Comment. |
| 145 f(); | 145 f(); |
| 146 }; | 146 }; |
| 147 | 147 |
| 148 eval('function h(){}'); | 148 eval('function h(){}'); |
| 149 eval('function sourceUrlFunc() { a = 2; }\n//@ sourceURL=sourceUrlScript'); | 149 eval('function sourceUrlFunc() { a = 2; }\n//# sourceURL=sourceUrlScript'); |
| 150 | 150 |
| 151 o = {a:function(){},b:function(){}} | 151 o = {a:function(){},b:function(){}} |
| 152 | 152 |
| 153 // Check the script ids for the test functions. | 153 // Check the script ids for the test functions. |
| 154 f_script_id = Debug.findScript(f).id; | 154 f_script_id = Debug.findScript(f).id; |
| 155 g_script_id = Debug.findScript(g).id; | 155 g_script_id = Debug.findScript(g).id; |
| 156 h_script_id = Debug.findScript(h).id; | 156 h_script_id = Debug.findScript(h).id; |
| 157 sourceURL_script_id = Debug.findScript(sourceUrlFunc).id; | 157 sourceURL_script_id = Debug.findScript(sourceUrlFunc).id; |
| 158 | 158 |
| 159 assertTrue(f_script_id > 0, "invalid script id for f"); | 159 assertTrue(f_script_id > 0, "invalid script id for f"); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, | 208 Debug.setScriptBreakPoint(Debug.ScriptBreakPointType.ScriptId, |
| 209 i_script.id, 4); | 209 i_script.id, 4); |
| 210 } | 210 } |
| 211 | 211 |
| 212 // Creates the eval script and tries to set the breakpoint. | 212 // Creates the eval script and tries to set the breakpoint. |
| 213 // The tricky part is that the script function must be strongly reachable at the | 213 // The tricky part is that the script function must be strongly reachable at the |
| 214 // moment. Since there's no way of simply getting the pointer to the function, | 214 // moment. Since there's no way of simply getting the pointer to the function, |
| 215 // we run this code while the script function is being activated on stack. | 215 // we run this code while the script function is being activated on stack. |
| 216 eval('SetBreakpointInI1Script()\nfunction i1(){}\n\n\n\nfunction i2(){}\n'); | 216 eval('SetBreakpointInI1Script()\nfunction i1(){}\n\n\n\nfunction i2(){}\n'); |
| 217 | 217 |
| OLD | NEW |