Skip to content

Commit d475502

Browse files
committed
format
1 parent 5a808c0 commit d475502

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

src/wasm-binary.h

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -373,44 +373,44 @@ enum EncodedType {
373373
nonnullable = -0x1c, // 0x64
374374
nullable = -0x1d, // 0x63
375375
// exception handling
376-
exnref = -0x17, // 0x69
376+
exnref = -0x17, // 0x69
377377
nullexnref = -0xc, // 0x74
378378
// string reference types
379-
stringref = -0x19, // 0x67
380-
stringview_wtf8 = -0x1a, // 0x66
379+
stringref = -0x19, // 0x67
380+
stringview_wtf8 = -0x1a, // 0x66
381381
stringview_wtf16 = -0x1e, // 0x62
382382
stringview_iter = -0x1f, // 0x61
383383
// type forms
384-
Func = -0x20, // 0x60
385-
Cont = -0x23, // 0x5d
386-
Struct = -0x21, // 0x5f
387-
Array = -0x22, // 0x5e
388-
Sub = -0x30, // 0x50
384+
Func = -0x20, // 0x60
385+
Cont = -0x23, // 0x5d
386+
Struct = -0x21, // 0x5f
387+
Array = -0x22, // 0x5e
388+
Sub = -0x30, // 0x50
389389
SubFinal = -0x31, // 0x4f
390390
// isorecursive recursion groups
391-
Rec = -0x32, // 0x4e
391+
Rec = -0x32, // 0x4e
392392
// block_type
393393
Empty = -0x40, // 0x40
394394
};
395395

396396
enum EncodedHeapType {
397-
nofunc = -0xd, // 0x73
398-
noext = -0xe, // 0x72
399-
none = -0xf, // 0x71
400-
func = -0x10, // 0x70
401-
ext = -0x11, // 0x6f
402-
any = -0x12, // 0x6e
403-
eq = -0x13, // 0x6d
404-
exn = -0x17, // 0x69
405-
noexn = -0xc, // 0x74
397+
nofunc = -0xd, // 0x73
398+
noext = -0xe, // 0x72
399+
none = -0xf, // 0x71
400+
func = -0x10, // 0x70
401+
ext = -0x11, // 0x6f
402+
any = -0x12, // 0x6e
403+
eq = -0x13, // 0x6d
404+
exn = -0x17, // 0x69
405+
noexn = -0xc, // 0x74
406406
i31 = -0x14, // 0x6c
407407
struct_ = -0x15, // 0x6b
408408
array = -0x16, // 0x6a
409409
string = -0x19, // 0x67
410410
// stringview/iter constants are identical to type, and cannot be duplicated
411411
// here as that would be a compiler error, so add _heap suffixes. See
412412
// https://github.com/WebAssembly/stringref/issues/12
413-
stringview_wtf8_heap = -0x1a, // 0x66
413+
stringview_wtf8_heap = -0x1a, // 0x66
414414
stringview_wtf16_heap = -0x1e, // 0x62
415415
stringview_iter_heap = -0x1f, // 0x61
416416
};

0 commit comments

Comments
 (0)