import { devAssert } from '../jsutils/devAssert';
import { inspect } from '../jsutils/inspect';
import { instanceOf } from '../jsutils/instanceOf';
interface Location {
line: number;
column: number;
}
export class Source {
body: string;
name: string;
locationOffset: Location;
constructor(
body: string,
name: string = 'GraphQL request',
locationOffset: Location = { line: 1, column: 1 },
) {
devAssert(
typeof body === 'string',
`Body must be a string. Received: ${inspect(body)}.`,
);
this.body = body;
this.name = name;
this.locationOffset = locationOffset;
devAssert(
this.locationOffset.line > 0,
'line in locationOffset is 1-indexed and must be positive.',
);
devAssert(
this.locationOffset.column > 0,
'column in locationOffset is 1-indexed and must be positive.',
);
}
get [Symbol.toStringTag]() {
return 'Source';
}
}
export function isSource(source: unknown): source is Source {
return instanceOf(source, Source);
}