File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -288,23 +288,23 @@ class Debugger extends EventEmitter
288288
289289 start : =>
290290 @debugHost = " 127.0.0.1"
291- @debugPort = self . atom .config .get (' node-debugger.debugPort' )
291+ @debugPort = @ atom .config .get (' node-debugger.debugPort' )
292292 @externalProcess = false
293293 NodeDebuggerView .show (this )
294294 @processManager .start ()
295295 # debugger will attach when process is started
296296
297297 startActiveFile : =>
298298 @debugHost = " 127.0.0.1"
299- @debugPort = self . atom .config .get (' node-debugger.debugPort' )
299+ @debugPort = @ atom .config .get (' node-debugger.debugPort' )
300300 @externalProcess = false
301301 NodeDebuggerView .show (this )
302302 @processManager .startActiveFile ()
303303 # debugger will attach when process is started
304304
305305 attach : =>
306306 @debugHost = @atom .config .get (' node-debugger.debugHost' )
307- @debugPort = self . atom .config .get (' node-debugger.debugPort' )
307+ @debugPort = @ atom .config .get (' node-debugger.debugPort' )
308308 @externalProcess = true
309309 NodeDebuggerView .show (this )
310310 @ attachInternal ()
You can’t perform that action at this time.
0 commit comments