Skip to content

Commit

Permalink
Rename 'blockStringValue.js' to 'blockString.js'
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed Feb 21, 2019
1 parent ce38bb4 commit 16afd2e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
Expand Up @@ -9,7 +9,7 @@

import { expect } from 'chai';
import { describe, it } from 'mocha';
import { dedentBlockStringValue } from '../blockStringValue';
import { dedentBlockStringValue } from '../blockString';

describe('dedentBlockStringValue', () => {
it('removes uniform indentation from a string', () => {
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/language/lexer.js
Expand Up @@ -11,7 +11,7 @@ import defineToJSON from '../jsutils/defineToJSON';
import type { Token } from './ast';
import type { Source } from './source';
import { syntaxError } from '../error';
import { dedentBlockStringValue } from './blockStringValue';
import { dedentBlockStringValue } from './blockString';

/**
* Given a Source object, this returns a Lexer for that source.
Expand Down
2 changes: 1 addition & 1 deletion src/language/printer.js
Expand Up @@ -9,7 +9,7 @@

import type { ASTNode } from './ast';
import { visit } from './visitor';
import { printBlockString } from './blockStringValue';
import { printBlockString } from './blockString';

/**
* Converts an AST into a string, using one set of reasonable
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/buildASTSchema.js
Expand Up @@ -15,7 +15,7 @@ import keyValMap from '../jsutils/keyValMap';
import type { ObjMap } from '../jsutils/ObjMap';
import { valueFromAST } from './valueFromAST';
import { assertValidSDL } from '../validation/validate';
import { dedentBlockStringValue } from '../language/blockStringValue';
import { dedentBlockStringValue } from '../language/blockString';
import { TokenKind } from '../language/lexer';
import { parse } from '../language/parser';
import type { ParseOptions } from '../language/parser';
Expand Down
2 changes: 1 addition & 1 deletion src/utilities/schemaPrinter.js
Expand Up @@ -12,7 +12,7 @@ import objectValues from '../polyfills/objectValues';
import inspect from '../jsutils/inspect';
import { astFromValue } from '../utilities/astFromValue';
import { print } from '../language/printer';
import { printBlockString } from '../language/blockStringValue';
import { printBlockString } from '../language/blockString';
import type { GraphQLSchema } from '../type/schema';
import {
isScalarType,
Expand Down

0 comments on commit 16afd2e

Please sign in to comment.