We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6549b8 commit cf97b7fCopy full SHA for cf97b7f
internal/jsonrpc2/messages.go
@@ -6,8 +6,9 @@ package jsonrpc2
6
7
import (
8
"encoding/json"
9
- "errors"
10
"fmt"
+
11
+ errors "golang.org/x/xerrors"
12
)
13
14
// Message is the interface to all jsonrpc2 message types.
internal/jsonrpc2/serve.go
@@ -6,14 +6,14 @@ package jsonrpc2
"context"
"io"
"net"
"os"
"time"
15
16
"golang.org/x/tools/internal/event"
17
18
19
// NOTE: This file provides an experimental API for serving multiple remote
0 commit comments