File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1010const Fs = require ( 'fs' ) ;
1111const Path = require ( 'path' ) ;
1212const Espree = require ( 'espree' ) ;
13- const SourceMapSupport = require ( 'source-map-support' ) ;
1413const SourceMapConsumer = require ( 'source-map' ) . SourceMapConsumer ;
14+ const SourceMapSupport = require ( 'source-map-support' ) ;
1515const Transform = require ( './transform' ) ;
1616
1717
@@ -345,7 +345,7 @@ internals.instrument = function (filename) {
345345 if ( ( ! nodesByLine [ i ] || ! nodesByLine [ i ] . find ( ( type ) => type !== 'Line' && type !== 'Block' ) ) && ! record . commentedLines [ i ] ) {
346346 record . commentedLines [ i ] = true ;
347347
348- // Acorm remove comment delimiters, so start and end lines must never be considered blank if they content is
348+ // Acorn removes comment delimiters, so start and end lines must never be considered blank if they content is
349349 if ( i === start || i === end || ! blank . test ( internals . sources [ filename ] [ i - 1 ] ) ) {
350350 commented ++ ;
351351 }
Original file line number Diff line number Diff line change 22
33// Load modules
44
5+ // 'cluster' loaded below in internals.loadLazyObjects()
56const Domain = require ( 'domain' ) ;
67const Items = require ( 'items' ) ;
78const Hoek = require ( 'hoek' ) ;
You can’t perform that action at this time.
0 commit comments