1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567 |
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true,
- });
- exports.Parser = void 0;
- exports.parse = parse;
- exports.parseConstValue = parseConstValue;
- exports.parseType = parseType;
- exports.parseValue = parseValue;
- var _syntaxError = require('../error/syntaxError.js');
- var _ast = require('./ast.js');
- var _directiveLocation = require('./directiveLocation.js');
- var _kinds = require('./kinds.js');
- var _lexer = require('./lexer.js');
- var _source = require('./source.js');
- var _tokenKind = require('./tokenKind.js');
- function parse(source, options) {
- const parser = new Parser(source, options);
- return parser.parseDocument();
- }
- function parseValue(source, options) {
- const parser = new Parser(source, options);
- parser.expectToken(_tokenKind.TokenKind.SOF);
- const value = parser.parseValueLiteral(false);
- parser.expectToken(_tokenKind.TokenKind.EOF);
- return value;
- }
- function parseConstValue(source, options) {
- const parser = new Parser(source, options);
- parser.expectToken(_tokenKind.TokenKind.SOF);
- const value = parser.parseConstValueLiteral();
- parser.expectToken(_tokenKind.TokenKind.EOF);
- return value;
- }
- function parseType(source, options) {
- const parser = new Parser(source, options);
- parser.expectToken(_tokenKind.TokenKind.SOF);
- const type = parser.parseTypeReference();
- parser.expectToken(_tokenKind.TokenKind.EOF);
- return type;
- }
- class Parser {
- constructor(source, options = {}) {
- const sourceObj = (0, _source.isSource)(source)
- ? source
- : new _source.Source(source);
- this._lexer = new _lexer.Lexer(sourceObj);
- this._options = options;
- this._tokenCounter = 0;
- }
-
- parseName() {
- const token = this.expectToken(_tokenKind.TokenKind.NAME);
- return this.node(token, {
- kind: _kinds.Kind.NAME,
- value: token.value,
- });
- }
-
- parseDocument() {
- return this.node(this._lexer.token, {
- kind: _kinds.Kind.DOCUMENT,
- definitions: this.many(
- _tokenKind.TokenKind.SOF,
- this.parseDefinition,
- _tokenKind.TokenKind.EOF,
- ),
- });
- }
-
- parseDefinition() {
- if (this.peek(_tokenKind.TokenKind.BRACE_L)) {
- return this.parseOperationDefinition();
- }
- const hasDescription = this.peekDescription();
- const keywordToken = hasDescription
- ? this._lexer.lookahead()
- : this._lexer.token;
- if (keywordToken.kind === _tokenKind.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 (0, _syntaxError.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.TokenKind.BRACE_L)) {
- return this.node(start, {
- kind: _kinds.Kind.OPERATION_DEFINITION,
- operation: _ast.OperationTypeNode.QUERY,
- name: undefined,
- variableDefinitions: [],
- directives: [],
- selectionSet: this.parseSelectionSet(),
- });
- }
- const operation = this.parseOperationType();
- let name;
- if (this.peek(_tokenKind.TokenKind.NAME)) {
- name = this.parseName();
- }
- return this.node(start, {
- kind: _kinds.Kind.OPERATION_DEFINITION,
- operation,
- name,
- variableDefinitions: this.parseVariableDefinitions(),
- directives: this.parseDirectives(false),
- selectionSet: this.parseSelectionSet(),
- });
- }
-
- parseOperationType() {
- const operationToken = this.expectToken(_tokenKind.TokenKind.NAME);
- switch (operationToken.value) {
- case 'query':
- return _ast.OperationTypeNode.QUERY;
- case 'mutation':
- return _ast.OperationTypeNode.MUTATION;
- case 'subscription':
- return _ast.OperationTypeNode.SUBSCRIPTION;
- }
- throw this.unexpected(operationToken);
- }
-
- parseVariableDefinitions() {
- return this.optionalMany(
- _tokenKind.TokenKind.PAREN_L,
- this.parseVariableDefinition,
- _tokenKind.TokenKind.PAREN_R,
- );
- }
-
- parseVariableDefinition() {
- return this.node(this._lexer.token, {
- kind: _kinds.Kind.VARIABLE_DEFINITION,
- variable: this.parseVariable(),
- type:
- (this.expectToken(_tokenKind.TokenKind.COLON),
- this.parseTypeReference()),
- defaultValue: this.expectOptionalToken(_tokenKind.TokenKind.EQUALS)
- ? this.parseConstValueLiteral()
- : undefined,
- directives: this.parseConstDirectives(),
- });
- }
-
- parseVariable() {
- const start = this._lexer.token;
- this.expectToken(_tokenKind.TokenKind.DOLLAR);
- return this.node(start, {
- kind: _kinds.Kind.VARIABLE,
- name: this.parseName(),
- });
- }
-
- parseSelectionSet() {
- return this.node(this._lexer.token, {
- kind: _kinds.Kind.SELECTION_SET,
- selections: this.many(
- _tokenKind.TokenKind.BRACE_L,
- this.parseSelection,
- _tokenKind.TokenKind.BRACE_R,
- ),
- });
- }
-
- parseSelection() {
- return this.peek(_tokenKind.TokenKind.SPREAD)
- ? this.parseFragment()
- : this.parseField();
- }
-
- parseField() {
- const start = this._lexer.token;
- const nameOrAlias = this.parseName();
- let alias;
- let name;
- if (this.expectOptionalToken(_tokenKind.TokenKind.COLON)) {
- alias = nameOrAlias;
- name = this.parseName();
- } else {
- name = nameOrAlias;
- }
- return this.node(start, {
- kind: _kinds.Kind.FIELD,
- alias,
- name,
- arguments: this.parseArguments(false),
- directives: this.parseDirectives(false),
- selectionSet: this.peek(_tokenKind.TokenKind.BRACE_L)
- ? this.parseSelectionSet()
- : undefined,
- });
- }
-
- parseArguments(isConst) {
- const item = isConst ? this.parseConstArgument : this.parseArgument;
- return this.optionalMany(
- _tokenKind.TokenKind.PAREN_L,
- item,
- _tokenKind.TokenKind.PAREN_R,
- );
- }
-
- parseArgument(isConst = false) {
- const start = this._lexer.token;
- const name = this.parseName();
- this.expectToken(_tokenKind.TokenKind.COLON);
- return this.node(start, {
- kind: _kinds.Kind.ARGUMENT,
- name,
- value: this.parseValueLiteral(isConst),
- });
- }
- parseConstArgument() {
- return this.parseArgument(true);
- }
-
- parseFragment() {
- const start = this._lexer.token;
- this.expectToken(_tokenKind.TokenKind.SPREAD);
- const hasTypeCondition = this.expectOptionalKeyword('on');
- if (!hasTypeCondition && this.peek(_tokenKind.TokenKind.NAME)) {
- return this.node(start, {
- kind: _kinds.Kind.FRAGMENT_SPREAD,
- name: this.parseFragmentName(),
- directives: this.parseDirectives(false),
- });
- }
- return this.node(start, {
- kind: _kinds.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: _kinds.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: _kinds.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.TokenKind.BRACKET_L:
- return this.parseList(isConst);
- case _tokenKind.TokenKind.BRACE_L:
- return this.parseObject(isConst);
- case _tokenKind.TokenKind.INT:
- this.advanceLexer();
- return this.node(token, {
- kind: _kinds.Kind.INT,
- value: token.value,
- });
- case _tokenKind.TokenKind.FLOAT:
- this.advanceLexer();
- return this.node(token, {
- kind: _kinds.Kind.FLOAT,
- value: token.value,
- });
- case _tokenKind.TokenKind.STRING:
- case _tokenKind.TokenKind.BLOCK_STRING:
- return this.parseStringLiteral();
- case _tokenKind.TokenKind.NAME:
- this.advanceLexer();
- switch (token.value) {
- case 'true':
- return this.node(token, {
- kind: _kinds.Kind.BOOLEAN,
- value: true,
- });
- case 'false':
- return this.node(token, {
- kind: _kinds.Kind.BOOLEAN,
- value: false,
- });
- case 'null':
- return this.node(token, {
- kind: _kinds.Kind.NULL,
- });
- default:
- return this.node(token, {
- kind: _kinds.Kind.ENUM,
- value: token.value,
- });
- }
- case _tokenKind.TokenKind.DOLLAR:
- if (isConst) {
- this.expectToken(_tokenKind.TokenKind.DOLLAR);
- if (this._lexer.token.kind === _tokenKind.TokenKind.NAME) {
- const varName = this._lexer.token.value;
- throw (0, _syntaxError.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: _kinds.Kind.STRING,
- value: token.value,
- block: token.kind === _tokenKind.TokenKind.BLOCK_STRING,
- });
- }
-
- parseList(isConst) {
- const item = () => this.parseValueLiteral(isConst);
- return this.node(this._lexer.token, {
- kind: _kinds.Kind.LIST,
- values: this.any(
- _tokenKind.TokenKind.BRACKET_L,
- item,
- _tokenKind.TokenKind.BRACKET_R,
- ),
- });
- }
-
- parseObject(isConst) {
- const item = () => this.parseObjectField(isConst);
- return this.node(this._lexer.token, {
- kind: _kinds.Kind.OBJECT,
- fields: this.any(
- _tokenKind.TokenKind.BRACE_L,
- item,
- _tokenKind.TokenKind.BRACE_R,
- ),
- });
- }
-
- parseObjectField(isConst) {
- const start = this._lexer.token;
- const name = this.parseName();
- this.expectToken(_tokenKind.TokenKind.COLON);
- return this.node(start, {
- kind: _kinds.Kind.OBJECT_FIELD,
- name,
- value: this.parseValueLiteral(isConst),
- });
- }
-
- parseDirectives(isConst) {
- const directives = [];
- while (this.peek(_tokenKind.TokenKind.AT)) {
- directives.push(this.parseDirective(isConst));
- }
- return directives;
- }
- parseConstDirectives() {
- return this.parseDirectives(true);
- }
-
- parseDirective(isConst) {
- const start = this._lexer.token;
- this.expectToken(_tokenKind.TokenKind.AT);
- return this.node(start, {
- kind: _kinds.Kind.DIRECTIVE,
- name: this.parseName(),
- arguments: this.parseArguments(isConst),
- });
- }
-
- parseTypeReference() {
- const start = this._lexer.token;
- let type;
- if (this.expectOptionalToken(_tokenKind.TokenKind.BRACKET_L)) {
- const innerType = this.parseTypeReference();
- this.expectToken(_tokenKind.TokenKind.BRACKET_R);
- type = this.node(start, {
- kind: _kinds.Kind.LIST_TYPE,
- type: innerType,
- });
- } else {
- type = this.parseNamedType();
- }
- if (this.expectOptionalToken(_tokenKind.TokenKind.BANG)) {
- return this.node(start, {
- kind: _kinds.Kind.NON_NULL_TYPE,
- type,
- });
- }
- return type;
- }
-
- parseNamedType() {
- return this.node(this._lexer.token, {
- kind: _kinds.Kind.NAMED_TYPE,
- name: this.parseName(),
- });
- }
- peekDescription() {
- return (
- this.peek(_tokenKind.TokenKind.STRING) ||
- this.peek(_tokenKind.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.TokenKind.BRACE_L,
- this.parseOperationTypeDefinition,
- _tokenKind.TokenKind.BRACE_R,
- );
- return this.node(start, {
- kind: _kinds.Kind.SCHEMA_DEFINITION,
- description,
- directives,
- operationTypes,
- });
- }
-
- parseOperationTypeDefinition() {
- const start = this._lexer.token;
- const operation = this.parseOperationType();
- this.expectToken(_tokenKind.TokenKind.COLON);
- const type = this.parseNamedType();
- return this.node(start, {
- kind: _kinds.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: _kinds.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: _kinds.Kind.OBJECT_TYPE_DEFINITION,
- description,
- name,
- interfaces,
- directives,
- fields,
- });
- }
-
- parseImplementsInterfaces() {
- return this.expectOptionalKeyword('implements')
- ? this.delimitedMany(_tokenKind.TokenKind.AMP, this.parseNamedType)
- : [];
- }
-
- parseFieldsDefinition() {
- return this.optionalMany(
- _tokenKind.TokenKind.BRACE_L,
- this.parseFieldDefinition,
- _tokenKind.TokenKind.BRACE_R,
- );
- }
-
- parseFieldDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- const name = this.parseName();
- const args = this.parseArgumentDefs();
- this.expectToken(_tokenKind.TokenKind.COLON);
- const type = this.parseTypeReference();
- const directives = this.parseConstDirectives();
- return this.node(start, {
- kind: _kinds.Kind.FIELD_DEFINITION,
- description,
- name,
- arguments: args,
- type,
- directives,
- });
- }
-
- parseArgumentDefs() {
- return this.optionalMany(
- _tokenKind.TokenKind.PAREN_L,
- this.parseInputValueDef,
- _tokenKind.TokenKind.PAREN_R,
- );
- }
-
- parseInputValueDef() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- const name = this.parseName();
- this.expectToken(_tokenKind.TokenKind.COLON);
- const type = this.parseTypeReference();
- let defaultValue;
- if (this.expectOptionalToken(_tokenKind.TokenKind.EQUALS)) {
- defaultValue = this.parseConstValueLiteral();
- }
- const directives = this.parseConstDirectives();
- return this.node(start, {
- kind: _kinds.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: _kinds.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: _kinds.Kind.UNION_TYPE_DEFINITION,
- description,
- name,
- directives,
- types,
- });
- }
-
- parseUnionMemberTypes() {
- return this.expectOptionalToken(_tokenKind.TokenKind.EQUALS)
- ? this.delimitedMany(_tokenKind.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: _kinds.Kind.ENUM_TYPE_DEFINITION,
- description,
- name,
- directives,
- values,
- });
- }
-
- parseEnumValuesDefinition() {
- return this.optionalMany(
- _tokenKind.TokenKind.BRACE_L,
- this.parseEnumValueDefinition,
- _tokenKind.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: _kinds.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 (0, _syntaxError.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: _kinds.Kind.INPUT_OBJECT_TYPE_DEFINITION,
- description,
- name,
- directives,
- fields,
- });
- }
-
- parseInputFieldsDefinition() {
- return this.optionalMany(
- _tokenKind.TokenKind.BRACE_L,
- this.parseInputValueDef,
- _tokenKind.TokenKind.BRACE_R,
- );
- }
-
- parseTypeSystemExtension() {
- const keywordToken = this._lexer.lookahead();
- if (keywordToken.kind === _tokenKind.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.TokenKind.BRACE_L,
- this.parseOperationTypeDefinition,
- _tokenKind.TokenKind.BRACE_R,
- );
- if (directives.length === 0 && operationTypes.length === 0) {
- throw this.unexpected();
- }
- return this.node(start, {
- kind: _kinds.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: _kinds.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: _kinds.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: _kinds.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: _kinds.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: _kinds.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: _kinds.Kind.INPUT_OBJECT_TYPE_EXTENSION,
- name,
- directives,
- fields,
- });
- }
-
- parseDirectiveDefinition() {
- const start = this._lexer.token;
- const description = this.parseDescription();
- this.expectKeyword('directive');
- this.expectToken(_tokenKind.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: _kinds.Kind.DIRECTIVE_DEFINITION,
- description,
- name,
- arguments: args,
- repeatable,
- locations,
- });
- }
-
- parseDirectiveLocations() {
- return this.delimitedMany(
- _tokenKind.TokenKind.PIPE,
- this.parseDirectiveLocation,
- );
- }
-
- parseDirectiveLocation() {
- const start = this._lexer.token;
- const name = this.parseName();
- if (
- Object.prototype.hasOwnProperty.call(
- _directiveLocation.DirectiveLocation,
- name.value,
- )
- ) {
- return name;
- }
- throw this.unexpected(start);
- }
-
- node(startToken, node) {
- if (this._options.noLocation !== true) {
- node.loc = new _ast.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 (0, _syntaxError.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.TokenKind.NAME && token.value === value) {
- this.advanceLexer();
- } else {
- throw (0, _syntaxError.syntaxError)(
- this._lexer.source,
- token.start,
- `Expected "${value}", found ${getTokenDesc(token)}.`,
- );
- }
- }
-
- expectOptionalKeyword(value) {
- const token = this._lexer.token;
- if (token.kind === _tokenKind.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 (0, _syntaxError.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.TokenKind.EOF) {
- ++this._tokenCounter;
- if (this._tokenCounter > maxTokens) {
- throw (0, _syntaxError.syntaxError)(
- this._lexer.source,
- token.start,
- `Document contains more that ${maxTokens} tokens. Parsing aborted.`,
- );
- }
- }
- }
- }
- exports.Parser = Parser;
- function getTokenDesc(token) {
- const value = token.value;
- return getTokenKindDesc(token.kind) + (value != null ? ` "${value}"` : '');
- }
- function getTokenKindDesc(kind) {
- return (0, _lexer.isPunctuatorTokenKind)(kind) ? `"${kind}"` : kind;
- }
|