1'use strict'; 2require('../common'); 3const punycode = require('punycode'); 4 5// This test verifies that line numbers in core modules are reported correctly. 6// The punycode module was chosen for testing because it changes infrequently. 7// If this test begins failing, it is likely due to a punycode update, and the 8// test's assertions simply need to be updated to reflect the changes. If a 9// punycode update was not made, and this test begins failing, then line numbers 10// are probably actually broken. 11punycode.decode('x'); 12