123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524 |
- import { syntaxError } from '../error/syntaxError.mjs';
- import { Location, OperationTypeNode } from './ast.mjs';
- import { DirectiveLocation } from './directiveLocation.mjs';
- import { Kind } from './kinds.mjs';
- import { isPunctuatorTokenKind, Lexer } from './lexer.mjs';
- import { isSource, Source } from './source.mjs';
- import { TokenKind } from './tokenKind.mjs';
- export function parse(source, options) {
- const parser = new Parser(source, options);
- return parser.parseDocument();
- }
- export function parseValue(source, options) {
- const parser = new Parser(source, options);
- parser.expectToken(TokenKind.SOF);
- const value = parser.parseValueLiteral(false);
- parser.expectToken(TokenKind.EOF);
- return value;
- }
- export function parseConstValue(source, options) {
- const parser = new Parser(source, options);
- parser.expectToken(TokenKind.SOF);
- const value = parser.parseConstValueLiteral();
- parser.expectToken(TokenKind.EOF);
- return value;
- }
- export function parseType(source, options) {
- const parser = new Parser(source, options);
- parser.expectToken(TokenKind.SOF);
- const type = parser.parseTypeReference();
- parser.expectToken(TokenKind.EOF);
- return type;
- }
- export class Parser {
- constructor(source, options = {}) {
- const sourceObj = isSource(source) ? source : new Source(source);
- this._lexer = new Lexer(sourceObj);
- this._options = options;
- this._tokenCounter = 0;
- }
-
- parseName() {
- const token = this.expectToken(TokenKind.NAME);
- return this.node(token, {
- kind: Kind.NAME,
- value: token.value,
- });
- }
-
- parseDocument() {
- return this.node(this._lexer.token, {
- kind: Kind.DOCUMENT,
- definitions: this.many(
- TokenKind.SOF,
- this.parseDefinition,
- TokenKind.EOF,
- ),
- });
- }
-
- parseDefinition() {
- if (this.peek(TokenKind.BRACE_L)) {
- return this.parseOperationDefinition();
- }
- const hasDescription = this.peekDescription();
- const keywordToken = hasDescription
- ? this._lexer.lookahead()
- : this._lexer.token;
- if (keywordToken.kind === TokenKind.NAME) {
- switch (keywordToken.value) {
- case 'schema':
- return this.parseSchemaDefinition();
- case 'scalar':
- return this.parseScalarTypeDefinition();
- case 'type':
- return this.parseObjectTypeDefinition();
- case 'interface':
- return this.parseInterfaceTypeDefinition();
- case 'union':
- return this.parseUnionTypeDefinition();
- case 'enum':
- return this.parseEnumTypeDefinition();
- case 'input':
- return this.parseInputObjectTypeDefinition();
- case 'directive':
- return this.parseDirectiveDefinition();
- }
- if (hasDescription) {
- throw syntaxError(
- this._lexer.source,
- this._lexer.token.start,
- 'Unexpected description, descriptions are supported only on type definitions.',
- );
- }
- switch (keywordToken.value) {
- case 'query':
- case 'mutation':
- case 'subscription':
- return this.parseOperationDefinition();
- case 'fragment':
- return this.parseFragmentDefinition();
- case 'extend':
- return this.parseTypeSystemExtension();
- }
- }
- throw this.unexpected(keywordToken);
- }
-
- parseOperationDefinition() {
- const start = this._lexer.token;
- if (this.peek(TokenKind.BRACE_L)) {
- return this.node(start, {
- kind: Kind.OPERATION_DEFINITION,
- operation: OperationTypeNode.QUERY,
- name: undefined,
- variableDefinitions: [],
- directives: [],
- selectionSet: this.parseSelectionSet(),
- });
- }
- const operation = this.parseOperationType();
- let name;
- if (this.peek(TokenKind.NAME)) {
- name = this.parseName();
- }
- return this.node(start, {
- kind: Kind.OPERATION_DEFINITION,
- operation,
- name,
- variableDefinitions: this.parseVariableDefinitions(),
- directives: this.parseDirectives(false),
- selectionSet: this.parseSelectionSet(),
- });
- }
-
- parseOperationType() {
- const operationToken = this.expectToken(TokenKind.NAME);
- switch (operationToken.value) {
- case 'query':
- return OperationTypeNode.QUERY;
- case 'mutation':
- return OperationTypeNode.MUTATION;
- case 'subscription':
- return OperationTypeNode.SUBSCRIPTION;
- }
- throw this.unexpected(operationToken);
- }
-
- parseVariableDefinitions() {
- return this.optionalMany(
- TokenKind.PAREN_L,
- this.parseVariableDefinition,
- TokenKind.PAREN_R,
- );
- }
-
- parseVariableDefinition() {
- return this.node(this._lexer.token, {
- kind: Kind.VARIABLE_DEFINITION,
- variable: this.parseVariable(),
- type: (this.expectToken(TokenKind.COLON), this.parseTypeReference()),
- defaultValue: this.expectOptionalToken(TokenKind.EQUALS)
- ? this.parseConstValueLiteral()
- : undefined,
- directives: this.parseConstDirectives(),
- });
- }
-
- parseVariable() {
- const start = this._lexer.token;
- this.expectToken(TokenKind.DOLLAR);
- return this.node(start, {
- kind: Kind.VARIABLE,
- name: this.parseName(),
- });
- }
-
- parseSelectionSet() {
- return this.node(this._lexer.token, {
- kind: Kind.SELECTION_SET,
- selections: this.many(
- TokenKind.BRACE_L,
- this.parseSelection,
- TokenKind.BRACE_R,
- ),
- });
- }
-
- parseSelection() {
- return this.peek(TokenKind.SPREAD)
- ? this.parseFragment()
- : this.parseField();
- }
-
- parseField() {
- const start = this._lexer.token;
- const nameOrAlias = this.parseName();
- let alias;
- let name;
- if (this.expectOptionalToken(TokenKind.COLON)) {
- alias = nameOrAlias;
- name = this.parseName();
- } else {
- name = nameOrAlias;
- }
- return this.node(start, {
- kind: Kind.FIELD,
- alias,
- name,
- arguments: this.parseArguments(false),
- directives: this.parseDirectives(false),
- selectionSet: this.peek(TokenKind.BRACE_L)
- ? this.parseSelectionSet()
- : undefined,
- });
- }
-
- parseArguments(isConst) {
- const item = isConst ? this.parseConstArgument : this.parseArgument;
- return this.optionalMany(TokenKind.PAREN_L, item, TokenKind.PAREN_R);
- }
-
- parseArgument(isConst = false) {
- const start = this._lexer.token;
- const name = this.parseName();
- this.expectToken(TokenKind.COLON);
- return this.node(start, {
- kind: Kind.ARGUMENT,
- name,
- value: this.parseValueLiteral(isConst),
- });
- }
- parseConstArgument() {
- return this.parseArgument(true);
- }
-
- parseFragment() {
- const start = this._lexer.token;
- this.expectToken(TokenKind.SPREAD);
- const hasTypeCondition = this.expectOptionalKeyword('on');
- if (!hasTypeCondition && this.peek(TokenKind.NAME)) {
- return this.node(start, {
- kind: Kind.FRAGMENT_SPREAD,
- name: this.parseFragmentName(),
- directives: this.parseDirectives(false),
- });
- }
- return this.node(start, {
- kind: Kind.INLINE_FRAGMENT,
- typeCondition: hasTypeCondition ? this.parseNamedType() : undefined,
- directives: this.parseDirectives(false),
- selectionSet: this.parseSelectionSet(),
- });
- }
-
- parseFragmentDefinition() {
- const start = this._lexer.token;
- this.expectKeyword('fragment');
-
-
- if (this._options.allowLegacyFragmentVariables === true) {
- return this.node(start, {
- kind: Kind.FRAGMENT_DEFINITION,
- name: this.parseFragmentName(),
- variableDefinitions: this.parseVariableDefinitions(),
- typeCondition: (this.expectKeyword('on'), this.parseNamedType()),
- directives: this.parseDirectives(false),
- selectionSet: this.parseSelectionSet(),
- });
- }
- return this.node(start, {
- kind: Kind.FRAGMENT_DEFINITION,
- name: this.parseFragmentName(),
- typeCondition: (this.expectKeyword('on'), this.parseNamedType()),
- directives: this.parseDirectives(false),
- selectionSet: this.parseSelectionSet(),
- });
- }
-
- parseFragmentName() {
- if (this._lexer.token.value === 'on') {
- throw this.unexpected();
- }
- return this.parseName();
- }
-
- parseValueLiteral(isConst) {
- const token = this._lexer.token;
- switch (token.kind) {
- case TokenKind.BRACKET_L:
- return this.parseList(isConst);
- case TokenKind.BRACE_L:
- return this.parseObject(isConst);
- case TokenKind.INT:
- this.advanceLexer();
- return this.node(token, {
- kind: Kind.INT,
- value: token.value,
- });
- case TokenKind.FLOAT:
- this.advanceLexer();
- return this.node(token, {
- kind: Kind.FLOAT,
- value: token.value,
- });
- case TokenKind.STRING:
- case TokenKind.BLOCK_STRING:
- return this.parseStringLiteral();
- case TokenKind.NAME:
- this.advanceLexer();
- switch (token.value) {
- case 'true':
- return this.node(token, {
- kind: Kind.BOOLEAN,
- value: true,
- });
- case 'false':
- return this.node(token, {
- kind: Kind.BOOLEAN,
- value: false,
- });
- case 'null':
- return this.node(token, {
- kind: Kind.NULL,
- });
- default:
- return this.node(token, {
- kind: Kind.ENUM,
- value: token.value,
- });
- }
- case TokenKind.DOLLAR:
- if (isConst) {
- this.expectToken(TokenKind.DOLLAR);
- if (this._lexer.token.kind === TokenKind.NAME) {
- const varName = this._lexer.token.value;
- throw syntaxError(
- this._lexer.source,
- token.start,
- `Unexpected variable "$${varName}" in constant value.`,
- );
- } else {
- throw this.unexpected(token);
- }
- }
- return this.parseVariable();
- default:
- throw this.unexpected();
- }
- }
- parseConstValueLiteral() {
- return this.parseValueLiteral(true);
- }
- parseStringLiteral() {
- const token = this._lexer.token;
- this.advanceLexer();
- return this.node(token, {
- kind: Kind.STRING,
- value: token.value,
- block: token.kind === TokenKind.BLOCK_STRING,
- });
- }
-
- parseList(isConst) {
- const item = () => this.parseValueLiteral(isConst);
- return this.node(this._lexer.token, {
- kind: Kind.LIST,
- values: this.any(TokenKind.BRACKET_L, item, TokenKind.BRACKET_R),
- });
- }
-
- parseObject(isConst) {
- const item = () => this.parseObjectField(isConst);
- return this.node(this._lexer.token, {
- kind: Kind.OBJECT,
- fields: this.any(TokenKind.BRACE_L, item, TokenKind.BRACE_R),
- });
- }
-
- parseObjectField(isConst) {
- const start = this._lexer.token;
- const name = this.parseName();
- this.expectToken(TokenKind.COLON);
- return this.node(start, {
- kind: Kind.OBJECT_FIELD,
- name,
- value: this.parseValueLiteral(isConst),
- });
- }
-
- parseDirectives(isConst) {
- const directives = [];
- while (this.peek(TokenKind.AT)) {
- directives.push(this.parseDirective(isConst));
- }
- return directives;
- }
- parseConstDirectives() {
- return this.parseDirectives(true);
- }
-
- parseDirective(isConst) {
- const start = this._lexer.token;
- this.expectToken(TokenKind.AT);
- return this.node(start, {
- kind: Kind.DIRECTIVE,
- name: this.parseName(),
- arguments: this.parseArguments(isConst),
- });
- }
-
- parseTypeReference() {
- const start = this._lexer.token;
- let type;
- if (this.expectOptionalToken(TokenKind.BRACKET_L)) {
- const innerType = this.parseTypeReference();
- this.expectToken(TokenKind.BRACKET_R);
- type = this.node(start, {
- kind: Kind.LIST_TYPE,
- type: innerType,
- });
- } else {
- type = this.parseNamedType();
- }
- if (this.expectOptionalToken(TokenKind.BANG)) {
- return this.node(start, {
- kind: Kind.NON_NULL_TYPE,
- type,
- });
- }
- return type;
- }
-
- parseNamedType() {
- return this.node(this._lexer.token, {
- kind: Kind.NAMED_TYPE,
- name: this.parseName(),
- });
- }
- peekDescription() {
- return this.peek(TokenKind.STRING) || this.peek(TokenKind.BLOCK_STRING);
- }
-
- parseDescription() {
- if (this.peekDescription()) {
- return this.parseStringLiteral();
- }
- }
-
- parseSchemaDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('schema');
- const directives = this.parseConstDirectives();
- const operationTypes = this.many(
- TokenKind.BRACE_L,
- this.parseOperationTypeDefinition,
- TokenKind.BRACE_R,
- );
- return this.node(start, {
- kind: Kind.SCHEMA_DEFINITION,
- description,
- directives,
- operationTypes,
- });
- }
-
- parseOperationTypeDefinition() {
- const start = this._lexer.token;
- const operation = this.parseOperationType();
- this.expectToken(TokenKind.COLON);
- const type = this.parseNamedType();
- return this.node(start, {
- kind: Kind.OPERATION_TYPE_DEFINITION,
- operation,
- type,
- });
- }
-
- parseScalarTypeDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('scalar');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- return this.node(start, {
- kind: Kind.SCALAR_TYPE_DEFINITION,
- description,
- name,
- directives,
- });
- }
-
- parseObjectTypeDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('type');
- const name = this.parseName();
- const interfaces = this.parseImplementsInterfaces();
- const directives = this.parseConstDirectives();
- const fields = this.parseFieldsDefinition();
- return this.node(start, {
- kind: Kind.OBJECT_TYPE_DEFINITION,
- description,
- name,
- interfaces,
- directives,
- fields,
- });
- }
-
- parseImplementsInterfaces() {
- return this.expectOptionalKeyword('implements')
- ? this.delimitedMany(TokenKind.AMP, this.parseNamedType)
- : [];
- }
-
- parseFieldsDefinition() {
- return this.optionalMany(
- TokenKind.BRACE_L,
- this.parseFieldDefinition,
- TokenKind.BRACE_R,
- );
- }
-
- parseFieldDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- const name = this.parseName();
- const args = this.parseArgumentDefs();
- this.expectToken(TokenKind.COLON);
- const type = this.parseTypeReference();
- const directives = this.parseConstDirectives();
- return this.node(start, {
- kind: Kind.FIELD_DEFINITION,
- description,
- name,
- arguments: args,
- type,
- directives,
- });
- }
-
- parseArgumentDefs() {
- return this.optionalMany(
- TokenKind.PAREN_L,
- this.parseInputValueDef,
- TokenKind.PAREN_R,
- );
- }
-
- parseInputValueDef() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- const name = this.parseName();
- this.expectToken(TokenKind.COLON);
- const type = this.parseTypeReference();
- let defaultValue;
- if (this.expectOptionalToken(TokenKind.EQUALS)) {
- defaultValue = this.parseConstValueLiteral();
- }
- const directives = this.parseConstDirectives();
- return this.node(start, {
- kind: Kind.INPUT_VALUE_DEFINITION,
- description,
- name,
- type,
- defaultValue,
- directives,
- });
- }
-
- parseInterfaceTypeDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('interface');
- const name = this.parseName();
- const interfaces = this.parseImplementsInterfaces();
- const directives = this.parseConstDirectives();
- const fields = this.parseFieldsDefinition();
- return this.node(start, {
- kind: Kind.INTERFACE_TYPE_DEFINITION,
- description,
- name,
- interfaces,
- directives,
- fields,
- });
- }
-
- parseUnionTypeDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('union');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- const types = this.parseUnionMemberTypes();
- return this.node(start, {
- kind: Kind.UNION_TYPE_DEFINITION,
- description,
- name,
- directives,
- types,
- });
- }
-
- parseUnionMemberTypes() {
- return this.expectOptionalToken(TokenKind.EQUALS)
- ? this.delimitedMany(TokenKind.PIPE, this.parseNamedType)
- : [];
- }
-
- parseEnumTypeDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('enum');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- const values = this.parseEnumValuesDefinition();
- return this.node(start, {
- kind: Kind.ENUM_TYPE_DEFINITION,
- description,
- name,
- directives,
- values,
- });
- }
-
- parseEnumValuesDefinition() {
- return this.optionalMany(
- TokenKind.BRACE_L,
- this.parseEnumValueDefinition,
- TokenKind.BRACE_R,
- );
- }
-
- parseEnumValueDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- const name = this.parseEnumValueName();
- const directives = this.parseConstDirectives();
- return this.node(start, {
- kind: Kind.ENUM_VALUE_DEFINITION,
- description,
- name,
- directives,
- });
- }
-
- parseEnumValueName() {
- if (
- this._lexer.token.value === 'true' ||
- this._lexer.token.value === 'false' ||
- this._lexer.token.value === 'null'
- ) {
- throw syntaxError(
- this._lexer.source,
- this._lexer.token.start,
- `${getTokenDesc(
- this._lexer.token,
- )} is reserved and cannot be used for an enum value.`,
- );
- }
- return this.parseName();
- }
-
- parseInputObjectTypeDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('input');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- const fields = this.parseInputFieldsDefinition();
- return this.node(start, {
- kind: Kind.INPUT_OBJECT_TYPE_DEFINITION,
- description,
- name,
- directives,
- fields,
- });
- }
-
- parseInputFieldsDefinition() {
- return this.optionalMany(
- TokenKind.BRACE_L,
- this.parseInputValueDef,
- TokenKind.BRACE_R,
- );
- }
-
- parseTypeSystemExtension() {
- const keywordToken = this._lexer.lookahead();
- if (keywordToken.kind === TokenKind.NAME) {
- switch (keywordToken.value) {
- case 'schema':
- return this.parseSchemaExtension();
- case 'scalar':
- return this.parseScalarTypeExtension();
- case 'type':
- return this.parseObjectTypeExtension();
- case 'interface':
- return this.parseInterfaceTypeExtension();
- case 'union':
- return this.parseUnionTypeExtension();
- case 'enum':
- return this.parseEnumTypeExtension();
- case 'input':
- return this.parseInputObjectTypeExtension();
- }
- }
- throw this.unexpected(keywordToken);
- }
-
- parseSchemaExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('schema');
- const directives = this.parseConstDirectives();
- const operationTypes = this.optionalMany(
- TokenKind.BRACE_L,
- this.parseOperationTypeDefinition,
- TokenKind.BRACE_R,
- );
- if (directives.length === 0 && operationTypes.length === 0) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.SCHEMA_EXTENSION,
- directives,
- operationTypes,
- });
- }
-
- parseScalarTypeExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('scalar');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- if (directives.length === 0) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.SCALAR_TYPE_EXTENSION,
- name,
- directives,
- });
- }
-
- parseObjectTypeExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('type');
- const name = this.parseName();
- const interfaces = this.parseImplementsInterfaces();
- const directives = this.parseConstDirectives();
- const fields = this.parseFieldsDefinition();
- if (
- interfaces.length === 0 &&
- directives.length === 0 &&
- fields.length === 0
- ) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.OBJECT_TYPE_EXTENSION,
- name,
- interfaces,
- directives,
- fields,
- });
- }
-
- parseInterfaceTypeExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('interface');
- const name = this.parseName();
- const interfaces = this.parseImplementsInterfaces();
- const directives = this.parseConstDirectives();
- const fields = this.parseFieldsDefinition();
- if (
- interfaces.length === 0 &&
- directives.length === 0 &&
- fields.length === 0
- ) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.INTERFACE_TYPE_EXTENSION,
- name,
- interfaces,
- directives,
- fields,
- });
- }
-
- parseUnionTypeExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('union');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- const types = this.parseUnionMemberTypes();
- if (directives.length === 0 && types.length === 0) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.UNION_TYPE_EXTENSION,
- name,
- directives,
- types,
- });
- }
-
- parseEnumTypeExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('enum');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- const values = this.parseEnumValuesDefinition();
- if (directives.length === 0 && values.length === 0) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.ENUM_TYPE_EXTENSION,
- name,
- directives,
- values,
- });
- }
-
- parseInputObjectTypeExtension() {
- const start = this._lexer.token;
- this.expectKeyword('extend');
- this.expectKeyword('input');
- const name = this.parseName();
- const directives = this.parseConstDirectives();
- const fields = this.parseInputFieldsDefinition();
- if (directives.length === 0 && fields.length === 0) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: Kind.INPUT_OBJECT_TYPE_EXTENSION,
- name,
- directives,
- fields,
- });
- }
-
- parseDirectiveDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('directive');
- this.expectToken(TokenKind.AT);
- const name = this.parseName();
- const args = this.parseArgumentDefs();
- const repeatable = this.expectOptionalKeyword('repeatable');
- this.expectKeyword('on');
- const locations = this.parseDirectiveLocations();
- return this.node(start, {
- kind: Kind.DIRECTIVE_DEFINITION,
- description,
- name,
- arguments: args,
- repeatable,
- locations,
- });
- }
-
- parseDirectiveLocations() {
- return this.delimitedMany(TokenKind.PIPE, this.parseDirectiveLocation);
- }
-
- parseDirectiveLocation() {
- const start = this._lexer.token;
- const name = this.parseName();
- if (Object.prototype.hasOwnProperty.call(DirectiveLocation, name.value)) {
- return name;
- }
- throw this.unexpected(start);
- }
-
- node(startToken, node) {
- if (this._options.noLocation !== true) {
- node.loc = new Location(
- startToken,
- this._lexer.lastToken,
- this._lexer.source,
- );
- }
- return node;
- }
-
- peek(kind) {
- return this._lexer.token.kind === kind;
- }
-
- expectToken(kind) {
- const token = this._lexer.token;
- if (token.kind === kind) {
- this.advanceLexer();
- return token;
- }
- throw syntaxError(
- this._lexer.source,
- token.start,
- `Expected ${getTokenKindDesc(kind)}, found ${getTokenDesc(token)}.`,
- );
- }
-
- expectOptionalToken(kind) {
- const token = this._lexer.token;
- if (token.kind === kind) {
- this.advanceLexer();
- return true;
- }
- return false;
- }
-
- expectKeyword(value) {
- const token = this._lexer.token;
- if (token.kind === TokenKind.NAME && token.value === value) {
- this.advanceLexer();
- } else {
- throw syntaxError(
- this._lexer.source,
- token.start,
- `Expected "${value}", found ${getTokenDesc(token)}.`,
- );
- }
- }
-
- expectOptionalKeyword(value) {
- const token = this._lexer.token;
- if (token.kind === TokenKind.NAME && token.value === value) {
- this.advanceLexer();
- return true;
- }
- return false;
- }
-
- unexpected(atToken) {
- const token =
- atToken !== null && atToken !== void 0 ? atToken : this._lexer.token;
- return syntaxError(
- this._lexer.source,
- token.start,
- `Unexpected ${getTokenDesc(token)}.`,
- );
- }
-
- any(openKind, parseFn, closeKind) {
- this.expectToken(openKind);
- const nodes = [];
- while (!this.expectOptionalToken(closeKind)) {
- nodes.push(parseFn.call(this));
- }
- return nodes;
- }
-
- optionalMany(openKind, parseFn, closeKind) {
- if (this.expectOptionalToken(openKind)) {
- const nodes = [];
- do {
- nodes.push(parseFn.call(this));
- } while (!this.expectOptionalToken(closeKind));
- return nodes;
- }
- return [];
- }
-
- many(openKind, parseFn, closeKind) {
- this.expectToken(openKind);
- const nodes = [];
- do {
- nodes.push(parseFn.call(this));
- } while (!this.expectOptionalToken(closeKind));
- return nodes;
- }
-
- delimitedMany(delimiterKind, parseFn) {
- this.expectOptionalToken(delimiterKind);
- const nodes = [];
- do {
- nodes.push(parseFn.call(this));
- } while (this.expectOptionalToken(delimiterKind));
- return nodes;
- }
- advanceLexer() {
- const { maxTokens } = this._options;
- const token = this._lexer.advance();
- if (maxTokens !== undefined && token.kind !== TokenKind.EOF) {
- ++this._tokenCounter;
- if (this._tokenCounter > maxTokens) {
- throw syntaxError(
- this._lexer.source,
- token.start,
- `Document contains more that ${maxTokens} tokens. Parsing aborted.`,
- );
- }
- }
- }
- }
- function getTokenDesc(token) {
- const value = token.value;
- return getTokenKindDesc(token.kind) + (value != null ? ` "${value}"` : '');
- }
- function getTokenKindDesc(kind) {
- return isPunctuatorTokenKind(kind) ? `"${kind}"` : kind;
- }
|