LSP-server-example

Форк
0
/
tsdocument_changes.go 
44 строки · 1.1 Кб
1
// //nolint
2

3
// Copyright 2022 The Go Authors. All rights reserved.
4
// Use of this source code is governed by a BSD-style
5
// license that can be found in the LICENSE file.
6

7
package protocol
8

9
import (
10
	"encoding/json"
11
	"errors"
12
)
13

14
// DocumentChanges is a union of a file edit and directory rename operations
15
// for package renaming feature. At most one field of this struct is non-nil.
16
type DocumentChanges struct {
17
	TextDocumentEdit *TextDocumentEdit
18
	RenameFile       *RenameFile
19
}
20

21
func (d *DocumentChanges) UnmarshalJSON(data []byte) error {
22
	var m map[string]interface{}
23

24
	if err := json.Unmarshal(data, &m); err != nil {
25
		return err
26
	}
27

28
	if _, ok := m["textDocument"]; ok {
29
		d.TextDocumentEdit = new(TextDocumentEdit)
30
		return json.Unmarshal(data, d.TextDocumentEdit)
31
	}
32

33
	d.RenameFile = new(RenameFile)
34
	return json.Unmarshal(data, d.RenameFile)
35
}
36

37
func (d *DocumentChanges) MarshalJSON() ([]byte, error) {
38
	if d.TextDocumentEdit != nil {
39
		return json.Marshal(d.TextDocumentEdit)
40
	} else if d.RenameFile != nil {
41
		return json.Marshal(d.RenameFile)
42
	}
43
	return nil, errors.New("empty DocumentChanges union value")
44
}
45

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.