eslint-plugin-unicorn
Version:
More than 100 powerful ESLint rules
19 lines (14 loc) • 583 B
JavaScript
/**
@typedef {line: number, column: number} Position
Get the location of the given class node for reporting.
@param {Node} node - The class node to get.
@param {SourceCode} sourceCode - The source code object to get tokens.
@returns {{start: Position, end: Position}} The location of the class node for reporting.
*/
export default function getClassHeadLocation(node, sourceCode) {
const {body} = node;
const tokenBeforeBody = sourceCode.getTokenBefore(body);
const {start} = sourceCode.getLoc(node);
const {end} = sourceCode.getLoc(tokenBeforeBody);
return {start, end};
}