firefly-compiler 0.5.77 → 0.5.79

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 (161) hide show
  1. package/bin/firefly.mjs +1 -1
  2. package/compiler/Builder.ff +1 -1
  3. package/compiler/Compiler.ff +7 -3
  4. package/compiler/JsEmitter.ff +1573 -623
  5. package/compiler/Main.ff +7 -2
  6. package/compiler/SourceMap.ff +149 -0
  7. package/core/Buffer.ff +2 -1
  8. package/core/BuildSystem.ff +3 -1
  9. package/core/Core.ff +4 -4
  10. package/core/Error.ff +7 -1
  11. package/core/Js.ff +17 -0
  12. package/firefly.sh +1 -1
  13. package/fireflysite/Html.ff +15 -2
  14. package/fireflysite/Main.ff +2 -1
  15. package/output/js/ff/compiler/Builder.mjs +5 -46
  16. package/output/js/ff/compiler/Builder.mjs.map +181 -0
  17. package/output/js/ff/compiler/Compiler.mjs +23 -16
  18. package/output/js/ff/compiler/Compiler.mjs.map +155 -0
  19. package/output/js/ff/compiler/Dependencies.mjs +12 -14
  20. package/output/js/ff/compiler/Dependencies.mjs.map +128 -0
  21. package/output/js/ff/compiler/DependencyLock.mjs +1 -4
  22. package/output/js/ff/compiler/DependencyLock.mjs.map +22 -0
  23. package/output/js/ff/compiler/Deriver.mjs +10 -11
  24. package/output/js/ff/compiler/Deriver.mjs.map +204 -0
  25. package/output/js/ff/compiler/Dictionaries.mjs +12 -13
  26. package/output/js/ff/compiler/Dictionaries.mjs.map +183 -0
  27. package/output/js/ff/compiler/Environment.mjs +24 -27
  28. package/output/js/ff/compiler/Environment.mjs.map +141 -0
  29. package/output/js/ff/compiler/Inference.mjs +85 -94
  30. package/output/js/ff/compiler/Inference.mjs.map +355 -0
  31. package/output/js/ff/compiler/JsEmitter.mjs +3730 -1682
  32. package/output/js/ff/compiler/JsEmitter.mjs.map +423 -0
  33. package/output/js/ff/compiler/JsImporter.mjs +9 -12
  34. package/output/js/ff/compiler/JsImporter.mjs.map +52 -0
  35. package/output/js/ff/compiler/LspHook.mjs +17 -18
  36. package/output/js/ff/compiler/LspHook.mjs.map +140 -0
  37. package/output/js/ff/compiler/Main.mjs +69 -69
  38. package/output/js/ff/compiler/Main.mjs.map +231 -0
  39. package/output/js/ff/compiler/ModuleCache.mjs +1 -4
  40. package/output/js/ff/compiler/ModuleCache.mjs.map +82 -0
  41. package/output/js/ff/compiler/Parser.mjs +58 -61
  42. package/output/js/ff/compiler/Parser.mjs.map +406 -0
  43. package/output/js/ff/compiler/Patterns.mjs +19 -22
  44. package/output/js/ff/compiler/Patterns.mjs.map +119 -0
  45. package/output/js/ff/compiler/Resolver.mjs +42 -41
  46. package/output/js/ff/compiler/Resolver.mjs.map +294 -0
  47. package/output/js/ff/compiler/SourceMap.mjs +402 -0
  48. package/output/js/ff/compiler/SourceMap.mjs.map +83 -0
  49. package/output/js/ff/compiler/Substitution.mjs +1 -4
  50. package/output/js/ff/compiler/Substitution.mjs.map +138 -0
  51. package/output/js/ff/compiler/Syntax.mjs +252 -251
  52. package/output/js/ff/compiler/Syntax.mjs.map +351 -0
  53. package/output/js/ff/compiler/Token.mjs +17 -22
  54. package/output/js/ff/compiler/Token.mjs.map +113 -0
  55. package/output/js/ff/compiler/Tokenizer.mjs +5 -12
  56. package/output/js/ff/compiler/Tokenizer.mjs.map +101 -0
  57. package/output/js/ff/compiler/Unification.mjs +32 -33
  58. package/output/js/ff/compiler/Unification.mjs.map +135 -0
  59. package/output/js/ff/compiler/Wildcards.mjs +1 -4
  60. package/output/js/ff/compiler/Wildcards.mjs.map +69 -0
  61. package/output/js/ff/compiler/Workspace.mjs +17 -16
  62. package/output/js/ff/compiler/Workspace.mjs.map +96 -0
  63. package/output/js/ff/core/Any.mjs +1 -4
  64. package/output/js/ff/core/Any.mjs.map +21 -0
  65. package/output/js/ff/core/Array.mjs +14 -15
  66. package/output/js/ff/core/Array.mjs.map +90 -0
  67. package/output/js/ff/core/AssetSystem.mjs +1 -4
  68. package/output/js/ff/core/AssetSystem.mjs.map +56 -0
  69. package/output/js/ff/core/Atomic.mjs +1 -4
  70. package/output/js/ff/core/Atomic.mjs.map +24 -0
  71. package/output/js/ff/core/Bool.mjs +4 -9
  72. package/output/js/ff/core/Bool.mjs.map +19 -0
  73. package/output/js/ff/core/BrowserSystem.mjs +1 -8
  74. package/output/js/ff/core/BrowserSystem.mjs.map +47 -0
  75. package/output/js/ff/core/Buffer.mjs +18 -17
  76. package/output/js/ff/core/Buffer.mjs.map +123 -0
  77. package/output/js/ff/core/BuildSystem.mjs +7 -10
  78. package/output/js/ff/core/BuildSystem.mjs.map +87 -0
  79. package/output/js/ff/core/Channel.mjs +1 -4
  80. package/output/js/ff/core/Channel.mjs.map +67 -0
  81. package/output/js/ff/core/Char.mjs +1 -8
  82. package/output/js/ff/core/Char.mjs.map +21 -0
  83. package/output/js/ff/core/Core.mjs +9 -16
  84. package/output/js/ff/core/Core.mjs.map +38 -0
  85. package/output/js/ff/core/Crypto.mjs +1 -4
  86. package/output/js/ff/core/Crypto.mjs.map +65 -0
  87. package/output/js/ff/core/Date.mjs +8 -7
  88. package/output/js/ff/core/Date.mjs.map +168 -0
  89. package/output/js/ff/core/Duration.mjs +4 -9
  90. package/output/js/ff/core/Duration.mjs.map +18 -0
  91. package/output/js/ff/core/Equal.mjs +9 -14
  92. package/output/js/ff/core/Equal.mjs.map +22 -0
  93. package/output/js/ff/core/Error.mjs +33 -10
  94. package/output/js/ff/core/Error.mjs.map +34 -0
  95. package/output/js/ff/core/FileHandle.mjs +1 -8
  96. package/output/js/ff/core/FileHandle.mjs.map +32 -0
  97. package/output/js/ff/core/Float.mjs +4 -5
  98. package/output/js/ff/core/Float.mjs.map +93 -0
  99. package/output/js/ff/core/HttpClient.mjs +1 -4
  100. package/output/js/ff/core/HttpClient.mjs.map +62 -0
  101. package/output/js/ff/core/Int.mjs +4 -9
  102. package/output/js/ff/core/Int.mjs.map +49 -0
  103. package/output/js/ff/core/IntMap.mjs +3 -6
  104. package/output/js/ff/core/IntMap.mjs.map +52 -0
  105. package/output/js/ff/core/Js.mjs +29 -8
  106. package/output/js/ff/core/Js.mjs.map +125 -0
  107. package/output/js/ff/core/JsSystem.mjs +1 -8
  108. package/output/js/ff/core/JsSystem.mjs.map +59 -0
  109. package/output/js/ff/core/JsValue.mjs +23 -42
  110. package/output/js/ff/core/JsValue.mjs.map +155 -0
  111. package/output/js/ff/core/Json.mjs +25 -26
  112. package/output/js/ff/core/Json.mjs.map +134 -0
  113. package/output/js/ff/core/List.mjs +11 -12
  114. package/output/js/ff/core/List.mjs.map +123 -0
  115. package/output/js/ff/core/Lock.mjs +7 -14
  116. package/output/js/ff/core/Lock.mjs.map +52 -0
  117. package/output/js/ff/core/Log.mjs +1 -8
  118. package/output/js/ff/core/Log.mjs.map +26 -0
  119. package/output/js/ff/core/Map.mjs +6 -7
  120. package/output/js/ff/core/Map.mjs.map +67 -0
  121. package/output/js/ff/core/NodeSystem.mjs +11 -14
  122. package/output/js/ff/core/NodeSystem.mjs.map +137 -0
  123. package/output/js/ff/core/Nothing.mjs +1 -10
  124. package/output/js/ff/core/Nothing.mjs.map +11 -0
  125. package/output/js/ff/core/Option.mjs +10 -15
  126. package/output/js/ff/core/Option.mjs.map +67 -0
  127. package/output/js/ff/core/Ordering.mjs +12 -13
  128. package/output/js/ff/core/Ordering.mjs.map +48 -0
  129. package/output/js/ff/core/Pair.mjs +8 -13
  130. package/output/js/ff/core/Pair.mjs.map +48 -0
  131. package/output/js/ff/core/Path.mjs +5 -14
  132. package/output/js/ff/core/Path.mjs.map +178 -0
  133. package/output/js/ff/core/Queue.mjs +1 -4
  134. package/output/js/ff/core/Queue.mjs.map +45 -0
  135. package/output/js/ff/core/Random.mjs +1 -4
  136. package/output/js/ff/core/Random.mjs.map +79 -0
  137. package/output/js/ff/core/RbMap.mjs +1 -16
  138. package/output/js/ff/core/RbMap.mjs.map +92 -0
  139. package/output/js/ff/core/Serializable.mjs +17 -22
  140. package/output/js/ff/core/Serializable.mjs.map +73 -0
  141. package/output/js/ff/core/Set.mjs +6 -7
  142. package/output/js/ff/core/Set.mjs.map +45 -0
  143. package/output/js/ff/core/Show.mjs +11 -20
  144. package/output/js/ff/core/Show.mjs.map +29 -0
  145. package/output/js/ff/core/SourceLocation.mjs +7 -8
  146. package/output/js/ff/core/SourceLocation.mjs.map +41 -0
  147. package/output/js/ff/core/Stream.mjs +1 -4
  148. package/output/js/ff/core/Stream.mjs.map +92 -0
  149. package/output/js/ff/core/String.mjs +14 -19
  150. package/output/js/ff/core/String.mjs.map +106 -0
  151. package/output/js/ff/core/StringMap.mjs +3 -6
  152. package/output/js/ff/core/StringMap.mjs.map +52 -0
  153. package/output/js/ff/core/Task.mjs +1 -8
  154. package/output/js/ff/core/Task.mjs.map +79 -0
  155. package/output/js/ff/core/Try.mjs +3 -6
  156. package/output/js/ff/core/Try.mjs.map +41 -0
  157. package/output/js/ff/core/Unit.mjs +5 -12
  158. package/output/js/ff/core/Unit.mjs.map +18 -0
  159. package/package.json +1 -2
  160. package/vscode/package.json +1 -1
  161. package/webserver/WebServer.ff +1 -1
@@ -1,5 +1,3 @@
1
-
2
-
3
1
  import * as ff_compiler_Syntax from "../../ff/compiler/Syntax.mjs"
4
2
 
5
3
  import * as ff_core_Any from "../../ff/core/Any.mjs"
@@ -377,9 +375,9 @@ return ff_core_Error.Error_rethrow(error_)
377
375
  }
378
376
  {
379
377
  const allErrors_ = _1;
380
- return ff_core_Core.throw_(ff_compiler_Syntax.CompileErrors(ff_core_List.List_map(allErrors_, ((_w1) => {
378
+ throw ff_core_Js.initializeError_(ff_compiler_Syntax.CompileErrors(ff_core_List.List_map(allErrors_, ((_w1) => {
381
379
  return _w1.first_
382
- }))), ff_compiler_Syntax.ff_core_Any_HasAnyTag$ff_compiler_Syntax_CompileErrors, ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_CompileErrors)
380
+ }))), new Error(), ff_compiler_Syntax.ff_core_Any_HasAnyTag$ff_compiler_Syntax_CompileErrors, ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_CompileErrors)
383
381
  return
384
382
  }
385
383
  }
@@ -430,9 +428,9 @@ return ff_core_Error.Error_rethrow(error_)
430
428
  }
431
429
  {
432
430
  const allErrors_ = _1;
433
- return ff_core_Core.throw_(ff_compiler_Syntax.CompileErrors(ff_core_List.List_map(allErrors_, ((_w1) => {
431
+ throw ff_core_Js.initializeError_(ff_compiler_Syntax.CompileErrors(ff_core_List.List_map(allErrors_, ((_w1) => {
434
432
  return _w1.first_
435
- }))), ff_compiler_Syntax.ff_core_Any_HasAnyTag$ff_compiler_Syntax_CompileErrors, ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_CompileErrors)
433
+ }))), new Error(), ff_compiler_Syntax.ff_core_Any_HasAnyTag$ff_compiler_Syntax_CompileErrors, ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_CompileErrors)
436
434
  return
437
435
  }
438
436
  }
@@ -843,7 +841,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Location" + "[") + "]")
843
841
  },
844
842
  async anyTag_$($task) {
845
843
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Location" + "[") + "]"))
846
- }
844
+ },
847
845
  };
848
846
 
849
847
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_CompileError = {
@@ -852,7 +850,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.CompileError" + "[") +
852
850
  },
853
851
  async anyTag_$($task) {
854
852
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.CompileError" + "[") + "]"))
855
- }
853
+ },
856
854
  };
857
855
 
858
856
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_CompileErrors = {
@@ -861,7 +859,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.CompileErrors" + "[") +
861
859
  },
862
860
  async anyTag_$($task) {
863
861
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.CompileErrors" + "[") + "]"))
864
- }
862
+ },
865
863
  };
866
864
 
867
865
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_ModuleWithPackageInfo = {
@@ -870,7 +868,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.ModuleWithPackageInfo"
870
868
  },
871
869
  async anyTag_$($task) {
872
870
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.ModuleWithPackageInfo" + "[") + "]"))
873
- }
871
+ },
874
872
  };
875
873
 
876
874
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_PackageInfo = {
@@ -879,7 +877,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.PackageInfo" + "[") + "
879
877
  },
880
878
  async anyTag_$($task) {
881
879
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.PackageInfo" + "[") + "]"))
882
- }
880
+ },
883
881
  };
884
882
 
885
883
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_PackagePair = {
@@ -888,7 +886,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.PackagePair" + "[") + "
888
886
  },
889
887
  async anyTag_$($task) {
890
888
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.PackagePair" + "[") + "]"))
891
- }
889
+ },
892
890
  };
893
891
 
894
892
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_ModuleKey = {
@@ -897,7 +895,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.ModuleKey" + "[") + "]"
897
895
  },
898
896
  async anyTag_$($task) {
899
897
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.ModuleKey" + "[") + "]"))
900
- }
898
+ },
901
899
  };
902
900
 
903
901
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Module = {
@@ -906,7 +904,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Module" + "[") + "]"))
906
904
  },
907
905
  async anyTag_$($task) {
908
906
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Module" + "[") + "]"))
909
- }
907
+ },
910
908
  };
911
909
 
912
910
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DPackage = {
@@ -915,7 +913,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DPackage" + "[") + "]")
915
913
  },
916
914
  async anyTag_$($task) {
917
915
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DPackage" + "[") + "]"))
918
- }
916
+ },
919
917
  };
920
918
 
921
919
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DDependency = {
@@ -924,7 +922,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DDependency" + "[") + "
924
922
  },
925
923
  async anyTag_$($task) {
926
924
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DDependency" + "[") + "]"))
927
- }
925
+ },
928
926
  };
929
927
 
930
928
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DInclude = {
@@ -933,7 +931,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DInclude" + "[") + "]")
933
931
  },
934
932
  async anyTag_$($task) {
935
933
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DInclude" + "[") + "]"))
936
- }
934
+ },
937
935
  };
938
936
 
939
937
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_TargetNames = {
@@ -942,7 +940,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.TargetNames" + "[") + "
942
940
  },
943
941
  async anyTag_$($task) {
944
942
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.TargetNames" + "[") + "]"))
945
- }
943
+ },
946
944
  };
947
945
 
948
946
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DImport = {
@@ -951,7 +949,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DImport" + "[") + "]"))
951
949
  },
952
950
  async anyTag_$($task) {
953
951
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DImport" + "[") + "]"))
954
- }
952
+ },
955
953
  };
956
954
 
957
955
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DFunction = {
@@ -960,7 +958,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DFunction" + "[") + "]"
960
958
  },
961
959
  async anyTag_$($task) {
962
960
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DFunction" + "[") + "]"))
963
- }
961
+ },
964
962
  };
965
963
 
966
964
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DLet = {
@@ -969,7 +967,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DLet" + "[") + "]"))
969
967
  },
970
968
  async anyTag_$($task) {
971
969
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DLet" + "[") + "]"))
972
- }
970
+ },
973
971
  };
974
972
 
975
973
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DExtend = {
@@ -978,7 +976,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DExtend" + "[") + "]"))
978
976
  },
979
977
  async anyTag_$($task) {
980
978
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DExtend" + "[") + "]"))
981
- }
979
+ },
982
980
  };
983
981
 
984
982
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DType = {
@@ -987,7 +985,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DType" + "[") + "]"))
987
985
  },
988
986
  async anyTag_$($task) {
989
987
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DType" + "[") + "]"))
990
- }
988
+ },
991
989
  };
992
990
 
993
991
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DTrait = {
@@ -996,7 +994,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DTrait" + "[") + "]"))
996
994
  },
997
995
  async anyTag_$($task) {
998
996
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DTrait" + "[") + "]"))
999
- }
997
+ },
1000
998
  };
1001
999
 
1002
1000
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_DInstance = {
@@ -1005,7 +1003,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DInstance" + "[") + "]"
1005
1003
  },
1006
1004
  async anyTag_$($task) {
1007
1005
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.DInstance" + "[") + "]"))
1008
- }
1006
+ },
1009
1007
  };
1010
1008
 
1011
1009
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Term = {
@@ -1014,7 +1012,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Term" + "[") + "]"))
1014
1012
  },
1015
1013
  async anyTag_$($task) {
1016
1014
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Term" + "[") + "]"))
1017
- }
1015
+ },
1018
1016
  };
1019
1017
 
1020
1018
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_CallTarget = {
@@ -1023,7 +1021,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.CallTarget" + "[") + "]
1023
1021
  },
1024
1022
  async anyTag_$($task) {
1025
1023
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.CallTarget" + "[") + "]"))
1026
- }
1024
+ },
1027
1025
  };
1028
1026
 
1029
1027
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_MatchCase = {
@@ -1032,7 +1030,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.MatchCase" + "[") + "]"
1032
1030
  },
1033
1031
  async anyTag_$($task) {
1034
1032
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.MatchCase" + "[") + "]"))
1035
- }
1033
+ },
1036
1034
  };
1037
1035
 
1038
1036
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_MatchPattern = {
@@ -1041,7 +1039,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.MatchPattern" + "[") +
1041
1039
  },
1042
1040
  async anyTag_$($task) {
1043
1041
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.MatchPattern" + "[") + "]"))
1044
- }
1042
+ },
1045
1043
  };
1046
1044
 
1047
1045
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_MatchGuard = {
@@ -1050,7 +1048,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.MatchGuard" + "[") + "]
1050
1048
  },
1051
1049
  async anyTag_$($task) {
1052
1050
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.MatchGuard" + "[") + "]"))
1053
- }
1051
+ },
1054
1052
  };
1055
1053
 
1056
1054
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Dictionary = {
@@ -1059,7 +1057,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Dictionary" + "[") + "]
1059
1057
  },
1060
1058
  async anyTag_$($task) {
1061
1059
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Dictionary" + "[") + "]"))
1062
- }
1060
+ },
1063
1061
  };
1064
1062
 
1065
1063
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Signature = {
@@ -1068,7 +1066,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Signature" + "[") + "]"
1068
1066
  },
1069
1067
  async anyTag_$($task) {
1070
1068
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Signature" + "[") + "]"))
1071
- }
1069
+ },
1072
1070
  };
1073
1071
 
1074
1072
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Lambda = {
@@ -1077,7 +1075,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Lambda" + "[") + "]"))
1077
1075
  },
1078
1076
  async anyTag_$($task) {
1079
1077
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Lambda" + "[") + "]"))
1080
- }
1078
+ },
1081
1079
  };
1082
1080
 
1083
1081
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Variant = {
@@ -1086,7 +1084,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Variant" + "[") + "]"))
1086
1084
  },
1087
1085
  async anyTag_$($task) {
1088
1086
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Variant" + "[") + "]"))
1089
- }
1087
+ },
1090
1088
  };
1091
1089
 
1092
1090
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Parameter = {
@@ -1095,7 +1093,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Parameter" + "[") + "]"
1095
1093
  },
1096
1094
  async anyTag_$($task) {
1097
1095
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Parameter" + "[") + "]"))
1098
- }
1096
+ },
1099
1097
  };
1100
1098
 
1101
1099
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Argument = {
@@ -1104,7 +1102,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Argument" + "[") + "]")
1104
1102
  },
1105
1103
  async anyTag_$($task) {
1106
1104
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Argument" + "[") + "]"))
1107
- }
1105
+ },
1108
1106
  };
1109
1107
 
1110
1108
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Field = {
@@ -1113,7 +1111,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Field" + "[") + "]"))
1113
1111
  },
1114
1112
  async anyTag_$($task) {
1115
1113
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Field" + "[") + "]"))
1116
- }
1114
+ },
1117
1115
  };
1118
1116
 
1119
1117
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Constraint = {
@@ -1122,7 +1120,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Constraint" + "[") + "]
1122
1120
  },
1123
1121
  async anyTag_$($task) {
1124
1122
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Constraint" + "[") + "]"))
1125
- }
1123
+ },
1126
1124
  };
1127
1125
 
1128
1126
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Type = {
@@ -1131,7 +1129,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Type" + "[") + "]"))
1131
1129
  },
1132
1130
  async anyTag_$($task) {
1133
1131
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Type" + "[") + "]"))
1134
- }
1132
+ },
1135
1133
  };
1136
1134
 
1137
1135
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Safety = {
@@ -1140,7 +1138,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Safety" + "[") + "]"))
1140
1138
  },
1141
1139
  async anyTag_$($task) {
1142
1140
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Safety" + "[") + "]"))
1143
- }
1141
+ },
1144
1142
  };
1145
1143
 
1146
1144
  export const ff_core_Any_HasAnyTag$ff_compiler_Syntax_Version = {
@@ -1149,7 +1147,7 @@ return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Version" + "[") + "]"))
1149
1147
  },
1150
1148
  async anyTag_$($task) {
1151
1149
  return ff_core_Any.internalAnyTag_((("ff:compiler/Syntax.Version" + "[") + "]"))
1152
- }
1150
+ },
1153
1151
  };
1154
1152
 
1155
1153
  export const ff_core_Show_Show$ff_compiler_Syntax_Location = {
@@ -1166,7 +1164,7 @@ const value_a = value_;
1166
1164
  const z_ = value_a;
1167
1165
  return ((((((("Location" + "(") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.file_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.line_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.column_)) + ")")
1168
1166
  }
1169
- }
1167
+ },
1170
1168
  };
1171
1169
 
1172
1170
  export const ff_core_Show_Show$ff_compiler_Syntax_CompileError = {
@@ -1183,7 +1181,7 @@ const value_a = value_;
1183
1181
  const z_ = value_a;
1184
1182
  return ((((("CompileError" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.message_)) + ")")
1185
1183
  }
1186
- }
1184
+ },
1187
1185
  };
1188
1186
 
1189
1187
  export const ff_core_Show_Show$ff_compiler_Syntax_CompileErrors = {
@@ -1200,7 +1198,7 @@ const value_a = value_;
1200
1198
  const z_ = value_a;
1201
1199
  return ((("CompileErrors" + "(") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_CompileError).show_(z_.errors_)) + ")")
1202
1200
  }
1203
- }
1201
+ },
1204
1202
  };
1205
1203
 
1206
1204
  export const ff_core_Show_Show$ff_compiler_Syntax_ModuleWithPackageInfo = {
@@ -1217,7 +1215,7 @@ const value_a = value_;
1217
1215
  const z_ = value_a;
1218
1216
  return ((((("ModuleWithPackageInfo" + "(") + ff_core_Option.ff_core_Show_Show$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_PackageInfo).show_(z_.packageInfo_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Module.show_(z_.module_)) + ")")
1219
1217
  }
1220
- }
1218
+ },
1221
1219
  };
1222
1220
 
1223
1221
  export const ff_core_Show_Show$ff_compiler_Syntax_PackageInfo = {
@@ -1234,7 +1232,7 @@ const value_a = value_;
1234
1232
  const z_ = value_a;
1235
1233
  return ((((((("PackageInfo" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DPackage.show_(z_.package_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DDependency).show_(z_.dependencies_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DInclude).show_(z_.includes_)) + ")")
1236
1234
  }
1237
- }
1235
+ },
1238
1236
  };
1239
1237
 
1240
1238
  export const ff_core_Show_Show$ff_compiler_Syntax_PackagePair = {
@@ -1251,7 +1249,7 @@ const value_a = value_;
1251
1249
  const z_ = value_a;
1252
1250
  return ((((("PackagePair" + "(") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.group_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ")")
1253
1251
  }
1254
- }
1252
+ },
1255
1253
  };
1256
1254
 
1257
1255
  export const ff_core_Show_Show$ff_compiler_Syntax_ModuleKey = {
@@ -1268,7 +1266,7 @@ const value_a = value_;
1268
1266
  const z_ = value_a;
1269
1267
  return ((((((("ModuleKey" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_PackagePair.show_(z_.packagePair_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.folders_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ")")
1270
1268
  }
1271
- }
1269
+ },
1272
1270
  };
1273
1271
 
1274
1272
  export const ff_core_Show_Show$ff_compiler_Syntax_Module = {
@@ -1285,7 +1283,7 @@ const value_a = value_;
1285
1283
  const z_ = value_a;
1286
1284
  return ((((((((((((((((("Module" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_ModuleKey.show_(z_.moduleKey_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DImport).show_(z_.imports_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DType).show_(z_.types_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DTrait).show_(z_.traits_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DInstance).show_(z_.instances_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DExtend).show_(z_.extends_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DLet).show_(z_.lets_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DFunction).show_(z_.functions_)) + ")")
1287
1285
  }
1288
- }
1286
+ },
1289
1287
  };
1290
1288
 
1291
1289
  export const ff_core_Show_Show$ff_compiler_Syntax_DPackage = {
@@ -1302,7 +1300,7 @@ const value_a = value_;
1302
1300
  const z_ = value_a;
1303
1301
  return ((((((((("DPackage" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_PackagePair.show_(z_.packagePair_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Version.show_(z_.version_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_TargetNames.show_(z_.targets_)) + ")")
1304
1302
  }
1305
- }
1303
+ },
1306
1304
  };
1307
1305
 
1308
1306
  export const ff_core_Show_Show$ff_compiler_Syntax_DDependency = {
@@ -1319,7 +1317,7 @@ const value_a = value_;
1319
1317
  const z_ = value_a;
1320
1318
  return ((((((((((("DDependency" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_PackagePair.show_(z_.packagePair_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Version.show_(z_.version_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Safety.show_(z_.safety_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_TargetNames.show_(z_.targets_)) + ")")
1321
1319
  }
1322
- }
1320
+ },
1323
1321
  };
1324
1322
 
1325
1323
  export const ff_core_Show_Show$ff_compiler_Syntax_DInclude = {
@@ -1336,7 +1334,7 @@ const value_a = value_;
1336
1334
  const z_ = value_a;
1337
1335
  return ((((("DInclude" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.path_)) + ")")
1338
1336
  }
1339
- }
1337
+ },
1340
1338
  };
1341
1339
 
1342
1340
  export const ff_core_Show_Show$ff_compiler_Syntax_TargetNames = {
@@ -1353,7 +1351,7 @@ const value_a = value_;
1353
1351
  const z_ = value_a;
1354
1352
  return ((((("TargetNames" + "(") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.node_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.browser_)) + ")")
1355
1353
  }
1356
- }
1354
+ },
1357
1355
  };
1358
1356
 
1359
1357
  export const ff_core_Show_Show$ff_compiler_Syntax_DImport = {
@@ -1370,7 +1368,7 @@ const value_a = value_;
1370
1368
  const z_ = value_a;
1371
1369
  return ((((((("DImport" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.alias_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_ModuleKey.show_(z_.moduleKey_)) + ")")
1372
1370
  }
1373
- }
1371
+ },
1374
1372
  };
1375
1373
 
1376
1374
  export const ff_core_Show_Show$ff_compiler_Syntax_DFunction = {
@@ -1387,7 +1385,7 @@ const value_a = value_;
1387
1385
  const z_ = value_a;
1388
1386
  return ((((((("DFunction" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Signature.show_(z_.signature_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Lambda.show_(z_.body_)) + ")")
1389
1387
  }
1390
- }
1388
+ },
1391
1389
  };
1392
1390
 
1393
1391
  export const ff_core_Show_Show$ff_compiler_Syntax_DLet = {
@@ -1404,7 +1402,7 @@ const value_a = value_;
1404
1402
  const z_ = value_a;
1405
1403
  return ((((((((("DLet" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type.show_(z_.variableType_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Term.show_(z_.value_)) + ")")
1406
1404
  }
1407
- }
1405
+ },
1408
1406
  };
1409
1407
 
1410
1408
  export const ff_core_Show_Show$ff_compiler_Syntax_DExtend = {
@@ -1421,7 +1419,7 @@ const value_a = value_;
1421
1419
  const z_ = value_a;
1422
1420
  return ((((((((((((("DExtend" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.generics_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Constraint).show_(z_.constraints_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type.show_(z_.type_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DFunction).show_(z_.methods_)) + ")")
1423
1421
  }
1424
- }
1422
+ },
1425
1423
  };
1426
1424
 
1427
1425
  export const ff_core_Show_Show$ff_compiler_Syntax_DType = {
@@ -1438,7 +1436,7 @@ const value_a = value_;
1438
1436
  const z_ = value_a;
1439
1437
  return ((((((((((((((((("DType" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.newtype_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.data_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.generics_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Constraint).show_(z_.constraints_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Parameter).show_(z_.commonFields_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Variant).show_(z_.variants_)) + ")")
1440
1438
  }
1441
- }
1439
+ },
1442
1440
  };
1443
1441
 
1444
1442
  export const ff_core_Show_Show$ff_compiler_Syntax_DTrait = {
@@ -1455,7 +1453,7 @@ const value_a = value_;
1455
1453
  const z_ = value_a;
1456
1454
  return ((((((((((((((((("DTrait" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.generics_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Constraint).show_(z_.constraints_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Parameter).show_(z_.generatorParameters_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Signature).show_(z_.methods_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_Pair_Pair(ff_core_Show.ff_core_Show_Show$ff_core_String_String, ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Lambda)).show_(z_.methodDefaults_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_Pair_Pair(ff_core_Show.ff_core_Show_Show$ff_core_String_String, ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Lambda)).show_(z_.methodGenerators_)) + ")")
1457
1455
  }
1458
- }
1456
+ },
1459
1457
  };
1460
1458
 
1461
1459
  export const ff_core_Show_Show$ff_compiler_Syntax_DInstance = {
@@ -1472,7 +1470,7 @@ const value_a = value_;
1472
1470
  const z_ = value_a;
1473
1471
  return ((((((((((((((((("DInstance" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.generics_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Constraint).show_(z_.constraints_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.traitName_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type).show_(z_.typeArguments_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Argument).show_(z_.generatorArguments_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_DFunction).show_(z_.methods_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.derived_)) + ")")
1474
1472
  }
1475
- }
1473
+ },
1476
1474
  };
1477
1475
 
1478
1476
  export const ff_core_Show_Show$ff_compiler_Syntax_Term = {
@@ -1641,7 +1639,7 @@ return ((((((((("EField" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compil
1641
1639
  const z_ = value_a;
1642
1640
  return ((((("EWildcard" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.index_)) + ")")
1643
1641
  }
1644
- }
1642
+ },
1645
1643
  };
1646
1644
 
1647
1645
  export const ff_core_Show_Show$ff_compiler_Syntax_CallTarget = {
@@ -1666,7 +1664,7 @@ return ((((("DynamicCall" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compi
1666
1664
  const z_ = value_a;
1667
1665
  return ((((((("StaticCall" + "(") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.tailCall_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.instanceCall_)) + ")")
1668
1666
  }
1669
- }
1667
+ },
1670
1668
  };
1671
1669
 
1672
1670
  export const ff_core_Show_Show$ff_compiler_Syntax_MatchCase = {
@@ -1683,7 +1681,7 @@ const value_a = value_;
1683
1681
  const z_ = value_a;
1684
1682
  return ((((((((("MatchCase" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_MatchPattern).show_(z_.patterns_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_MatchGuard).show_(z_.guards_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Term.show_(z_.body_)) + ")")
1685
1683
  }
1686
- }
1684
+ },
1687
1685
  };
1688
1686
 
1689
1687
  export const ff_core_Show_Show$ff_compiler_Syntax_MatchPattern = {
@@ -1748,7 +1746,7 @@ return ((((((((("PVariantAs" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_co
1748
1746
  const z_ = value_a;
1749
1747
  return ((((((("PAlias" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_MatchPattern.show_(z_.pattern_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.variable_)) + ")")
1750
1748
  }
1751
- }
1749
+ },
1752
1750
  };
1753
1751
 
1754
1752
  export const ff_core_Show_Show$ff_compiler_Syntax_MatchGuard = {
@@ -1765,7 +1763,7 @@ const value_a = value_;
1765
1763
  const z_ = value_a;
1766
1764
  return ((((((("MatchGuard" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Term.show_(z_.term_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_MatchPattern.show_(z_.pattern_)) + ")")
1767
1765
  }
1768
- }
1766
+ },
1769
1767
  };
1770
1768
 
1771
1769
  export const ff_core_Show_Show$ff_compiler_Syntax_Dictionary = {
@@ -1782,7 +1780,7 @@ const value_a = value_;
1782
1780
  const z_ = value_a;
1783
1781
  return ((((((((("Dictionary" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_ModuleKey.show_(z_.moduleKey_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.traitName_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.typeName_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Dictionary).show_(z_.dictionaries_)) + ")")
1784
1782
  }
1785
- }
1783
+ },
1786
1784
  };
1787
1785
 
1788
1786
  export const ff_core_Show_Show$ff_compiler_Syntax_Signature = {
@@ -1799,7 +1797,7 @@ const value_a = value_;
1799
1797
  const z_ = value_a;
1800
1798
  return ((((((((((((((((("Signature" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.member_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.generics_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Constraint).show_(z_.constraints_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Parameter).show_(z_.parameters_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type.show_(z_.returnType_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type.show_(z_.effect_)) + ")")
1801
1799
  }
1802
- }
1800
+ },
1803
1801
  };
1804
1802
 
1805
1803
  export const ff_core_Show_Show$ff_compiler_Syntax_Lambda = {
@@ -1816,7 +1814,7 @@ const value_a = value_;
1816
1814
  const z_ = value_a;
1817
1815
  return ((((((("Lambda" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type.show_(z_.effect_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_MatchCase).show_(z_.cases_)) + ")")
1818
1816
  }
1819
- }
1817
+ },
1820
1818
  };
1821
1819
 
1822
1820
  export const ff_core_Show_Show$ff_compiler_Syntax_Variant = {
@@ -1833,7 +1831,7 @@ const value_a = value_;
1833
1831
  const z_ = value_a;
1834
1832
  return ((((((("Variant" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Parameter).show_(z_.fields_)) + ")")
1835
1833
  }
1836
- }
1834
+ },
1837
1835
  };
1838
1836
 
1839
1837
  export const ff_core_Show_Show$ff_compiler_Syntax_Parameter = {
@@ -1850,7 +1848,7 @@ const value_a = value_;
1850
1848
  const z_ = value_a;
1851
1849
  return ((((((((((("Parameter" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Bool_Bool.show_(z_.mutable_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type.show_(z_.valueType_)) + ", ") + ff_core_Option.ff_core_Show_Show$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Term).show_(z_.default_)) + ")")
1852
1850
  }
1853
- }
1851
+ },
1854
1852
  };
1855
1853
 
1856
1854
  export const ff_core_Show_Show$ff_compiler_Syntax_Argument = {
@@ -1867,7 +1865,7 @@ const value_a = value_;
1867
1865
  const z_ = value_a;
1868
1866
  return ((((((("Argument" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Option.ff_core_Show_Show$ff_core_Option_Option(ff_core_Show.ff_core_Show_Show$ff_core_String_String).show_(z_.name_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Term.show_(z_.value_)) + ")")
1869
1867
  }
1870
- }
1868
+ },
1871
1869
  };
1872
1870
 
1873
1871
  export const ff_core_Show_Show$ff_compiler_Syntax_Field = {
@@ -1884,7 +1882,7 @@ const value_a = value_;
1884
1882
  const z_ = value_a;
1885
1883
  return ((((((("Field" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Term.show_(z_.value_)) + ")")
1886
1884
  }
1887
- }
1885
+ },
1888
1886
  };
1889
1887
 
1890
1888
  export const ff_core_Show_Show$ff_compiler_Syntax_Constraint = {
@@ -1901,7 +1899,7 @@ const value_a = value_;
1901
1899
  const z_ = value_a;
1902
1900
  return ((((((("Constraint" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_String_String.show_(z_.name_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_List_List(ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Type).show_(z_.generics_)) + ")")
1903
1901
  }
1904
- }
1902
+ },
1905
1903
  };
1906
1904
 
1907
1905
  export const ff_core_Show_Show$ff_compiler_Syntax_Type = {
@@ -1926,7 +1924,7 @@ return ((((((("TConstructor" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_co
1926
1924
  const z_ = value_a;
1927
1925
  return ((((("TVariable" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.index_)) + ")")
1928
1926
  }
1929
- }
1927
+ },
1930
1928
  };
1931
1929
 
1932
1930
  export const ff_core_Show_Show$ff_compiler_Syntax_Safety = {
@@ -1959,7 +1957,7 @@ return "Unsafe"
1959
1957
  const z_ = value_a;
1960
1958
  return "Trusted"
1961
1959
  }
1962
- }
1960
+ },
1963
1961
  };
1964
1962
 
1965
1963
  export const ff_core_Show_Show$ff_compiler_Syntax_Version = {
@@ -1976,7 +1974,7 @@ const value_a = value_;
1976
1974
  const z_ = value_a;
1977
1975
  return ((((((((("Version" + "(") + ff_compiler_Syntax.ff_core_Show_Show$ff_compiler_Syntax_Location.show_(z_.at_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.major_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.minor_)) + ", ") + ff_core_Show.ff_core_Show_Show$ff_core_Int_Int.show_(z_.patch_)) + ")")
1978
1976
  }
1979
- }
1977
+ },
1980
1978
  };
1981
1979
 
1982
1980
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Location = {
@@ -1999,7 +1997,7 @@ return true
1999
1997
  {
2000
1998
  return ((x_.file_ === y_.file_) && ((x_.line_ === y_.line_) && (x_.column_ === y_.column_)))
2001
1999
  }
2002
- }
2000
+ },
2003
2001
  };
2004
2002
 
2005
2003
  export const ff_core_Equal_Equal$ff_compiler_Syntax_CompileError = {
@@ -2022,7 +2020,7 @@ return true
2022
2020
  {
2023
2021
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (x_.message_ === y_.message_))
2024
2022
  }
2025
- }
2023
+ },
2026
2024
  };
2027
2025
 
2028
2026
  export const ff_core_Equal_Equal$ff_compiler_Syntax_CompileErrors = {
@@ -2045,7 +2043,7 @@ return true
2045
2043
  {
2046
2044
  return ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_CompileError).equals_(x_.errors_, y_.errors_)
2047
2045
  }
2048
- }
2046
+ },
2049
2047
  };
2050
2048
 
2051
2049
  export const ff_core_Equal_Equal$ff_compiler_Syntax_ModuleWithPackageInfo = {
@@ -2068,7 +2066,7 @@ return true
2068
2066
  {
2069
2067
  return (ff_core_Option.ff_core_Equal_Equal$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_PackageInfo).equals_(x_.packageInfo_, y_.packageInfo_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Module.equals_(x_.module_, y_.module_))
2070
2068
  }
2071
- }
2069
+ },
2072
2070
  };
2073
2071
 
2074
2072
  export const ff_core_Equal_Equal$ff_compiler_Syntax_PackageInfo = {
@@ -2091,7 +2089,7 @@ return true
2091
2089
  {
2092
2090
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DPackage.equals_(x_.package_, y_.package_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DDependency).equals_(x_.dependencies_, y_.dependencies_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DInclude).equals_(x_.includes_, y_.includes_)))
2093
2091
  }
2094
- }
2092
+ },
2095
2093
  };
2096
2094
 
2097
2095
  export const ff_core_Equal_Equal$ff_compiler_Syntax_PackagePair = {
@@ -2114,7 +2112,7 @@ return true
2114
2112
  {
2115
2113
  return ((x_.group_ === y_.group_) && (x_.name_ === y_.name_))
2116
2114
  }
2117
- }
2115
+ },
2118
2116
  };
2119
2117
 
2120
2118
  export const ff_core_Equal_Equal$ff_compiler_Syntax_ModuleKey = {
@@ -2137,7 +2135,7 @@ return true
2137
2135
  {
2138
2136
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_PackagePair.equals_(x_.packagePair_, y_.packagePair_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.folders_, y_.folders_) && (x_.name_ === y_.name_)))
2139
2137
  }
2140
- }
2138
+ },
2141
2139
  };
2142
2140
 
2143
2141
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Module = {
@@ -2160,7 +2158,7 @@ return true
2160
2158
  {
2161
2159
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_ModuleKey.equals_(x_.moduleKey_, y_.moduleKey_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DImport).equals_(x_.imports_, y_.imports_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DType).equals_(x_.types_, y_.types_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DTrait).equals_(x_.traits_, y_.traits_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DInstance).equals_(x_.instances_, y_.instances_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DExtend).equals_(x_.extends_, y_.extends_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DLet).equals_(x_.lets_, y_.lets_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DFunction).equals_(x_.functions_, y_.functions_))))))))
2162
2160
  }
2163
- }
2161
+ },
2164
2162
  };
2165
2163
 
2166
2164
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DPackage = {
@@ -2183,7 +2181,7 @@ return true
2183
2181
  {
2184
2182
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_PackagePair.equals_(x_.packagePair_, y_.packagePair_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Version.equals_(x_.version_, y_.version_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_TargetNames.equals_(x_.targets_, y_.targets_))))
2185
2183
  }
2186
- }
2184
+ },
2187
2185
  };
2188
2186
 
2189
2187
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DDependency = {
@@ -2206,7 +2204,7 @@ return true
2206
2204
  {
2207
2205
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_PackagePair.equals_(x_.packagePair_, y_.packagePair_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Version.equals_(x_.version_, y_.version_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Safety.equals_(x_.safety_, y_.safety_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_TargetNames.equals_(x_.targets_, y_.targets_)))))
2208
2206
  }
2209
- }
2207
+ },
2210
2208
  };
2211
2209
 
2212
2210
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DInclude = {
@@ -2229,7 +2227,7 @@ return true
2229
2227
  {
2230
2228
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (x_.path_ === y_.path_))
2231
2229
  }
2232
- }
2230
+ },
2233
2231
  };
2234
2232
 
2235
2233
  export const ff_core_Equal_Equal$ff_compiler_Syntax_TargetNames = {
@@ -2252,7 +2250,7 @@ return true
2252
2250
  {
2253
2251
  return ((x_.node_ === y_.node_) && (x_.browser_ === y_.browser_))
2254
2252
  }
2255
- }
2253
+ },
2256
2254
  };
2257
2255
 
2258
2256
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DImport = {
@@ -2275,7 +2273,7 @@ return true
2275
2273
  {
2276
2274
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.alias_ === y_.alias_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_ModuleKey.equals_(x_.moduleKey_, y_.moduleKey_)))
2277
2275
  }
2278
- }
2276
+ },
2279
2277
  };
2280
2278
 
2281
2279
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DFunction = {
@@ -2298,7 +2296,7 @@ return true
2298
2296
  {
2299
2297
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Signature.equals_(x_.signature_, y_.signature_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Lambda.equals_(x_.body_, y_.body_)))
2300
2298
  }
2301
- }
2299
+ },
2302
2300
  };
2303
2301
 
2304
2302
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DLet = {
@@ -2321,7 +2319,7 @@ return true
2321
2319
  {
2322
2320
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type.equals_(x_.variableType_, y_.variableType_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Term.equals_(x_.value_, y_.value_))))
2323
2321
  }
2324
- }
2322
+ },
2325
2323
  };
2326
2324
 
2327
2325
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DExtend = {
@@ -2344,7 +2342,7 @@ return true
2344
2342
  {
2345
2343
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.generics_, y_.generics_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Constraint).equals_(x_.constraints_, y_.constraints_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type.equals_(x_.type_, y_.type_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DFunction).equals_(x_.methods_, y_.methods_))))))
2346
2344
  }
2347
- }
2345
+ },
2348
2346
  };
2349
2347
 
2350
2348
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DType = {
@@ -2367,7 +2365,7 @@ return true
2367
2365
  {
2368
2366
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.newtype_ === y_.newtype_) && ((x_.data_ === y_.data_) && ((x_.name_ === y_.name_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.generics_, y_.generics_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Constraint).equals_(x_.constraints_, y_.constraints_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Parameter).equals_(x_.commonFields_, y_.commonFields_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Variant).equals_(x_.variants_, y_.variants_))))))))
2369
2367
  }
2370
- }
2368
+ },
2371
2369
  };
2372
2370
 
2373
2371
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DTrait = {
@@ -2390,7 +2388,7 @@ return true
2390
2388
  {
2391
2389
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.generics_, y_.generics_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Constraint).equals_(x_.constraints_, y_.constraints_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Parameter).equals_(x_.generatorParameters_, y_.generatorParameters_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Signature).equals_(x_.methods_, y_.methods_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Pair.ff_core_Equal_Equal$ff_core_Pair_Pair(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String, ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Lambda)).equals_(x_.methodDefaults_, y_.methodDefaults_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Pair.ff_core_Equal_Equal$ff_core_Pair_Pair(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String, ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Lambda)).equals_(x_.methodGenerators_, y_.methodGenerators_))))))))
2392
2390
  }
2393
- }
2391
+ },
2394
2392
  };
2395
2393
 
2396
2394
  export const ff_core_Equal_Equal$ff_compiler_Syntax_DInstance = {
@@ -2413,7 +2411,7 @@ return true
2413
2411
  {
2414
2412
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.generics_, y_.generics_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Constraint).equals_(x_.constraints_, y_.constraints_) && ((x_.traitName_ === y_.traitName_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type).equals_(x_.typeArguments_, y_.typeArguments_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Argument).equals_(x_.generatorArguments_, y_.generatorArguments_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_DFunction).equals_(x_.methods_, y_.methods_) && (x_.derived_ === y_.derived_))))))))
2415
2413
  }
2416
- }
2414
+ },
2417
2415
  };
2418
2416
 
2419
2417
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Term = {
@@ -2636,7 +2634,7 @@ return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equal
2636
2634
  {
2637
2635
  return false
2638
2636
  }
2639
- }
2637
+ },
2640
2638
  };
2641
2639
 
2642
2640
  export const ff_core_Equal_Equal$ff_compiler_Syntax_CallTarget = {
@@ -2679,7 +2677,7 @@ return ((x_.name_ === y_.name_) && ((x_.tailCall_ === y_.tailCall_) && (x_.insta
2679
2677
  {
2680
2678
  return false
2681
2679
  }
2682
- }
2680
+ },
2683
2681
  };
2684
2682
 
2685
2683
  export const ff_core_Equal_Equal$ff_compiler_Syntax_MatchCase = {
@@ -2702,7 +2700,7 @@ return true
2702
2700
  {
2703
2701
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_MatchPattern).equals_(x_.patterns_, y_.patterns_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_MatchGuard).equals_(x_.guards_, y_.guards_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Term.equals_(x_.body_, y_.body_))))
2704
2702
  }
2705
- }
2703
+ },
2706
2704
  };
2707
2705
 
2708
2706
  export const ff_core_Equal_Equal$ff_compiler_Syntax_MatchPattern = {
@@ -2795,7 +2793,7 @@ return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equal
2795
2793
  {
2796
2794
  return false
2797
2795
  }
2798
- }
2796
+ },
2799
2797
  };
2800
2798
 
2801
2799
  export const ff_core_Equal_Equal$ff_compiler_Syntax_MatchGuard = {
@@ -2818,7 +2816,7 @@ return true
2818
2816
  {
2819
2817
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Term.equals_(x_.term_, y_.term_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_MatchPattern.equals_(x_.pattern_, y_.pattern_)))
2820
2818
  }
2821
- }
2819
+ },
2822
2820
  };
2823
2821
 
2824
2822
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Dictionary = {
@@ -2841,7 +2839,7 @@ return true
2841
2839
  {
2842
2840
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_ModuleKey.equals_(x_.moduleKey_, y_.moduleKey_) && ((x_.traitName_ === y_.traitName_) && ((x_.typeName_ === y_.typeName_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Dictionary).equals_(x_.dictionaries_, y_.dictionaries_))))
2843
2841
  }
2844
- }
2842
+ },
2845
2843
  };
2846
2844
 
2847
2845
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Signature = {
@@ -2864,7 +2862,7 @@ return true
2864
2862
  {
2865
2863
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && ((x_.member_ === y_.member_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.generics_, y_.generics_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Constraint).equals_(x_.constraints_, y_.constraints_) && (ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Parameter).equals_(x_.parameters_, y_.parameters_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type.equals_(x_.returnType_, y_.returnType_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type.equals_(x_.effect_, y_.effect_))))))))
2866
2864
  }
2867
- }
2865
+ },
2868
2866
  };
2869
2867
 
2870
2868
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Lambda = {
@@ -2887,7 +2885,7 @@ return true
2887
2885
  {
2888
2886
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type.equals_(x_.effect_, y_.effect_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_MatchCase).equals_(x_.cases_, y_.cases_)))
2889
2887
  }
2890
- }
2888
+ },
2891
2889
  };
2892
2890
 
2893
2891
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Variant = {
@@ -2910,7 +2908,7 @@ return true
2910
2908
  {
2911
2909
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Parameter).equals_(x_.fields_, y_.fields_)))
2912
2910
  }
2913
- }
2911
+ },
2914
2912
  };
2915
2913
 
2916
2914
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Parameter = {
@@ -2933,7 +2931,7 @@ return true
2933
2931
  {
2934
2932
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.mutable_ === y_.mutable_) && ((x_.name_ === y_.name_) && (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type.equals_(x_.valueType_, y_.valueType_) && ff_core_Option.ff_core_Equal_Equal$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Term).equals_(x_.default_, y_.default_)))))
2935
2933
  }
2936
- }
2934
+ },
2937
2935
  };
2938
2936
 
2939
2937
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Argument = {
@@ -2956,7 +2954,7 @@ return true
2956
2954
  {
2957
2955
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && (ff_core_Option.ff_core_Equal_Equal$ff_core_Option_Option(ff_core_Equal.ff_core_Equal_Equal$ff_core_String_String).equals_(x_.name_, y_.name_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Term.equals_(x_.value_, y_.value_)))
2958
2956
  }
2959
- }
2957
+ },
2960
2958
  };
2961
2959
 
2962
2960
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Field = {
@@ -2979,7 +2977,7 @@ return true
2979
2977
  {
2980
2978
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Term.equals_(x_.value_, y_.value_)))
2981
2979
  }
2982
- }
2980
+ },
2983
2981
  };
2984
2982
 
2985
2983
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Constraint = {
@@ -3002,7 +3000,7 @@ return true
3002
3000
  {
3003
3001
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.name_ === y_.name_) && ff_core_List.ff_core_Equal_Equal$ff_core_List_List(ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Type).equals_(x_.generics_, y_.generics_)))
3004
3002
  }
3005
- }
3003
+ },
3006
3004
  };
3007
3005
 
3008
3006
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Type = {
@@ -3045,7 +3043,7 @@ return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equal
3045
3043
  {
3046
3044
  return false
3047
3045
  }
3048
- }
3046
+ },
3049
3047
  };
3050
3048
 
3051
3049
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Safety = {
@@ -3068,7 +3066,7 @@ return true
3068
3066
  {
3069
3067
  return false
3070
3068
  }
3071
- }
3069
+ },
3072
3070
  };
3073
3071
 
3074
3072
  export const ff_core_Equal_Equal$ff_compiler_Syntax_Version = {
@@ -3091,7 +3089,7 @@ return true
3091
3089
  {
3092
3090
  return (ff_compiler_Syntax.ff_core_Equal_Equal$ff_compiler_Syntax_Location.equals_(x_.at_, y_.at_) && ((x_.major_ === y_.major_) && ((x_.minor_ === y_.minor_) && (x_.patch_ === y_.patch_))))
3093
3091
  }
3094
- }
3092
+ },
3095
3093
  };
3096
3094
 
3097
3095
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Location = {
@@ -3146,7 +3144,7 @@ return ff_core_Ordering.OrderingSame()
3146
3144
  }
3147
3145
  return
3148
3146
  }
3149
- }
3147
+ },
3150
3148
  };
3151
3149
 
3152
3150
  export const ff_core_Ordering_Order$ff_compiler_Syntax_CompileError = {
@@ -3191,7 +3189,7 @@ return ff_core_Ordering.OrderingSame()
3191
3189
  }
3192
3190
  return
3193
3191
  }
3194
- }
3192
+ },
3195
3193
  };
3196
3194
 
3197
3195
  export const ff_core_Ordering_Order$ff_compiler_Syntax_CompileErrors = {
@@ -3226,7 +3224,7 @@ return ff_core_Ordering.OrderingSame()
3226
3224
  }
3227
3225
  return
3228
3226
  }
3229
- }
3227
+ },
3230
3228
  };
3231
3229
 
3232
3230
  export const ff_core_Ordering_Order$ff_compiler_Syntax_ModuleWithPackageInfo = {
@@ -3271,7 +3269,7 @@ return ff_core_Ordering.OrderingSame()
3271
3269
  }
3272
3270
  return
3273
3271
  }
3274
- }
3272
+ },
3275
3273
  };
3276
3274
 
3277
3275
  export const ff_core_Ordering_Order$ff_compiler_Syntax_PackageInfo = {
@@ -3326,7 +3324,7 @@ return ff_core_Ordering.OrderingSame()
3326
3324
  }
3327
3325
  return
3328
3326
  }
3329
- }
3327
+ },
3330
3328
  };
3331
3329
 
3332
3330
  export const ff_core_Ordering_Order$ff_compiler_Syntax_PackagePair = {
@@ -3371,7 +3369,7 @@ return ff_core_Ordering.OrderingSame()
3371
3369
  }
3372
3370
  return
3373
3371
  }
3374
- }
3372
+ },
3375
3373
  };
3376
3374
 
3377
3375
  export const ff_core_Ordering_Order$ff_compiler_Syntax_ModuleKey = {
@@ -3426,7 +3424,7 @@ return ff_core_Ordering.OrderingSame()
3426
3424
  }
3427
3425
  return
3428
3426
  }
3429
- }
3427
+ },
3430
3428
  };
3431
3429
 
3432
3430
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Module = {
@@ -3531,7 +3529,7 @@ return ff_core_Ordering.OrderingSame()
3531
3529
  }
3532
3530
  return
3533
3531
  }
3534
- }
3532
+ },
3535
3533
  };
3536
3534
 
3537
3535
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DPackage = {
@@ -3596,7 +3594,7 @@ return ff_core_Ordering.OrderingSame()
3596
3594
  }
3597
3595
  return
3598
3596
  }
3599
- }
3597
+ },
3600
3598
  };
3601
3599
 
3602
3600
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DDependency = {
@@ -3671,7 +3669,7 @@ return ff_core_Ordering.OrderingSame()
3671
3669
  }
3672
3670
  return
3673
3671
  }
3674
- }
3672
+ },
3675
3673
  };
3676
3674
 
3677
3675
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DInclude = {
@@ -3716,7 +3714,7 @@ return ff_core_Ordering.OrderingSame()
3716
3714
  }
3717
3715
  return
3718
3716
  }
3719
- }
3717
+ },
3720
3718
  };
3721
3719
 
3722
3720
  export const ff_core_Ordering_Order$ff_compiler_Syntax_TargetNames = {
@@ -3761,7 +3759,7 @@ return ff_core_Ordering.OrderingSame()
3761
3759
  }
3762
3760
  return
3763
3761
  }
3764
- }
3762
+ },
3765
3763
  };
3766
3764
 
3767
3765
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DImport = {
@@ -3816,7 +3814,7 @@ return ff_core_Ordering.OrderingSame()
3816
3814
  }
3817
3815
  return
3818
3816
  }
3819
- }
3817
+ },
3820
3818
  };
3821
3819
 
3822
3820
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DFunction = {
@@ -3871,7 +3869,7 @@ return ff_core_Ordering.OrderingSame()
3871
3869
  }
3872
3870
  return
3873
3871
  }
3874
- }
3872
+ },
3875
3873
  };
3876
3874
 
3877
3875
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DLet = {
@@ -3936,7 +3934,7 @@ return ff_core_Ordering.OrderingSame()
3936
3934
  }
3937
3935
  return
3938
3936
  }
3939
- }
3937
+ },
3940
3938
  };
3941
3939
 
3942
3940
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DExtend = {
@@ -4021,7 +4019,7 @@ return ff_core_Ordering.OrderingSame()
4021
4019
  }
4022
4020
  return
4023
4021
  }
4024
- }
4022
+ },
4025
4023
  };
4026
4024
 
4027
4025
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DType = {
@@ -4126,7 +4124,7 @@ return ff_core_Ordering.OrderingSame()
4126
4124
  }
4127
4125
  return
4128
4126
  }
4129
- }
4127
+ },
4130
4128
  };
4131
4129
 
4132
4130
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DTrait = {
@@ -4231,7 +4229,7 @@ return ff_core_Ordering.OrderingSame()
4231
4229
  }
4232
4230
  return
4233
4231
  }
4234
- }
4232
+ },
4235
4233
  };
4236
4234
 
4237
4235
  export const ff_core_Ordering_Order$ff_compiler_Syntax_DInstance = {
@@ -4336,7 +4334,7 @@ return ff_core_Ordering.OrderingSame()
4336
4334
  }
4337
4335
  return
4338
4336
  }
4339
- }
4337
+ },
4340
4338
  };
4341
4339
 
4342
4340
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Term = {
@@ -5375,7 +5373,7 @@ return 19
5375
5373
  }
5376
5374
  return ff_core_Ordering.ff_core_Ordering_Order$ff_core_Int_Int.compare_(number_(x_), number_(y_))
5377
5375
  }
5378
- }
5376
+ },
5379
5377
  };
5380
5378
 
5381
5379
  export const ff_core_Ordering_Order$ff_compiler_Syntax_CallTarget = {
@@ -5490,7 +5488,7 @@ return 1
5490
5488
  }
5491
5489
  return ff_core_Ordering.ff_core_Ordering_Order$ff_core_Int_Int.compare_(number_(x_), number_(y_))
5492
5490
  }
5493
- }
5491
+ },
5494
5492
  };
5495
5493
 
5496
5494
  export const ff_core_Ordering_Order$ff_compiler_Syntax_MatchCase = {
@@ -5555,7 +5553,7 @@ return ff_core_Ordering.OrderingSame()
5555
5553
  }
5556
5554
  return
5557
5555
  }
5558
- }
5556
+ },
5559
5557
  };
5560
5558
 
5561
5559
  export const ff_core_Ordering_Order$ff_compiler_Syntax_MatchPattern = {
@@ -5890,7 +5888,7 @@ return 6
5890
5888
  }
5891
5889
  return ff_core_Ordering.ff_core_Ordering_Order$ff_core_Int_Int.compare_(number_(x_), number_(y_))
5892
5890
  }
5893
- }
5891
+ },
5894
5892
  };
5895
5893
 
5896
5894
  export const ff_core_Ordering_Order$ff_compiler_Syntax_MatchGuard = {
@@ -5945,7 +5943,7 @@ return ff_core_Ordering.OrderingSame()
5945
5943
  }
5946
5944
  return
5947
5945
  }
5948
- }
5946
+ },
5949
5947
  };
5950
5948
 
5951
5949
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Dictionary = {
@@ -6010,7 +6008,7 @@ return ff_core_Ordering.OrderingSame()
6010
6008
  }
6011
6009
  return
6012
6010
  }
6013
- }
6011
+ },
6014
6012
  };
6015
6013
 
6016
6014
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Signature = {
@@ -6115,7 +6113,7 @@ return ff_core_Ordering.OrderingSame()
6115
6113
  }
6116
6114
  return
6117
6115
  }
6118
- }
6116
+ },
6119
6117
  };
6120
6118
 
6121
6119
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Lambda = {
@@ -6170,7 +6168,7 @@ return ff_core_Ordering.OrderingSame()
6170
6168
  }
6171
6169
  return
6172
6170
  }
6173
- }
6171
+ },
6174
6172
  };
6175
6173
 
6176
6174
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Variant = {
@@ -6225,7 +6223,7 @@ return ff_core_Ordering.OrderingSame()
6225
6223
  }
6226
6224
  return
6227
6225
  }
6228
- }
6226
+ },
6229
6227
  };
6230
6228
 
6231
6229
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Parameter = {
@@ -6300,7 +6298,7 @@ return ff_core_Ordering.OrderingSame()
6300
6298
  }
6301
6299
  return
6302
6300
  }
6303
- }
6301
+ },
6304
6302
  };
6305
6303
 
6306
6304
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Argument = {
@@ -6355,7 +6353,7 @@ return ff_core_Ordering.OrderingSame()
6355
6353
  }
6356
6354
  return
6357
6355
  }
6358
- }
6356
+ },
6359
6357
  };
6360
6358
 
6361
6359
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Field = {
@@ -6410,7 +6408,7 @@ return ff_core_Ordering.OrderingSame()
6410
6408
  }
6411
6409
  return
6412
6410
  }
6413
- }
6411
+ },
6414
6412
  };
6415
6413
 
6416
6414
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Constraint = {
@@ -6465,7 +6463,7 @@ return ff_core_Ordering.OrderingSame()
6465
6463
  }
6466
6464
  return
6467
6465
  }
6468
- }
6466
+ },
6469
6467
  };
6470
6468
 
6471
6469
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Type = {
@@ -6580,7 +6578,7 @@ return 1
6580
6578
  }
6581
6579
  return ff_core_Ordering.ff_core_Ordering_Order$ff_core_Int_Int.compare_(number_(x_), number_(y_))
6582
6580
  }
6583
- }
6581
+ },
6584
6582
  };
6585
6583
 
6586
6584
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Safety = {
@@ -6627,7 +6625,7 @@ return 2
6627
6625
  }
6628
6626
  return ff_core_Ordering.ff_core_Ordering_Order$ff_core_Int_Int.compare_(number_(x_), number_(y_))
6629
6627
  }
6630
- }
6628
+ },
6631
6629
  };
6632
6630
 
6633
6631
  export const ff_core_Ordering_Order$ff_compiler_Syntax_Version = {
@@ -6692,7 +6690,7 @@ return ff_core_Ordering.OrderingSame()
6692
6690
  }
6693
6691
  return
6694
6692
  }
6695
- }
6693
+ },
6696
6694
  };
6697
6695
 
6698
6696
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Location = {
@@ -6721,7 +6719,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6721
6719
  return ff_compiler_Syntax.Location(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
6722
6720
  }
6723
6721
  {
6724
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6722
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6725
6723
  }
6726
6724
  }
6727
6725
  },
@@ -6750,10 +6748,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6750
6748
  return ff_compiler_Syntax.Location(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
6751
6749
  }
6752
6750
  {
6753
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6754
- }
6751
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6755
6752
  }
6756
6753
  }
6754
+ },
6757
6755
  };
6758
6756
 
6759
6757
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_CompileError = {
@@ -6781,7 +6779,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6781
6779
  return ff_compiler_Syntax.CompileError(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
6782
6780
  }
6783
6781
  {
6784
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6782
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6785
6783
  }
6786
6784
  }
6787
6785
  },
@@ -6809,10 +6807,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6809
6807
  return ff_compiler_Syntax.CompileError(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
6810
6808
  }
6811
6809
  {
6812
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6813
- }
6810
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6814
6811
  }
6815
6812
  }
6813
+ },
6816
6814
  };
6817
6815
 
6818
6816
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_CompileErrors = {
@@ -6839,7 +6837,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6839
6837
  return ff_compiler_Syntax.CompileErrors(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_CompileError).deserializeUsing_(serialization_))
6840
6838
  }
6841
6839
  {
6842
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6840
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6843
6841
  }
6844
6842
  }
6845
6843
  },
@@ -6866,10 +6864,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6866
6864
  return ff_compiler_Syntax.CompileErrors(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_CompileError).deserializeUsing_(serialization_))
6867
6865
  }
6868
6866
  {
6869
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6870
- }
6867
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6871
6868
  }
6872
6869
  }
6870
+ },
6873
6871
  };
6874
6872
 
6875
6873
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleWithPackageInfo = {
@@ -6897,7 +6895,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6897
6895
  return ff_compiler_Syntax.ModuleWithPackageInfo(ff_core_Option.ff_core_Serializable_Serializable$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackageInfo).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Module.deserializeUsing_(serialization_))
6898
6896
  }
6899
6897
  {
6900
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6898
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6901
6899
  }
6902
6900
  }
6903
6901
  },
@@ -6925,10 +6923,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6925
6923
  return ff_compiler_Syntax.ModuleWithPackageInfo(ff_core_Option.ff_core_Serializable_Serializable$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackageInfo).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Module.deserializeUsing_(serialization_))
6926
6924
  }
6927
6925
  {
6928
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6929
- }
6926
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6930
6927
  }
6931
6928
  }
6929
+ },
6932
6930
  };
6933
6931
 
6934
6932
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_PackageInfo = {
@@ -6957,7 +6955,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6957
6955
  return ff_compiler_Syntax.PackageInfo(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DPackage.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DDependency).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DInclude).deserializeUsing_(serialization_))
6958
6956
  }
6959
6957
  {
6960
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6958
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6961
6959
  }
6962
6960
  }
6963
6961
  },
@@ -6986,10 +6984,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
6986
6984
  return ff_compiler_Syntax.PackageInfo(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DPackage.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DDependency).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DInclude).deserializeUsing_(serialization_))
6987
6985
  }
6988
6986
  {
6989
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6990
- }
6987
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
6991
6988
  }
6992
6989
  }
6990
+ },
6993
6991
  };
6994
6992
 
6995
6993
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair = {
@@ -7017,7 +7015,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7017
7015
  return ff_compiler_Syntax.PackagePair(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
7018
7016
  }
7019
7017
  {
7020
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7018
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7021
7019
  }
7022
7020
  }
7023
7021
  },
@@ -7045,10 +7043,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7045
7043
  return ff_compiler_Syntax.PackagePair(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
7046
7044
  }
7047
7045
  {
7048
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7049
- }
7046
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7050
7047
  }
7051
7048
  }
7049
+ },
7052
7050
  };
7053
7051
 
7054
7052
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey = {
@@ -7077,7 +7075,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7077
7075
  return ff_compiler_Syntax.ModuleKey(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
7078
7076
  }
7079
7077
  {
7080
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7078
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7081
7079
  }
7082
7080
  }
7083
7081
  },
@@ -7106,10 +7104,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7106
7104
  return ff_compiler_Syntax.ModuleKey(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
7107
7105
  }
7108
7106
  {
7109
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7110
- }
7107
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7111
7108
  }
7112
7109
  }
7110
+ },
7113
7111
  };
7114
7112
 
7115
7113
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Module = {
@@ -7143,7 +7141,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7143
7141
  return ff_compiler_Syntax.Module(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DImport).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DType).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DTrait).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DInstance).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DExtend).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DLet).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction).deserializeUsing_(serialization_))
7144
7142
  }
7145
7143
  {
7146
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7144
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7147
7145
  }
7148
7146
  }
7149
7147
  },
@@ -7177,10 +7175,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7177
7175
  return ff_compiler_Syntax.Module(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DImport).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DType).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DTrait).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DInstance).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DExtend).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DLet).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction).deserializeUsing_(serialization_))
7178
7176
  }
7179
7177
  {
7180
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7181
- }
7178
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7182
7179
  }
7183
7180
  }
7181
+ },
7184
7182
  };
7185
7183
 
7186
7184
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DPackage = {
@@ -7210,7 +7208,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7210
7208
  return ff_compiler_Syntax.DPackage(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Version.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_TargetNames.deserializeUsing_(serialization_))
7211
7209
  }
7212
7210
  {
7213
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7211
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7214
7212
  }
7215
7213
  }
7216
7214
  },
@@ -7240,10 +7238,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7240
7238
  return ff_compiler_Syntax.DPackage(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Version.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_TargetNames.deserializeUsing_(serialization_))
7241
7239
  }
7242
7240
  {
7243
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7244
- }
7241
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7245
7242
  }
7246
7243
  }
7244
+ },
7247
7245
  };
7248
7246
 
7249
7247
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DDependency = {
@@ -7274,7 +7272,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7274
7272
  return ff_compiler_Syntax.DDependency(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Version.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Safety.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_TargetNames.deserializeUsing_(serialization_))
7275
7273
  }
7276
7274
  {
7277
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7275
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7278
7276
  }
7279
7277
  }
7280
7278
  },
@@ -7305,10 +7303,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7305
7303
  return ff_compiler_Syntax.DDependency(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_PackagePair.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Version.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Safety.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_TargetNames.deserializeUsing_(serialization_))
7306
7304
  }
7307
7305
  {
7308
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7309
- }
7306
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7310
7307
  }
7311
7308
  }
7309
+ },
7312
7310
  };
7313
7311
 
7314
7312
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DInclude = {
@@ -7336,7 +7334,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7336
7334
  return ff_compiler_Syntax.DInclude(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
7337
7335
  }
7338
7336
  {
7339
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7337
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7340
7338
  }
7341
7339
  }
7342
7340
  },
@@ -7364,10 +7362,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7364
7362
  return ff_compiler_Syntax.DInclude(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
7365
7363
  }
7366
7364
  {
7367
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7368
- }
7365
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7369
7366
  }
7370
7367
  }
7368
+ },
7371
7369
  };
7372
7370
 
7373
7371
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_TargetNames = {
@@ -7395,7 +7393,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7395
7393
  return ff_compiler_Syntax.TargetNames(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_))
7396
7394
  }
7397
7395
  {
7398
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7396
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7399
7397
  }
7400
7398
  }
7401
7399
  },
@@ -7423,10 +7421,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7423
7421
  return ff_compiler_Syntax.TargetNames(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_))
7424
7422
  }
7425
7423
  {
7426
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7427
- }
7424
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7428
7425
  }
7429
7426
  }
7427
+ },
7430
7428
  };
7431
7429
 
7432
7430
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DImport = {
@@ -7455,7 +7453,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7455
7453
  return ff_compiler_Syntax.DImport(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey.deserializeUsing_(serialization_))
7456
7454
  }
7457
7455
  {
7458
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7456
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7459
7457
  }
7460
7458
  }
7461
7459
  },
@@ -7484,10 +7482,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7484
7482
  return ff_compiler_Syntax.DImport(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey.deserializeUsing_(serialization_))
7485
7483
  }
7486
7484
  {
7487
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7488
- }
7485
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7489
7486
  }
7490
7487
  }
7488
+ },
7491
7489
  };
7492
7490
 
7493
7491
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction = {
@@ -7516,7 +7514,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7516
7514
  return ff_compiler_Syntax.DFunction(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Signature.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda.deserializeUsing_(serialization_))
7517
7515
  }
7518
7516
  {
7519
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7517
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7520
7518
  }
7521
7519
  }
7522
7520
  },
@@ -7545,10 +7543,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7545
7543
  return ff_compiler_Syntax.DFunction(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Signature.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda.deserializeUsing_(serialization_))
7546
7544
  }
7547
7545
  {
7548
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7549
- }
7546
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7550
7547
  }
7551
7548
  }
7549
+ },
7552
7550
  };
7553
7551
 
7554
7552
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DLet = {
@@ -7578,7 +7576,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7578
7576
  return ff_compiler_Syntax.DLet(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
7579
7577
  }
7580
7578
  {
7581
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7579
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7582
7580
  }
7583
7581
  }
7584
7582
  },
@@ -7608,10 +7606,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7608
7606
  return ff_compiler_Syntax.DLet(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
7609
7607
  }
7610
7608
  {
7611
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7612
- }
7609
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7613
7610
  }
7614
7611
  }
7612
+ },
7615
7613
  };
7616
7614
 
7617
7615
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DExtend = {
@@ -7643,7 +7641,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7643
7641
  return ff_compiler_Syntax.DExtend(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction).deserializeUsing_(serialization_))
7644
7642
  }
7645
7643
  {
7646
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7644
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7647
7645
  }
7648
7646
  }
7649
7647
  },
@@ -7675,10 +7673,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7675
7673
  return ff_compiler_Syntax.DExtend(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction).deserializeUsing_(serialization_))
7676
7674
  }
7677
7675
  {
7678
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7679
- }
7676
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7680
7677
  }
7681
7678
  }
7679
+ },
7682
7680
  };
7683
7681
 
7684
7682
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DType = {
@@ -7712,7 +7710,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7712
7710
  return ff_compiler_Syntax.DType(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Variant).deserializeUsing_(serialization_))
7713
7711
  }
7714
7712
  {
7715
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7713
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7716
7714
  }
7717
7715
  }
7718
7716
  },
@@ -7746,10 +7744,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7746
7744
  return ff_compiler_Syntax.DType(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Variant).deserializeUsing_(serialization_))
7747
7745
  }
7748
7746
  {
7749
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7750
- }
7747
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7751
7748
  }
7752
7749
  }
7750
+ },
7753
7751
  };
7754
7752
 
7755
7753
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DTrait = {
@@ -7783,7 +7781,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7783
7781
  return ff_compiler_Syntax.DTrait(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Signature).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Pair.ff_core_Serializable_Serializable$ff_core_Pair_Pair(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String, ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda)).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Pair.ff_core_Serializable_Serializable$ff_core_Pair_Pair(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String, ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda)).deserializeUsing_(serialization_))
7784
7782
  }
7785
7783
  {
7786
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7784
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7787
7785
  }
7788
7786
  }
7789
7787
  },
@@ -7817,10 +7815,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7817
7815
  return ff_compiler_Syntax.DTrait(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Signature).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Pair.ff_core_Serializable_Serializable$ff_core_Pair_Pair(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String, ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda)).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Pair.ff_core_Serializable_Serializable$ff_core_Pair_Pair(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String, ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda)).deserializeUsing_(serialization_))
7818
7816
  }
7819
7817
  {
7820
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7821
- }
7818
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7822
7819
  }
7823
7820
  }
7821
+ },
7824
7822
  };
7825
7823
 
7826
7824
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_DInstance = {
@@ -7854,7 +7852,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7854
7852
  return ff_compiler_Syntax.DInstance(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Argument).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_))
7855
7853
  }
7856
7854
  {
7857
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7855
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7858
7856
  }
7859
7857
  }
7860
7858
  },
@@ -7888,10 +7886,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
7888
7886
  return ff_compiler_Syntax.DInstance(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Argument).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_DFunction).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_))
7889
7887
  }
7890
7888
  {
7891
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7892
- }
7889
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
7893
7890
  }
7894
7891
  }
7892
+ },
7895
7893
  };
7896
7894
 
7897
7895
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Term = {
@@ -8210,7 +8208,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8210
8208
  return ff_compiler_Syntax.EWildcard(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
8211
8209
  }
8212
8210
  {
8213
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8211
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8214
8212
  }
8215
8213
  }
8216
8214
  },
@@ -8529,10 +8527,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8529
8527
  return ff_compiler_Syntax.EWildcard(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
8530
8528
  }
8531
8529
  {
8532
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8533
- }
8530
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8534
8531
  }
8535
8532
  }
8533
+ },
8536
8534
  };
8537
8535
 
8538
8536
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_CallTarget = {
@@ -8575,7 +8573,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8575
8573
  return ff_compiler_Syntax.StaticCall(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_))
8576
8574
  }
8577
8575
  {
8578
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8576
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8579
8577
  }
8580
8578
  }
8581
8579
  },
@@ -8618,10 +8616,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8618
8616
  return ff_compiler_Syntax.StaticCall(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_))
8619
8617
  }
8620
8618
  {
8621
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8622
- }
8619
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8623
8620
  }
8624
8621
  }
8622
+ },
8625
8623
  };
8626
8624
 
8627
8625
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchCase = {
@@ -8651,7 +8649,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8651
8649
  return ff_compiler_Syntax.MatchCase(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchGuard).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
8652
8650
  }
8653
8651
  {
8654
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8652
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8655
8653
  }
8656
8654
  }
8657
8655
  },
@@ -8681,10 +8679,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8681
8679
  return ff_compiler_Syntax.MatchCase(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchGuard).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
8682
8680
  }
8683
8681
  {
8684
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8685
- }
8682
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8686
8683
  }
8687
8684
  }
8685
+ },
8688
8686
  };
8689
8687
 
8690
8688
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern = {
@@ -8800,7 +8798,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8800
8798
  return ff_compiler_Syntax.PAlias(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
8801
8799
  }
8802
8800
  {
8803
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8801
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8804
8802
  }
8805
8803
  }
8806
8804
  },
@@ -8916,10 +8914,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8916
8914
  return ff_compiler_Syntax.PAlias(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_))
8917
8915
  }
8918
8916
  {
8919
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8920
- }
8917
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8921
8918
  }
8922
8919
  }
8920
+ },
8923
8921
  };
8924
8922
 
8925
8923
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchGuard = {
@@ -8948,7 +8946,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8948
8946
  return ff_compiler_Syntax.MatchGuard(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern.deserializeUsing_(serialization_))
8949
8947
  }
8950
8948
  {
8951
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8949
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8952
8950
  }
8953
8951
  }
8954
8952
  },
@@ -8977,10 +8975,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
8977
8975
  return ff_compiler_Syntax.MatchGuard(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchPattern.deserializeUsing_(serialization_))
8978
8976
  }
8979
8977
  {
8980
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8981
- }
8978
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
8982
8979
  }
8983
8980
  }
8981
+ },
8984
8982
  };
8985
8983
 
8986
8984
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Dictionary = {
@@ -9010,7 +9008,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9010
9008
  return ff_compiler_Syntax.Dictionary(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Dictionary).deserializeUsing_(serialization_))
9011
9009
  }
9012
9010
  {
9013
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9011
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9014
9012
  }
9015
9013
  }
9016
9014
  },
@@ -9040,10 +9038,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9040
9038
  return ff_compiler_Syntax.Dictionary(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_ModuleKey.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Dictionary).deserializeUsing_(serialization_))
9041
9039
  }
9042
9040
  {
9043
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9044
- }
9041
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9045
9042
  }
9046
9043
  }
9044
+ },
9047
9045
  };
9048
9046
 
9049
9047
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Signature = {
@@ -9077,7 +9075,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9077
9075
  return ff_compiler_Syntax.Signature(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_))
9078
9076
  }
9079
9077
  {
9080
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9078
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9081
9079
  }
9082
9080
  }
9083
9081
  },
@@ -9111,10 +9109,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9111
9109
  return ff_compiler_Syntax.Signature(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint).deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_))
9112
9110
  }
9113
9111
  {
9114
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9115
- }
9112
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9116
9113
  }
9117
9114
  }
9115
+ },
9118
9116
  };
9119
9117
 
9120
9118
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Lambda = {
@@ -9143,7 +9141,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9143
9141
  return ff_compiler_Syntax.Lambda(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchCase).deserializeUsing_(serialization_))
9144
9142
  }
9145
9143
  {
9146
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9144
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9147
9145
  }
9148
9146
  }
9149
9147
  },
@@ -9172,10 +9170,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9172
9170
  return ff_compiler_Syntax.Lambda(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_MatchCase).deserializeUsing_(serialization_))
9173
9171
  }
9174
9172
  {
9175
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9176
- }
9173
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9177
9174
  }
9178
9175
  }
9176
+ },
9179
9177
  };
9180
9178
 
9181
9179
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Variant = {
@@ -9204,7 +9202,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9204
9202
  return ff_compiler_Syntax.Variant(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_))
9205
9203
  }
9206
9204
  {
9207
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9205
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9208
9206
  }
9209
9207
  }
9210
9208
  },
@@ -9233,10 +9231,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9233
9231
  return ff_compiler_Syntax.Variant(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter).deserializeUsing_(serialization_))
9234
9232
  }
9235
9233
  {
9236
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9237
- }
9234
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9238
9235
  }
9239
9236
  }
9237
+ },
9240
9238
  };
9241
9239
 
9242
9240
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Parameter = {
@@ -9267,7 +9265,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9267
9265
  return ff_compiler_Syntax.Parameter(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_core_Option.ff_core_Serializable_Serializable$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term).deserializeUsing_(serialization_))
9268
9266
  }
9269
9267
  {
9270
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9268
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9271
9269
  }
9272
9270
  }
9273
9271
  },
@@ -9298,10 +9296,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9298
9296
  return ff_compiler_Syntax.Parameter(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Bool_Bool.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type.deserializeUsing_(serialization_), ff_core_Option.ff_core_Serializable_Serializable$ff_core_Option_Option(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term).deserializeUsing_(serialization_))
9299
9297
  }
9300
9298
  {
9301
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9302
- }
9299
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9303
9300
  }
9304
9301
  }
9302
+ },
9305
9303
  };
9306
9304
 
9307
9305
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Argument = {
@@ -9330,7 +9328,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9330
9328
  return ff_compiler_Syntax.Argument(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Option.ff_core_Serializable_Serializable$ff_core_Option_Option(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
9331
9329
  }
9332
9330
  {
9333
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9331
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9334
9332
  }
9335
9333
  }
9336
9334
  },
@@ -9359,10 +9357,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9359
9357
  return ff_compiler_Syntax.Argument(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Option.ff_core_Serializable_Serializable$ff_core_Option_Option(ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String).deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
9360
9358
  }
9361
9359
  {
9362
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9363
- }
9360
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9364
9361
  }
9365
9362
  }
9363
+ },
9366
9364
  };
9367
9365
 
9368
9366
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Field = {
@@ -9391,7 +9389,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9391
9389
  return ff_compiler_Syntax.Field(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
9392
9390
  }
9393
9391
  {
9394
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9392
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9395
9393
  }
9396
9394
  }
9397
9395
  },
@@ -9420,10 +9418,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9420
9418
  return ff_compiler_Syntax.Field(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Term.deserializeUsing_(serialization_))
9421
9419
  }
9422
9420
  {
9423
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9424
- }
9421
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9425
9422
  }
9426
9423
  }
9424
+ },
9427
9425
  };
9428
9426
 
9429
9427
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Constraint = {
@@ -9452,7 +9450,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9452
9450
  return ff_compiler_Syntax.Constraint(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type).deserializeUsing_(serialization_))
9453
9451
  }
9454
9452
  {
9455
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9453
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9456
9454
  }
9457
9455
  }
9458
9456
  },
@@ -9481,10 +9479,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9481
9479
  return ff_compiler_Syntax.Constraint(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_String_String.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_List_List(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Type).deserializeUsing_(serialization_))
9482
9480
  }
9483
9481
  {
9484
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9485
- }
9482
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9486
9483
  }
9487
9484
  }
9485
+ },
9488
9486
  };
9489
9487
 
9490
9488
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Type = {
@@ -9527,7 +9525,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9527
9525
  return ff_compiler_Syntax.TVariable(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
9528
9526
  }
9529
9527
  {
9530
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9528
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9531
9529
  }
9532
9530
  }
9533
9531
  },
@@ -9570,10 +9568,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9570
9568
  return ff_compiler_Syntax.TVariable(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
9571
9569
  }
9572
9570
  {
9573
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9574
- }
9571
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9575
9572
  }
9576
9573
  }
9574
+ },
9577
9575
  };
9578
9576
 
9579
9577
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Safety = {
@@ -9623,7 +9621,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9623
9621
  return ff_compiler_Syntax.Trusted()
9624
9622
  }
9625
9623
  {
9626
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9624
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9627
9625
  }
9628
9626
  }
9629
9627
  },
@@ -9673,10 +9671,10 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9673
9671
  return ff_compiler_Syntax.Trusted()
9674
9672
  }
9675
9673
  {
9676
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9677
- }
9674
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9678
9675
  }
9679
9676
  }
9677
+ },
9680
9678
  };
9681
9679
 
9682
9680
  export const ff_core_Serializable_Serializable$ff_compiler_Syntax_Version = {
@@ -9706,7 +9704,7 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9706
9704
  return ff_compiler_Syntax.Version(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
9707
9705
  }
9708
9706
  {
9709
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9707
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9710
9708
  }
9711
9709
  }
9712
9710
  },
@@ -9736,8 +9734,11 @@ serialization_.checksum_ = ff_core_Int.Int_bitOr(((31 * serialization_.checksum_
9736
9734
  return ff_compiler_Syntax.Version(ff_compiler_Syntax.ff_core_Serializable_Serializable$ff_compiler_Syntax_Location.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_), ff_core_Serializable.ff_core_Serializable_Serializable$ff_core_Int_Int.deserializeUsing_(serialization_))
9737
9735
  }
9738
9736
  {
9739
- return ff_core_Core.throw_(ff_core_Serializable.DeserializationChecksumException(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9740
- }
9737
+ throw ff_core_Js.initializeError_(ff_core_Serializable.DeserializationChecksumException(), new Error(), ff_core_Serializable.ff_core_Any_HasAnyTag$ff_core_Serializable_DeserializationChecksumException, ff_core_Serializable.ff_core_Show_Show$ff_core_Serializable_DeserializationChecksumException)
9741
9738
  }
9742
9739
  }
9740
+ },
9743
9741
  };
9742
+
9743
+
9744
+ //# sourceMappingURL=Syntax.mjs.map