Just-maple

Results 5 issues of Just-maple

[ISSUES#418](https://github.com/google/gnostic/issues/418)

1. [escape](https://github.com/google/gnostic/blob/main/jsonwriter/writer.go#L29) only handle `\n` and `"` `\` should be escape also because some comment description contains it 2. [scalar write](https://github.com/google/gnostic/blob/main/jsonwriter/writer.go#L86) does not handle `!!null` and it would cause empty...

[github](https://github.com/go-zing/gozz) | [中文文档](https://go-zing.github.io/gozz/zh/) `Gozz` 提供了一系列强大的内置插件,与其说 `Gozz` 提供了这些内置插件, 不如说为了整合这些插件,给它们做了一个统一交互叫 `Gozz`。 - [Api](https://go-zing.github.io/gozz/zh/guide/plugins/api) 基于 `interface` 快速提供 API接口 - [Doc](https://go-zing.github.io/gozz/zh/guide/plugins/doc) 基于注释生成运行时文档 - [Impl](https://go-zing.github.io/gozz/zh/guide/plugins/impl) 同步 `interface` 和 `implement` - [Option](https://go-zing.github.io/gozz/zh/guide/plugins/option) 生成 `Funcitonal Options` 风格代码...

[github](https://github.com/go-zing/gozz) | [中文文档](https://go-zing.github.io/gozz/zh/) Gozz 是一个十分强大的注解代码生成工具 这是笔者在以往工作中在多个团队成功落地,已经使用了4年以上的成熟方案,最近终于有时间进行开源。 这里搬运一个 [官方文档](https://go-zing.github.io/gozz/zh/#%E7%A4%BA%E4%BE%8B%E4%BA%8C) 提供的示例二 比如下面是一个很常见的应用 基本层级代码 ```go package overview02 import ( "context" "database/sql" "fmt" "net/http" "time" "github.com/go-redis/redis/v8" ) type ( // root config for unmarshal...

1. export `WrappedParentXXX` like Struct So that users can use ```go func (Interceptor)ConnExecContext(ctx context.Context, conn driver.ExecerContext, s string, values []driver.NamedValue) (ret driver.Result, err error) { // sqlmw wrapped wpConn,ok :=...