mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
bd462ad81b
Only activated on some subfolders to minimize the diff, ideally this rule would be applied gradually to the entire codebase in follow-up commits. PR-URL: https://github.com/nodejs/node/pull/45468 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
20 lines
462 B
JavaScript
20 lines
462 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const { isCPPSymbolsNotMapped } = require('./util');
|
|
|
|
if (isCPPSymbolsNotMapped) {
|
|
common.skip('C++ symbols are not mapped for this os.');
|
|
}
|
|
|
|
const base = require('./tick-processor-base.js');
|
|
|
|
base.runTest({
|
|
pattern: /^{/,
|
|
code: `function f() {
|
|
require('vm').createContext({});
|
|
setImmediate(function() { f(); });
|
|
};
|
|
f();`,
|
|
profProcessFlags: ['--preprocess'],
|
|
});
|