| Index: src/debug-debugger.js
|
| diff --git a/src/debug-debugger.js b/src/debug-debugger.js
|
| index b159ae3b2987f1e0aeab4327075dd2478e53ea1e..d759fe5df118b0d12a3b8110881ce9875f026046 100644
|
| --- a/src/debug-debugger.js
|
| +++ b/src/debug-debugger.js
|
| @@ -1217,31 +1217,6 @@ CompileEvent.prototype.toJSONProtocol = function() {
|
| };
|
|
|
|
|
| -function MakeNewFunctionEvent(func) {
|
| - return new NewFunctionEvent(func);
|
| -}
|
| -
|
| -
|
| -function NewFunctionEvent(func) {
|
| - this.func = func;
|
| -}
|
| -
|
| -
|
| -NewFunctionEvent.prototype.eventType = function() {
|
| - return Debug.DebugEvent.NewFunction;
|
| -};
|
| -
|
| -
|
| -NewFunctionEvent.prototype.name = function() {
|
| - return this.func.name;
|
| -};
|
| -
|
| -
|
| -NewFunctionEvent.prototype.setBreakPoint = function(p) {
|
| - Debug.setBreakPoint(this.func, p || 0);
|
| -};
|
| -
|
| -
|
| function MakeScriptCollectedEvent(exec_state, id) {
|
| return new ScriptCollectedEvent(exec_state, id);
|
| }
|
|
|