elm-pages 3.0.0-beta.30 → 3.0.0-beta.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/generator/dead-code-review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/Pages-Review-DeadCodeEliminateData.elmi +0 -0
  2. package/generator/dead-code-review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/Pages-Review-DeadCodeEliminateData.elmo +0 -0
  3. package/generator/dead-code-review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/d.dat +0 -0
  4. package/generator/dead-code-review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/i.dat +0 -0
  5. package/generator/dead-code-review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/o.dat +0 -0
  6. package/generator/dead-code-review/elm-stuff/tests-0.19.1/elm.json +1 -1
  7. package/generator/dead-code-review/elm-stuff/tests-0.19.1/js/Reporter.elm.js +4 -104
  8. package/generator/dead-code-review/elm-stuff/tests-0.19.1/js/Runner.elm.js +7125 -6415
  9. package/generator/dead-code-review/elm-stuff/tests-0.19.1/js/node_runner.js +1 -1
  10. package/generator/dead-code-review/elm-stuff/tests-0.19.1/js/node_supervisor.js +1 -1
  11. package/generator/dead-code-review/elm.json +4 -4
  12. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/Pages-Internal-RoutePattern.elmi +0 -0
  13. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/Pages-Internal-RoutePattern.elmo +0 -0
  14. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/Pages-Review-NoContractViolations.elmi +0 -0
  15. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/Pages-Review-NoContractViolations.elmo +0 -0
  16. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/d.dat +0 -0
  17. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/i.dat +0 -0
  18. package/generator/review/elm-stuff/tests-0.19.1/elm-stuff/0.19.1/o.dat +0 -0
  19. package/generator/review/elm-stuff/tests-0.19.1/elm.json +1 -1
  20. package/generator/review/elm-stuff/tests-0.19.1/js/Reporter.elm.js +4 -104
  21. package/generator/review/elm-stuff/tests-0.19.1/js/Runner.elm.js +16847 -16037
  22. package/generator/review/elm-stuff/tests-0.19.1/js/node_runner.js +1 -1
  23. package/generator/review/elm-stuff/tests-0.19.1/js/node_supervisor.js +1 -1
  24. package/generator/review/elm.json +5 -5
  25. package/generator/src/build.js +2 -1
  26. package/generator/src/cli.js +99 -93
  27. package/generator/src/compatibility-key.js +1 -1
  28. package/generator/src/compile-elm.js +18 -1
  29. package/generator/src/render.js +0 -2
  30. package/generator/src/resolve-elm-module.js +63 -0
  31. package/generator/src/rewrite-client-elm-json.js +1 -0
  32. package/generator/src/rewrite-elm-json-help.js +56 -0
  33. package/generator/src/rewrite-elm-json.js +13 -3
  34. package/generator/template/elm.json +1 -2
  35. package/package.json +17 -16
  36. package/src/Pages/Internal/Platform/Cli.elm +91 -0
  37. package/src/Pages/Internal/Platform.elm +1 -0
  38. package/src/Scaffold/Form.elm +187 -111
  39. package/src/Scaffold/Route.elm +261 -249
  40. package/src/Server/Session.elm +29 -9
  41. package/src/Server/SetCookie.elm +11 -3
@@ -46,6 +46,7 @@ import Cli.Validate
46
46
  import Elm
47
47
  import Elm.Annotation
48
48
  import Elm.Declare
49
+ import Elm.Op
49
50
  import Pages.Internal.RoutePattern as RoutePattern
50
51
 
51
52
 
@@ -590,7 +591,14 @@ userFunction moduleName definitions =
590
591
  ( "shared", Just (Elm.Annotation.named [ "Shared" ] "Model") )
591
592
  ( "msg", Just (Elm.Annotation.named [] "Msg") )
592
593
  ( "model", Just (Elm.Annotation.named [] "Model") )
593
- localState.update
594
+ (\app shared msg model ->
595
+ localState.update app shared msg model
596
+ |> Elm.withType
597
+ (Elm.Annotation.tuple
598
+ (localType "Model")
599
+ effectType
600
+ )
601
+ )
594
602
  , initFn =
595
603
  Elm.Declare.fn2 "init"
596
604
  ( "app", Just appType )
@@ -1083,204 +1091,206 @@ buildWithLocalState_ :
1083
1091
  -> Elm.Expression
1084
1092
  -> Elm.Expression
1085
1093
  buildWithLocalState_ buildWithLocalStateArg buildWithLocalStateArg0 =
1086
- Elm.apply
1087
- (Elm.value
1088
- { importFrom = [ "RouteBuilder" ]
1089
- , name =
1090
- case buildWithLocalStateArg.state of
1091
- LocalState ->
1092
- "buildWithLocalState"
1093
-
1094
- SharedState ->
1095
- "buildWithSharedState"
1096
- , annotation =
1097
- Just
1098
- (Elm.Annotation.function
1099
- [ Elm.Annotation.record
1100
- [ ( "view"
1101
- , Elm.Annotation.function
1102
- [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1103
- , Elm.Annotation.var "model"
1104
- , Elm.Annotation.namedWith
1105
- [ "RouteBuilder" ]
1106
- "App"
1107
- [ Elm.Annotation.var "data"
1108
- , Elm.Annotation.var "action"
1109
- , Elm.Annotation.var "routeParams"
1094
+ Elm.Op.pipe
1095
+ (Elm.apply
1096
+ (Elm.value
1097
+ { importFrom = [ "RouteBuilder" ]
1098
+ , name =
1099
+ case buildWithLocalStateArg.state of
1100
+ LocalState ->
1101
+ "buildWithLocalState"
1102
+
1103
+ SharedState ->
1104
+ "buildWithSharedState"
1105
+ , annotation =
1106
+ Just
1107
+ (Elm.Annotation.function
1108
+ [ Elm.Annotation.record
1109
+ [ ( "view"
1110
+ , Elm.Annotation.function
1111
+ [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1112
+ , Elm.Annotation.var "model"
1113
+ , Elm.Annotation.namedWith
1114
+ [ "RouteBuilder" ]
1115
+ "App"
1116
+ [ Elm.Annotation.var "data"
1117
+ , Elm.Annotation.var "action"
1118
+ , Elm.Annotation.var "routeParams"
1119
+ ]
1110
1120
  ]
1111
- ]
1112
- (Elm.Annotation.namedWith
1113
- [ "View" ]
1114
- "View"
1115
- [ Elm.Annotation.namedWith
1116
- [ "PagesMsg" ]
1117
- "PagesMsg"
1118
- [ Elm.Annotation.named [] "Msg" ]
1121
+ (Elm.Annotation.namedWith
1122
+ [ "View" ]
1123
+ "View"
1124
+ [ Elm.Annotation.namedWith
1125
+ [ "PagesMsg" ]
1126
+ "PagesMsg"
1127
+ [ Elm.Annotation.named [] "Msg" ]
1128
+ ]
1129
+ )
1130
+ )
1131
+ , ( "init"
1132
+ , Elm.Annotation.function
1133
+ [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1134
+ , Elm.Annotation.namedWith
1135
+ [ "RouteBuilder" ]
1136
+ "App"
1137
+ [ Elm.Annotation.var "data"
1138
+ , Elm.Annotation.var "action"
1139
+ , Elm.Annotation.var "routeParams"
1140
+ ]
1119
1141
  ]
1120
- )
1121
- )
1122
- , ( "init"
1123
- , Elm.Annotation.function
1124
- [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1125
- , Elm.Annotation.namedWith
1126
- [ "RouteBuilder" ]
1127
- "App"
1128
- [ Elm.Annotation.var "data"
1129
- , Elm.Annotation.var "action"
1130
- , Elm.Annotation.var "routeParams"
1142
+ (Elm.Annotation.tuple
1143
+ (Elm.Annotation.named [] "Model")
1144
+ (Elm.Annotation.namedWith
1145
+ [ "Effect" ]
1146
+ "Effect"
1147
+ [ Elm.Annotation.named [] "Msg" ]
1148
+ )
1149
+ )
1150
+ )
1151
+ , ( "update"
1152
+ , Elm.Annotation.function
1153
+ [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1154
+ , Elm.Annotation.namedWith
1155
+ [ "RouteBuilder" ]
1156
+ "App"
1157
+ [ localType "Data"
1158
+ , localType "ActionData"
1159
+ , localType "RouteParams"
1160
+ ]
1161
+ , Elm.Annotation.named [] "Msg"
1162
+ , Elm.Annotation.named [] "Model"
1131
1163
  ]
1132
- ]
1133
- (Elm.Annotation.tuple
1134
- (Elm.Annotation.named [] "Model")
1135
- (Elm.Annotation.namedWith
1136
- [ "Effect" ]
1137
- "Effect"
1138
- [ Elm.Annotation.named [] "Msg" ]
1164
+ (case buildWithLocalStateArg.state of
1165
+ LocalState ->
1166
+ Elm.Annotation.tuple
1167
+ (localType "Model")
1168
+ (Elm.Annotation.namedWith
1169
+ [ "Effect" ]
1170
+ "Effect"
1171
+ [ localType "Msg" ]
1172
+ )
1173
+
1174
+ SharedState ->
1175
+ Elm.Annotation.triple
1176
+ (localType "Model")
1177
+ (Elm.Annotation.namedWith
1178
+ [ "Effect" ]
1179
+ "Effect"
1180
+ [ localType "Msg" ]
1181
+ )
1182
+ (Elm.Annotation.maybe (Elm.Annotation.named [ "Shared" ] "Msg"))
1139
1183
  )
1140
- )
1141
- )
1142
- , ( "update"
1143
- , Elm.Annotation.function
1144
- [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1145
- , Elm.Annotation.namedWith
1146
- [ "RouteBuilder" ]
1147
- "App"
1148
- [ localType "Data"
1149
- , localType "ActionData"
1150
- , localType "RouteParams"
1184
+ )
1185
+ , ( "subscriptions"
1186
+ , Elm.Annotation.function
1187
+ [ Elm.Annotation.var "routeParams"
1188
+ , Elm.Annotation.namedWith [ "Path" ] "Path" []
1189
+ , Elm.Annotation.namedWith [ "Shared" ] "Model" []
1190
+ , Elm.Annotation.var "model"
1151
1191
  ]
1152
- , Elm.Annotation.named [] "Msg"
1153
- , Elm.Annotation.named [] "Model"
1154
- ]
1155
- (case buildWithLocalStateArg.state of
1156
- LocalState ->
1157
- Elm.Annotation.tuple
1158
- (localType "Model")
1159
- (Elm.Annotation.namedWith
1160
- [ "Effect" ]
1161
- "Effect"
1162
- [ localType "Msg" ]
1163
- )
1164
-
1165
- SharedState ->
1166
- Elm.Annotation.triple
1167
- (localType "Model")
1168
- (Elm.Annotation.namedWith
1169
- [ "Effect" ]
1170
- "Effect"
1171
- [ localType "Msg" ]
1172
- )
1173
- (Elm.Annotation.maybe (Elm.Annotation.named [ "Shared" ] "Msg"))
1174
- )
1175
- )
1176
- , ( "subscriptions"
1177
- , Elm.Annotation.function
1178
- [ Elm.Annotation.var "routeParams"
1179
- , Elm.Annotation.namedWith [ "Path" ] "Path" []
1180
- , Elm.Annotation.namedWith [ "Shared" ] "Model" []
1181
- , Elm.Annotation.var "model"
1182
- ]
1183
- (Elm.Annotation.namedWith [] "Sub" [ localType "Msg" ])
1184
- )
1185
- ]
1186
- , Elm.Annotation.namedWith
1187
- [ "RouteBuilder" ]
1188
- "Builder"
1189
- [ localType "RouteParams"
1190
- , localType "Data"
1191
- , localType "ActionData"
1192
+ (Elm.Annotation.namedWith [] "Sub" [ localType "Msg" ])
1193
+ )
1194
+ ]
1195
+ , Elm.Annotation.namedWith
1196
+ [ "RouteBuilder" ]
1197
+ "Builder"
1198
+ [ localType "RouteParams"
1199
+ , localType "Data"
1200
+ , localType "ActionData"
1201
+ ]
1192
1202
  ]
1193
- ]
1194
- (Elm.Annotation.namedWith
1195
- [ "RouteBuilder" ]
1196
- "StatefulRoute"
1197
- [ localType "RouteParams"
1198
- , localType "Data"
1199
- , localType "ActionData"
1200
- , localType "Model"
1201
- , localType "Msg"
1202
- ]
1203
- )
1204
- )
1205
- }
1206
- )
1207
- [ Elm.record
1208
- [ Tuple.pair
1209
- "view"
1210
- (Elm.functionReduced
1211
- "buildWithLocalStateUnpack"
1212
- (\functionReducedUnpack ->
1213
- Elm.functionReduced
1214
- "unpack"
1215
- (\functionReducedUnpack_2_1_2_0_2_2_0_1_0_2_0_0 ->
1216
- Elm.functionReduced
1217
- "unpack"
1218
- (buildWithLocalStateArg.view
1219
- functionReducedUnpack
1220
- functionReducedUnpack_2_1_2_0_2_2_0_1_0_2_0_0
1221
- )
1203
+ (Elm.Annotation.namedWith
1204
+ [ "RouteBuilder" ]
1205
+ "StatefulRoute"
1206
+ [ localType "RouteParams"
1207
+ , localType "Data"
1208
+ , localType "ActionData"
1209
+ , localType "Model"
1210
+ , localType "Msg"
1211
+ ]
1222
1212
  )
1213
+ )
1214
+ }
1215
+ )
1216
+ [ Elm.record
1217
+ [ Tuple.pair
1218
+ "view"
1219
+ (Elm.functionReduced
1220
+ "buildWithLocalStateUnpack"
1221
+ (\functionReducedUnpack ->
1222
+ Elm.functionReduced
1223
+ "unpack"
1224
+ (\functionReducedUnpack_2_1_2_0_2_2_0_1_0_2_0_0 ->
1225
+ Elm.functionReduced
1226
+ "unpack"
1227
+ (buildWithLocalStateArg.view
1228
+ functionReducedUnpack
1229
+ functionReducedUnpack_2_1_2_0_2_2_0_1_0_2_0_0
1230
+ )
1231
+ )
1232
+ )
1223
1233
  )
1224
- )
1225
- , Tuple.pair
1226
- "init"
1227
- (Elm.functionReduced
1228
- "buildWithLocalStateUnpack"
1229
- (\functionReducedUnpack ->
1230
- Elm.functionReduced
1231
- "unpack"
1232
- (buildWithLocalStateArg.init
1233
- functionReducedUnpack
1234
- )
1234
+ , Tuple.pair
1235
+ "init"
1236
+ (Elm.functionReduced
1237
+ "buildWithLocalStateUnpack"
1238
+ (\functionReducedUnpack ->
1239
+ Elm.functionReduced
1240
+ "unpack"
1241
+ (buildWithLocalStateArg.init
1242
+ functionReducedUnpack
1243
+ )
1244
+ )
1235
1245
  )
1236
- )
1237
- , Tuple.pair
1238
- "update"
1239
- (Elm.functionReduced
1240
- "buildWithLocalStateUnpack"
1241
- (\functionReducedUnpack ->
1242
- Elm.functionReduced
1243
- "unpack"
1244
- (\functionReducedUnpack_2_1_2_0_2_2_2_1_0_2_0_0 ->
1245
- Elm.functionReduced
1246
- "unpack"
1247
- (\functionReducedUnpack_2_1_2_1_2_0_2_2_2_1_0_2_0_0 ->
1248
- Elm.functionReduced
1249
- "unpack"
1250
- (buildWithLocalStateArg.update
1251
- functionReducedUnpack
1252
- functionReducedUnpack_2_1_2_0_2_2_2_1_0_2_0_0
1253
- functionReducedUnpack_2_1_2_1_2_0_2_2_2_1_0_2_0_0
1254
- )
1255
- )
1256
- )
1246
+ , Tuple.pair
1247
+ "update"
1248
+ (Elm.functionReduced
1249
+ "buildWithLocalStateUnpack"
1250
+ (\functionReducedUnpack ->
1251
+ Elm.functionReduced
1252
+ "unpack"
1253
+ (\functionReducedUnpack_2_1_2_0_2_2_2_1_0_2_0_0 ->
1254
+ Elm.functionReduced
1255
+ "unpack"
1256
+ (\functionReducedUnpack_2_1_2_1_2_0_2_2_2_1_0_2_0_0 ->
1257
+ Elm.functionReduced
1258
+ "unpack"
1259
+ (buildWithLocalStateArg.update
1260
+ functionReducedUnpack
1261
+ functionReducedUnpack_2_1_2_0_2_2_2_1_0_2_0_0
1262
+ functionReducedUnpack_2_1_2_1_2_0_2_2_2_1_0_2_0_0
1263
+ )
1264
+ )
1265
+ )
1266
+ )
1257
1267
  )
1258
- )
1259
- , Tuple.pair
1260
- "subscriptions"
1261
- (Elm.functionReduced
1262
- "buildWithLocalStateUnpack"
1263
- (\functionReducedUnpack ->
1264
- Elm.functionReduced
1265
- "unpack"
1266
- (\functionReducedUnpack_2_1_2_0_2_2_3_1_0_2_0_0 ->
1267
- Elm.functionReduced
1268
- "unpack"
1269
- (\functionReducedUnpack_2_1_2_1_2_0_2_2_3_1_0_2_0_0 ->
1270
- Elm.functionReduced
1271
- "unpack"
1272
- (buildWithLocalStateArg.subscriptions
1273
- functionReducedUnpack
1274
- functionReducedUnpack_2_1_2_0_2_2_3_1_0_2_0_0
1275
- functionReducedUnpack_2_1_2_1_2_0_2_2_3_1_0_2_0_0
1276
- )
1277
- )
1278
- )
1268
+ , Tuple.pair
1269
+ "subscriptions"
1270
+ (Elm.functionReduced
1271
+ "buildWithLocalStateUnpack"
1272
+ (\functionReducedUnpack ->
1273
+ Elm.functionReduced
1274
+ "unpack"
1275
+ (\functionReducedUnpack_2_1_2_0_2_2_3_1_0_2_0_0 ->
1276
+ Elm.functionReduced
1277
+ "unpack"
1278
+ (\functionReducedUnpack_2_1_2_1_2_0_2_2_3_1_0_2_0_0 ->
1279
+ Elm.functionReduced
1280
+ "unpack"
1281
+ (buildWithLocalStateArg.subscriptions
1282
+ functionReducedUnpack
1283
+ functionReducedUnpack_2_1_2_0_2_2_3_1_0_2_0_0
1284
+ functionReducedUnpack_2_1_2_1_2_0_2_2_3_1_0_2_0_0
1285
+ )
1286
+ )
1287
+ )
1288
+ )
1279
1289
  )
1280
- )
1290
+ ]
1281
1291
  ]
1282
- , buildWithLocalStateArg0
1283
- ]
1292
+ )
1293
+ buildWithLocalStateArg0
1284
1294
 
1285
1295
 
1286
1296
  buildNoState_ :
@@ -1290,73 +1300,75 @@ buildNoState_ :
1290
1300
  -> Elm.Expression
1291
1301
  -> Elm.Expression
1292
1302
  buildNoState_ buildNoStateArg buildNoStateArg0 =
1293
- Elm.apply
1294
- (Elm.value
1295
- { importFrom = [ "RouteBuilder" ]
1296
- , name = "buildNoState"
1297
- , annotation =
1298
- Just
1299
- (Elm.Annotation.function
1300
- [ Elm.Annotation.record
1301
- [ ( "view"
1302
- , Elm.Annotation.function
1303
- [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1304
- , Elm.Annotation.namedWith
1305
- [ "RouteBuilder" ]
1306
- "App"
1307
- [ Elm.Annotation.named [] "Data"
1308
- , Elm.Annotation.named [] "ActionData"
1309
- , Elm.Annotation.named [] "RouteParams"
1310
- ]
1311
- ]
1312
- (Elm.Annotation.namedWith
1313
- [ "View" ]
1314
- "View"
1315
- [ Elm.Annotation.namedWith
1316
- [ "PagesMsg" ]
1317
- "PagesMsg"
1318
- [ Elm.Annotation.named [] "Msg" ]
1303
+ Elm.Op.pipe
1304
+ (Elm.apply
1305
+ (Elm.value
1306
+ { importFrom = [ "RouteBuilder" ]
1307
+ , name = "buildNoState"
1308
+ , annotation =
1309
+ Just
1310
+ (Elm.Annotation.function
1311
+ [ Elm.Annotation.record
1312
+ [ ( "view"
1313
+ , Elm.Annotation.function
1314
+ [ Elm.Annotation.namedWith [ "Shared" ] "Model" []
1315
+ , Elm.Annotation.namedWith
1316
+ [ "RouteBuilder" ]
1317
+ "App"
1318
+ [ Elm.Annotation.named [] "Data"
1319
+ , Elm.Annotation.named [] "ActionData"
1320
+ , Elm.Annotation.named [] "RouteParams"
1321
+ ]
1319
1322
  ]
1320
- )
1321
- )
1322
- ]
1323
- , Elm.Annotation.namedWith
1324
- [ "RouteBuilder" ]
1325
- "Builder"
1326
- [ Elm.Annotation.named [] "RouteParams"
1327
- , Elm.Annotation.named [] "Data"
1328
- , Elm.Annotation.named [] "ActionData"
1329
- ]
1330
- ]
1331
- (Elm.Annotation.namedWith
1332
- [ "RouteBuilder" ]
1333
- "StatefulRoute"
1334
- [ Elm.Annotation.named [] "RouteParams"
1335
- , Elm.Annotation.named [] "Data"
1336
- , Elm.Annotation.named [] "ActionData"
1337
- , Elm.Annotation.record []
1338
- , Elm.Annotation.unit
1323
+ (Elm.Annotation.namedWith
1324
+ [ "View" ]
1325
+ "View"
1326
+ [ Elm.Annotation.namedWith
1327
+ [ "PagesMsg" ]
1328
+ "PagesMsg"
1329
+ [ Elm.Annotation.named [] "Msg" ]
1330
+ ]
1331
+ )
1332
+ )
1333
+ ]
1334
+ , Elm.Annotation.namedWith
1335
+ [ "RouteBuilder" ]
1336
+ "Builder"
1337
+ [ Elm.Annotation.named [] "RouteParams"
1338
+ , Elm.Annotation.named [] "Data"
1339
+ , Elm.Annotation.named [] "ActionData"
1340
+ ]
1339
1341
  ]
1340
- )
1341
- )
1342
- }
1343
- )
1344
- [ Elm.record
1345
- [ Tuple.pair
1346
- "view"
1347
- (Elm.functionReduced
1348
- "unpack"
1349
- (\functionReducedUnpack0 ->
1350
- Elm.functionReduced
1351
- "unpack"
1352
- (buildNoStateArg.view
1353
- functionReducedUnpack0
1342
+ (Elm.Annotation.namedWith
1343
+ [ "RouteBuilder" ]
1344
+ "StatefulRoute"
1345
+ [ Elm.Annotation.named [] "RouteParams"
1346
+ , Elm.Annotation.named [] "Data"
1347
+ , Elm.Annotation.named [] "ActionData"
1348
+ , Elm.Annotation.record []
1349
+ , Elm.Annotation.unit
1350
+ ]
1354
1351
  )
1352
+ )
1353
+ }
1354
+ )
1355
+ [ Elm.record
1356
+ [ Tuple.pair
1357
+ "view"
1358
+ (Elm.functionReduced
1359
+ "unpack"
1360
+ (\functionReducedUnpack0 ->
1361
+ Elm.functionReduced
1362
+ "unpack"
1363
+ (buildNoStateArg.view
1364
+ functionReducedUnpack0
1365
+ )
1366
+ )
1355
1367
  )
1356
- )
1368
+ ]
1357
1369
  ]
1358
- , buildNoStateArg0
1359
- ]
1370
+ )
1371
+ buildNoStateArg0
1360
1372
 
1361
1373
 
1362
1374
  effectType : Elm.Annotation.Annotation