Skip to content

Commit 16afd2e

Browse files
committed
Rename 'blockStringValue.js' to 'blockString.js'
1 parent ce38bb4 commit 16afd2e

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

src/language/__tests__/blockStringValue-test.js renamed to src/language/__tests__/blockString-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { expect } from 'chai';
1111
import { describe, it } from 'mocha';
12-
import { dedentBlockStringValue } from '../blockStringValue';
12+
import { dedentBlockStringValue } from '../blockString';
1313

1414
describe('dedentBlockStringValue', () => {
1515
it('removes uniform indentation from a string', () => {
File renamed without changes.

src/language/lexer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import defineToJSON from '../jsutils/defineToJSON';
1111
import type { Token } from './ast';
1212
import type { Source } from './source';
1313
import { syntaxError } from '../error';
14-
import { dedentBlockStringValue } from './blockStringValue';
14+
import { dedentBlockStringValue } from './blockString';
1515

1616
/**
1717
* Given a Source object, this returns a Lexer for that source.

src/language/printer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import type { ASTNode } from './ast';
1111
import { visit } from './visitor';
12-
import { printBlockString } from './blockStringValue';
12+
import { printBlockString } from './blockString';
1313

1414
/**
1515
* Converts an AST into a string, using one set of reasonable

src/utilities/buildASTSchema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import keyValMap from '../jsutils/keyValMap';
1515
import type { ObjMap } from '../jsutils/ObjMap';
1616
import { valueFromAST } from './valueFromAST';
1717
import { assertValidSDL } from '../validation/validate';
18-
import { dedentBlockStringValue } from '../language/blockStringValue';
18+
import { dedentBlockStringValue } from '../language/blockString';
1919
import { TokenKind } from '../language/lexer';
2020
import { parse } from '../language/parser';
2121
import type { ParseOptions } from '../language/parser';

src/utilities/schemaPrinter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import objectValues from '../polyfills/objectValues';
1212
import inspect from '../jsutils/inspect';
1313
import { astFromValue } from '../utilities/astFromValue';
1414
import { print } from '../language/printer';
15-
import { printBlockString } from '../language/blockStringValue';
15+
import { printBlockString } from '../language/blockString';
1616
import type { GraphQLSchema } from '../type/schema';
1717
import {
1818
isScalarType,

0 commit comments

Comments
 (0)