lxer

Results 7 issues of lxer

I like this project very much, I hope the author can produce an release version

```go type A struct { B *B } type B struct { A *A } func (a *A) Clone() *A { a1 := &A{B: &B{}} a1.B.A = a1 tp :=...

effort-high
skill-level-intermediate

Example: ``` type T1 struct { T2 *T2 T3 *T3 } type T2 struct { Name2 string } type T3 struct { Name3 string } func main() { t1 :=...

suggestion

### Welcome - [X] Yes, I'm using a binary release within 2 latest major releases. Only such installations are supported. - [X] Yes, I've searched similar issues on GitHub and...

bug
feedback required

``` go package main import ( "errors" "fmt" "os" ) type Stu struct { Age int } func AAA() (*Stu, error) { return nil, errors.New("error here") } func BBB() (v...

Whether to support hexagonal plots?