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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
This test checks basic behavior of textDocument/foldingRange.
-- a.go --
package folding //@foldingrange(raw)
import (
"fmt"
_ "log"
)
import _ "os"
// bar is a function.
// With a multiline doc comment.
func bar() string {
/* This is a single line comment */
switch {
case true:
if true {
fmt.Println("true")
} else {
fmt.Println("false")
}
case false:
fmt.Println("false")
default:
fmt.Println("default")
}
/* This is a multiline
block
comment */
/* This is a multiline
block
comment */
// Followed by another comment.
_ = []int{
1,
2,
3,
}
_ = [2]string{"d",
"e",
}
_ = map[string]int{
"a": 1,
"b": 2,
"c": 3,
}
type T struct {
f string
g int
h string
}
_ = T{
f: "j",
g: 4,
h: "i",
}
x, y := make(chan bool), make(chan bool)
select {
case val := <-x:
if val {
fmt.Println("true from x")
} else {
fmt.Println("false from x")
}
case <-y:
fmt.Println("y")
default:
fmt.Println("default")
}
// This is a multiline comment
// that is not a doc comment.
return `
this string
is not indented`
}
-- @raw --
package folding //@foldingrange(raw)
import (<0 kind="imports">
"fmt"
_ "log"
</0>)
import _ "os"
// bar is a function.<1 kind="comment">
// With a multiline doc comment.</1>
func bar(<2 kind=""></2>) string {<3 kind="">
/* This is a single line comment */
switch {<4 kind="">
case true:<5 kind="">
if true {<6 kind="">
fmt.Println(<7 kind="">"true"</7>)
</6>} else {<8 kind="">
fmt.Println(<9 kind="">"false"</9>)
</8>}</5>
case false:<10 kind="">
fmt.Println(<11 kind="">"false"</11>)</10>
default:<12 kind="">
fmt.Println(<13 kind="">"default"</13>)</12>
</4>}
/* This is a multiline<14 kind="comment">
block
comment */</14>
/* This is a multiline<15 kind="comment">
block
comment */
// Followed by another comment.</15>
_ = []int{<16 kind="">
1,
2,
3,
</16>}
_ = [2]string{<17 kind="">"d",
"e",
</17>}
_ = map[string]int{<18 kind="">
"a": 1,
"b": 2,
"c": 3,
</18>}
type T struct {<19 kind="">
f string
g int
h string
</19>}
_ = T{<20 kind="">
f: "j",
g: 4,
h: "i",
</20>}
x, y := make(<21 kind="">chan bool</21>), make(<22 kind="">chan bool</22>)
select {<23 kind="">
case val := <-x:<24 kind="">
if val {<25 kind="">
fmt.Println(<26 kind="">"true from x"</26>)
</25>} else {<27 kind="">
fmt.Println(<28 kind="">"false from x"</28>)
</27>}</24>
case <-y:<29 kind="">
fmt.Println(<30 kind="">"y"</30>)</29>
default:<31 kind="">
fmt.Println(<32 kind="">"default"</32>)</31>
</23>}
// This is a multiline comment<33 kind="comment">
// that is not a doc comment.</33>
return <34 kind="">`
this string
is not indented`</34>
</3>}
|