summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2018-11-05 19:33:59 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2018-11-05 19:33:59 +0000
commit77198bc79b54267f2ce981c3a6c9c0d6384cac01 (patch)
tree1bd65fa94b3e566a6e17c315d11eb00ee0378794 /lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go
parent115209ece5c55dedf2ce4fb40beca79803c7676e (diff)
downloadbcm5719-llvm-77198bc79b54267f2ce981c3a6c9c0d6384cac01.tar.gz
bcm5719-llvm-77198bc79b54267f2ce981c3a6c9c0d6384cac01.zip
Remove Go debugger plugin
In January Davide sent an e-mail to the mailing list to suggest removing unmaintained language plugins such as Go and Java. The plan was to have some cool down period to allow users to speak up, however after that the plugins were never actually removed. This patch removes the Go debugger plugin. The plugin can be added again in the future if it is mature enough both in terms of testing and maintenance commitment. Discussion on the mailing list: http://lists.llvm.org/pipermail/lldb-dev/2018-January/013171.html Differential revision: https://reviews.llvm.org/D54057 llvm-svn: 346157
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go b/lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go
deleted file mode 100644
index c8b97fe07d7..00000000000
--- a/lldb/packages/Python/lldbsuite/test/lang/go/expressions/main.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package main
-
-import "fmt"
-
-type myStruct struct {
- a, b int
-}
-
-var myGlobal = 17
-
-func myFunc(i interface{}) {
- a := [...]int{8, 9, 10}
- b := a[:]
- x := 22
- fmt.Println(a, b, x, i, myGlobal) // Set breakpoint here.
-}
-
-func main() {
- s := myStruct {2, -1}
- myFunc(s)
-} \ No newline at end of file
OpenPOWER on IntegriCloud