Welcome to mirror list, hosted at ThFree Co, Russian Federation.

nexttick_throw.js « message « test - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c655a8e2e4bf197631ec9efbbcb53626252cf02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict';
require('../common');

process.nextTick(function() {
  process.nextTick(function() {
    process.nextTick(function() {
      process.nextTick(function() {
        // eslint-disable-next-line no-undef
        undefined_reference_error_maker;
      });
    });
  });
});