mirror of
https://github.com/nodejs/node.git
synced 2025-05-14 15:26:29 +00:00

Many test modules load assert but do not use it. This change removes those instances. It also removes a handful of other unused variables when they were nearby. PR-URL: https://github.com/nodejs/node/pull/4438 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
22 lines
333 B
JavaScript
22 lines
333 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var vm = require('vm');
|
|
|
|
console.error('beginning');
|
|
|
|
try {
|
|
vm.runInThisContext('var 5;', {
|
|
filename: 'test.vm',
|
|
displayErrors: false
|
|
});
|
|
} catch (e) {}
|
|
|
|
console.error('middle');
|
|
|
|
vm.runInThisContext('var 5;', {
|
|
filename: 'test.vm',
|
|
displayErrors: false
|
|
});
|
|
|
|
console.error('end');
|