@@ -41,28 +41,28 @@ type Component
4141 ValueSome( filteredAttrs) // skip the component data
4242
4343 let scalars =
44- match struct ( rootWidget.ScalarAttributes, componentScalars) with
44+ match rootWidget.ScalarAttributes, componentScalars with
4545 | ValueNone, ValueNone -> ValueNone
4646 | ValueSome attrs, ValueNone
4747 | ValueNone, ValueSome attrs -> ValueSome attrs
4848 | ValueSome widgetAttrs, ValueSome componentAttrs -> ValueSome( Array.append componentAttrs widgetAttrs)
4949
5050 let widgets =
51- match struct ( rootWidget.WidgetAttributes, componentWidget.WidgetAttributes) with
51+ match rootWidget.WidgetAttributes, componentWidget.WidgetAttributes with
5252 | ValueNone, ValueNone -> ValueNone
5353 | ValueSome attrs, ValueNone
5454 | ValueNone, ValueSome attrs -> ValueSome attrs
5555 | ValueSome widgetAttrs, ValueSome componentAttrs -> ValueSome( Array.append componentAttrs widgetAttrs)
5656
5757 let widgetColls =
58- match struct ( rootWidget.WidgetCollectionAttributes, componentWidget.WidgetCollectionAttributes) with
58+ match rootWidget.WidgetCollectionAttributes, componentWidget.WidgetCollectionAttributes with
5959 | ValueNone, ValueNone -> ValueNone
6060 | ValueSome attrs, ValueNone
6161 | ValueNone, ValueSome attrs -> ValueSome attrs
6262 | ValueSome widgetAttrs, ValueSome componentAttrs -> ValueSome( Array.append componentAttrs widgetAttrs)
6363
6464 let environments =
65- match struct ( rootWidget.EnvironmentAttributes, componentWidget.EnvironmentAttributes) with
65+ match rootWidget.EnvironmentAttributes, componentWidget.EnvironmentAttributes with
6666 | ValueNone, ValueNone -> ValueNone
6767 | ValueSome attrs, ValueNone
6868 | ValueNone, ValueSome attrs -> ValueSome attrs
0 commit comments