Avoid taking a good name (seq) away from users. Fixes golang/go#14168 Change-Id: I88e90cb74b479e348c642a1caa27096ed4a6d68e Reviewed-on: https://go-review.googlesource.com/19601 Reviewed-by: David Crawshaw <crawshaw@golang.org>
20 lines
349 B
Plaintext
20 lines
349 B
Plaintext
// Package go_try is an autogenerated binder stub for package try.
|
|
// gobind -lang=go try
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
package go_try
|
|
|
|
import (
|
|
_seq "golang.org/x/mobile/bind/seq"
|
|
"try"
|
|
)
|
|
|
|
func proxy_This(out, in *_seq.Buffer) {
|
|
res := try.This()
|
|
out.WriteString(res)
|
|
}
|
|
|
|
func init() {
|
|
_seq.Register("try", 1, proxy_This)
|
|
}
|