| 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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 984 CompileEvent.prototype.toJSONProtocol = function() { | 984 CompileEvent.prototype.toJSONProtocol = function() { |
| 985 var o = new ProtocolMessage(); | 985 var o = new ProtocolMessage(); |
| 986 o.running = true; | 986 o.running = true; |
| 987 if (this.before_) { | 987 if (this.before_) { |
| 988 o.event = "beforeCompile"; | 988 o.event = "beforeCompile"; |
| 989 } else { | 989 } else { |
| 990 o.event = "afterCompile"; | 990 o.event = "afterCompile"; |
| 991 } | 991 } |
| 992 o.body = {}; | 992 o.body = {}; |
| 993 o.body.script = this.script_; | 993 o.body.script = this.script_; |
| 994 o.setOption('includeSource', true); | |
| 995 | 994 |
| 996 return o.toJSONProtocol(); | 995 return o.toJSONProtocol(); |
| 997 } | 996 } |
| 998 | 997 |
| 999 | 998 |
| 1000 function MakeNewFunctionEvent(func) { | 999 function MakeNewFunctionEvent(func) { |
| 1001 return new NewFunctionEvent(func); | 1000 return new NewFunctionEvent(func); |
| 1002 } | 1001 } |
| 1003 | 1002 |
| 1004 | 1003 |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1977 case 'string': | 1976 case 'string': |
| 1978 case 'number': | 1977 case 'number': |
| 1979 json = value; | 1978 json = value; |
| 1980 break | 1979 break |
| 1981 | 1980 |
| 1982 default: | 1981 default: |
| 1983 json = null; | 1982 json = null; |
| 1984 } | 1983 } |
| 1985 return json; | 1984 return json; |
| 1986 } | 1985 } |
| OLD | NEW |