import type { NodePath } from '@babel/traverse'; import type * as t from '@babel/types'; import type { Metadata } from '../types'; /** * Get comments for `path` in both the line before and on the current line. * * e.g. * `
// @compiled-disable-line` will output `{before: [], current: [...]} * * @param path {NodePath