@@ -142,8 +142,6 @@ let accessDeeplyWithArg x =>
142142let rec accessDeeplyWithArgRecursive x count =>
143143 switch x {
144144 | LocalModule . AccessedThroughModuleWith x as entirePattern =>
145- <<<<<<< 3 fe786 e 63 e3337 d160 facc736 e 0 d5b9 f8 d6 e 4 c06
146- <<<<<<< 0bcab8 d983 cb43 e 7 a26 ab0 4b5 c06 a0781971 c682
147145 /* It captures the whole pattern */
148146 if (count > 0 ) {
149147 0
@@ -159,26 +157,6 @@ let rec accessDeeplyWithArgRecursive x count =>
159157 accessDeeplyWithArgRecursive
160158 entirePattern (count - 1 )
161159 }
162- =======
163- // It captures the whole pattern
164- =======
165- /* It captures the whole pattern */
166- >>>>>>> Revert "update old tests"
167- if (count > 0 ) {
168- 0
169- } else {
170- accessDeeplyWithArgRecursive
171- entirePattern (count - 1 )
172- }
173- | LocalModule . AccessedThroughModuleWithTwo x y as entirePattern =>
174- /* It captures the whole pattern */
175- if (count > 0 ) {
176- 0
177- } else {
178- accessDeeplyWithArgRecursive
179- entirePattern (count - 1 )
180- }
181- >>>>>>> update old tests
182160 };
183161
184162accessDeeplyWithArgRecursive
@@ -245,16 +223,10 @@ let rec commentPolymorphicCases:
245223 ' a .
246224 option ' a => int
247225 =
248- <<<<<<< 0bcab8 d983 cb43 e 7 a26 ab0 4b5 c06 a0781971 c682
249226 fun
250227 | Some a => 1
251228 /* Comment on one */
252229 | None => 0 ;
253- =======
254- fun | Some a => 1
255- /* Comment on one */
256- | None => 0 ;
257- >>>>>>> update old tests
258230
259231let thisWontCompileButLetsSeeHowItFormats =
260232 switch something {
@@ -278,20 +250,12 @@ type term _ =
278250 | App of (term (' b => ' a )) (term ' b ) : term ' a ;
279251
280252let rec eval : type a . term a => a =
281- <<<<<<< 0bcab8 d983 cb43 e 7 a26 ab0 4b5 c06 a0781971 c682
282253 fun
283254 | Int n => n
284255 /* a = int */
285256 | Add => (fun x y => x + y)
286257 /* a = int => int => int */
287258 | App f x => (eval f) (eval x);
288- =======
289- fun | Int n => n
290- /* a = int */
291- | Add => (fun x y => x + y)
292- /* a = int => int => int */
293- | App f x => (eval f) (eval x);
294- >>>>>>> update old tests
295259
296260let rec eval : type a . term a => a =
297261 fun x =>
0 commit comments