16 lines
547 B
Plaintext
16 lines
547 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.LINEBREAK_MATCHER = void 0;
|
|
exports.isTokenOnSameLine = isTokenOnSameLine;
|
|
/**
|
|
* A regular expression to match line terminators.
|
|
* @see https://tc39.es/ecma262/multipage/ecmascript-language-lexical-grammar.html#prod-LineTerminator
|
|
*/
|
|
exports.LINEBREAK_MATCHER = /\r\n|[\r\n\u2028\u2029]/;
|
|
/**
|
|
* Determines whether two adjacent tokens are on the same line
|
|
*/
|
|
function isTokenOnSameLine(left, right) {
|
|
return left.loc.end.line === right.loc.start.line;
|
|
}
|