-
Notifications
You must be signed in to change notification settings - Fork 10
/
lsp_sumtypes.go
65 lines (57 loc) · 1.24 KB
/
lsp_sumtypes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// Copyright 2024 Cristian Maglie. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
package lsp
import (
"errors"
"go.bug.st/json"
)
type CommandOrCodeAction struct {
command *Command
codeAction *CodeAction
}
func (c *CommandOrCodeAction) Set(value interface{}) {
c.command = nil
c.codeAction = nil
switch v := value.(type) {
case *Command:
c.command = v
case Command:
c.command = &v
case *CodeAction:
c.codeAction = v
case CodeAction:
c.codeAction = &v
default:
panic("value must be a Command or a CodeAction")
}
}
func (c *CommandOrCodeAction) Get() interface{} {
if c.command != nil {
return *(c.command)
}
if c.codeAction != nil {
return *(c.codeAction)
}
panic("empty value")
}
func (c *CommandOrCodeAction) UnmarshalJSON(data []byte) error {
c.command = nil
c.codeAction = nil
var co Command
if err := json.Unmarshal(data, &co); err == nil {
c.command = &co
return nil
}
var ca CodeAction
if err := json.Unmarshal(data, &ca); err == nil {
c.codeAction = &ca
return nil
}
return errors.New("expected Command or CodeAction")
}
func (c CommandOrCodeAction) MarshalJSON() ([]byte, error) {
return json.Marshal(c.Get())
}