File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ const missing = getExpectedSymbols().filter((symbol) => {
48
48
return ! symbols . includes ( symbol ) ;
49
49
} ) ;
50
50
51
- assert . strictEqual ( missing . length , 0 , `Missing constants: ${ missing } ` ) ;
51
+ assert . strictEqual ( missing . length , 0 ,
52
+ `Missing constants: \n${ missing . join ( '\n' ) } ` ) ;
52
53
53
54
// This is only a function so that the long list of expected symbols can be
54
55
// pushed to the bottom of the file for improved readability.
@@ -58,6 +59,7 @@ function getExpectedSymbols() {
58
59
// should only consist of postmortem constants, and some of them can be
59
60
// relatively long.
60
61
/* eslint-disable max-len */
62
+ 'v8dbg_class_DescriptorArray__header_size__uintptr_t' ,
61
63
'v8dbg_bit_field3_is_dictionary_map_shift' ,
62
64
'v8dbg_bit_field3_number_of_own_descriptors_shift' ,
63
65
'v8dbg_class_Code__instruction_size__int' ,
You can’t perform that action at this time.
0 commit comments