service/dap: Fix build error due to unresolved merge conflict (#2493)
My local build of delve which apparently pulls in the master branch starting breaking. This is the culprit. Error: ``` #9 75.27 # github.com/go-delve/delve/service/dap #9 75.27 /usr/src/github.com/go-delve/delve/service/dap/server.go:107:1: syntax error: unexpected <<, expecting field name or embedded type #9 75.27 /usr/src/github.com/go-delve/delve/service/dap/server.go:110:1: syntax error: unexpected ==, expecting field name or embedded type #9 75.27 /usr/src/github.com/go-delve/delve/service/dap/server.go:113:1: syntax error: unexpected >>, expecting field name or embedded type ```
This commit is contained in:
parent
d2bca7a307
commit
547388750b
@ -104,13 +104,10 @@ type Server struct {
|
||||
variableHandles *variablesHandlesMap
|
||||
// args tracks special settings for handling debug session requests.
|
||||
args launchAttachArgs
|
||||
<<<<<<< HEAD
|
||||
// exceptionErr tracks the runtime error that last occurred.
|
||||
exceptionErr error
|
||||
=======
|
||||
// clientCapabilities tracks special settings for handling debug session requests.
|
||||
clientCapabilities dapClientCapabilites
|
||||
>>>>>>> 1e9c5c3b07dc5f0f2b3b1fb17bde6444cbf7ca30
|
||||
|
||||
// mu synchronizes access to objects set on start-up (from run goroutine)
|
||||
// and stopped on teardown (from main goroutine)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user