Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit b0c4a97

Browse files
committed
Fix indent
1 parent 61ae7cd commit b0c4a97

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

interpreter/text/lexer.mll

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -579,17 +579,17 @@ rule token = parse
579579
{ BINARY i32x4_dot_i16x8_s }
580580

581581
| "i16x8.extmul_low_i8x16_"(sign as s)
582-
{ BINARY (ext s i16x8_extmul_low_i8x16_s i16x8_extmul_low_i8x16_u) }
582+
{ BINARY (ext s i16x8_extmul_low_i8x16_s i16x8_extmul_low_i8x16_u) }
583583
| "i16x8.extmul_high_i8x16_"(sign as s)
584-
{ BINARY (ext s i16x8_extmul_high_i8x16_s i16x8_extmul_high_i8x16_u) }
584+
{ BINARY (ext s i16x8_extmul_high_i8x16_s i16x8_extmul_high_i8x16_u) }
585585
| "i32x4.extmul_low_i16x8_"(sign as s)
586-
{ BINARY (ext s i32x4_extmul_low_i16x8_s i32x4_extmul_low_i16x8_u) }
586+
{ BINARY (ext s i32x4_extmul_low_i16x8_s i32x4_extmul_low_i16x8_u) }
587587
| "i32x4.extmul_high_i16x8_"(sign as s)
588-
{ BINARY (ext s i32x4_extmul_high_i16x8_s i32x4_extmul_high_i16x8_u) }
588+
{ BINARY (ext s i32x4_extmul_high_i16x8_s i32x4_extmul_high_i16x8_u) }
589589
| "i64x2.extmul_low_i32x4_"(sign as s)
590-
{ BINARY (ext s i64x2_extmul_low_i32x4_s i64x2_extmul_low_i32x4_u) }
590+
{ BINARY (ext s i64x2_extmul_low_i32x4_s i64x2_extmul_low_i32x4_u) }
591591
| "i64x2.extmul_high_i32x4_"(sign as s)
592-
{ BINARY (ext s i64x2_extmul_high_i32x4_s i64x2_extmul_high_i32x4_u) }
592+
{ BINARY (ext s i64x2_extmul_high_i32x4_s i64x2_extmul_high_i32x4_u) }
593593

594594
| (simd_shape as s) { SIMD_SHAPE (simd_shape s) }
595595

0 commit comments

Comments
 (0)