syntaxError.js 488 B

12345678910111213141516
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.syntaxError = syntaxError;
  6. var _GraphQLError = require("./GraphQLError");
  7. /**
  8. * Produces a GraphQLError representing a syntax error, containing useful
  9. * descriptive information about the syntax error's position in the source.
  10. */
  11. function syntaxError(source, position, description) {
  12. return new _GraphQLError.GraphQLError("Syntax Error: ".concat(description), undefined, source, [position]);
  13. }