• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Flags: --expose-gc
2'use strict';
3require('../common');
4const { testGCProfiler } = require('../common/v8');
5
6testGCProfiler();
7
8for (let i = 0; i < 100; i++) {
9  new Array(100);
10}
11
12global?.gc();
13