Merge pull request #3103 from bengotow/bengotow/debug-release

Allow "released callback" errors to be traced to remote calls
This commit is contained in:
Cheng Zhao 2015-10-16 20:21:46 +08:00
commit 4871ea715c
2 changed files with 17 additions and 1 deletions

View file

@ -11,6 +11,20 @@ class CallbacksRegistry
add: (callback) ->
id = Math.random().toString()
# Capture the location of the function and put it in the ID string,
# so that release errors can be tracked down easily.
regexp = /at (.*)/gi
stackString = (new Error).stack
while (match = regexp.exec(stackString)) isnt null
[x, location] = match
continue if location.indexOf('(native)') isnt -1
continue if location.indexOf('atom.asar') isnt -1
[x, filenameAndLine] = /([^/^\)]*)\)?$/gi.exec(location)
id = "#{filenameAndLine} (#{id})"
break
@callbacks[id] = callback
id