@@ -170,10 +170,6 @@ if (process.env.NODE_V8_COVERAGE) {
170
170
expected . atRunTime . add ( 'Internal Binding profiler' ) ;
171
171
}
172
172
173
- const difference = ( setA , setB ) => {
174
- return new Set ( [ ...setA ] . filter ( ( x ) => ! setB . has ( x ) ) ) ;
175
- } ;
176
-
177
173
// Accumulate all the errors and print them at the end instead of throwing
178
174
// immediately which makes it harder to update the test.
179
175
const errorLogs = [ ] ;
@@ -187,8 +183,8 @@ function err(message) {
187
183
}
188
184
189
185
if ( common . isMainThread ) {
190
- const missing = difference ( expected . beforePreExec , actual . beforePreExec ) ;
191
- const extra = difference ( actual . beforePreExec , expected . beforePreExec ) ;
186
+ const missing = expected . beforePreExec . difference ( actual . beforePreExec ) ;
187
+ const extra = actual . beforePreExec . difference ( expected . beforePreExec ) ;
192
188
if ( missing . size !== 0 ) {
193
189
err ( 'These builtins are now no longer loaded before pre-execution.' ) ;
194
190
err ( 'If this is intentional, remove them from `expected.beforePreExec`.' ) ;
@@ -222,8 +218,8 @@ if (!common.isMainThread) {
222
218
}
223
219
224
220
{
225
- const missing = difference ( expected . atRunTime , actual . atRunTime ) ;
226
- const extra = difference ( actual . atRunTime , expected . atRunTime ) ;
221
+ const missing = expected . atRunTime . difference ( actual . atRunTime ) ;
222
+ const extra = actual . atRunTime . difference ( expected . atRunTime ) ;
227
223
if ( missing . size !== 0 ) {
228
224
err ( 'These builtins are now no longer loaded at run time.' ) ;
229
225
err ( 'If this is intentional, remove them from `expected.atRunTime`.' ) ;
0 commit comments