You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Diffs in a patch can currently transform only one entity at a time.
That is,
@@
@@
type Foo struct {
- bar string
}
@@
@@
type Bar struct {
- foo string
}
We special case statements by allowing statement blocks, but nothing else. Where appropriate -- specially for type and func declarations, we should support multiple entities in the same patch.
@@
@@
type Foo struct {
- bar string
}
type Bar struct {
- foo string
}
The text was updated successfully, but these errors were encountered:
Diffs in a patch can currently transform only one entity at a time.
That is,
We special case statements by allowing statement blocks, but nothing else. Where appropriate -- specially for type and func declarations, we should support multiple entities in the same patch.
The text was updated successfully, but these errors were encountered: