File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -191,16 +191,16 @@ type Type =
191
191
| String
192
192
| Regex
193
193
| Number of kind : NumberKind * info : NumberInfo
194
- | Option of genArg : Type * isStruct : bool
195
- | Tuple of genArg : Type list * isStruct : bool
196
- | Array of genArg : Type * kind : ArrayKind
197
- | List of genArg : Type
194
+ | Option of genericArg : Type * isStruct : bool
195
+ | Tuple of genericArg : Type list * isStruct : bool
196
+ | Array of genericArg : Type * kind : ArrayKind
197
+ | List of genericArg : Type
198
198
| LambdaType of argType : Type * returnType : Type
199
199
| DelegateType of argTypes : Type list * returnType : Type
200
200
| GenericParam of name : string * isMeasure : bool * constraints : Constraint list
201
- | DeclaredType of ref : EntityRef * genArgs : Type list
202
- | AnonymousRecordType of fieldNames : string [] * genArgs : Type list * isStruct : bool
203
- | Nullable of genArg : Type * isStruct : bool
201
+ | DeclaredType of ref : EntityRef * genericArgs : Type list
202
+ | AnonymousRecordType of fieldNames : string [] * genericArgs : Type list * isStruct : bool
203
+ | Nullable of genericArg : Type * isStruct : bool
204
204
205
205
member this.Generics =
206
206
match this with
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
14
14
15
15
### Fixed
16
16
17
+ * [ All] Fix #4221 Fable.Type union case arg names (by @ncave )
17
18
* [ All] Erase Nullable Reference Types to inner type (by @ncave )
18
19
* [ Python] Improve Python (e.g. Pydantic) interop (by @dbrattli )
19
20
* [ JS/TS] Fix comparers for non-nullable types (by @ncave )
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
9
10
10
### Fixed
11
11
12
+ * [ All] Fix #4221 Fable.Type union case arg names (by @ncave )
12
13
* [ All] Erase Nullable Reference Types to inner type (by @ncave )
13
14
* [ Python] Improve Python (e.g. Pydantic) interop (by @dbrattli )
14
15
* [ JS/TS] Fix comparers for non-nullable types (by @ncave )
You can’t perform that action at this time.
0 commit comments