Initialisation
Added the packages and files for the backend server
This commit is contained in:
43
node_modules/graphql/language/tokenKind.js
generated
vendored
Normal file
43
node_modules/graphql/language/tokenKind.js
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, '__esModule', {
|
||||
value: true,
|
||||
});
|
||||
exports.TokenKind = void 0;
|
||||
|
||||
/**
|
||||
* An exported enum describing the different kinds of tokens that the
|
||||
* lexer emits.
|
||||
*/
|
||||
var TokenKind;
|
||||
exports.TokenKind = TokenKind;
|
||||
|
||||
(function (TokenKind) {
|
||||
TokenKind['SOF'] = '<SOF>';
|
||||
TokenKind['EOF'] = '<EOF>';
|
||||
TokenKind['BANG'] = '!';
|
||||
TokenKind['DOLLAR'] = '$';
|
||||
TokenKind['AMP'] = '&';
|
||||
TokenKind['PAREN_L'] = '(';
|
||||
TokenKind['PAREN_R'] = ')';
|
||||
TokenKind['SPREAD'] = '...';
|
||||
TokenKind['COLON'] = ':';
|
||||
TokenKind['EQUALS'] = '=';
|
||||
TokenKind['AT'] = '@';
|
||||
TokenKind['BRACKET_L'] = '[';
|
||||
TokenKind['BRACKET_R'] = ']';
|
||||
TokenKind['BRACE_L'] = '{';
|
||||
TokenKind['PIPE'] = '|';
|
||||
TokenKind['BRACE_R'] = '}';
|
||||
TokenKind['NAME'] = 'Name';
|
||||
TokenKind['INT'] = 'Int';
|
||||
TokenKind['FLOAT'] = 'Float';
|
||||
TokenKind['STRING'] = 'String';
|
||||
TokenKind['BLOCK_STRING'] = 'BlockString';
|
||||
TokenKind['COMMENT'] = 'Comment';
|
||||
})(TokenKind || (exports.TokenKind = TokenKind = {}));
|
||||
/**
|
||||
* The enum type representing the token kinds values.
|
||||
*
|
||||
* @deprecated Please use `TokenKind`. Will be remove in v17.
|
||||
*/
|
||||
Reference in New Issue
Block a user