File tree Expand file tree Collapse file tree 6 files changed +5
-5
lines changed Expand file tree Collapse file tree 6 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 9
9
10
10
import { expect } from 'chai' ;
11
11
import { describe , it } from 'mocha' ;
12
- import { dedentBlockStringValue } from '../blockStringValue ' ;
12
+ import { dedentBlockStringValue } from '../blockString ' ;
13
13
14
14
describe ( 'dedentBlockStringValue' , ( ) => {
15
15
it ( 'removes uniform indentation from a string' , ( ) => {
File renamed without changes.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import defineToJSON from '../jsutils/defineToJSON';
11
11
import type { Token } from './ast' ;
12
12
import type { Source } from './source' ;
13
13
import { syntaxError } from '../error' ;
14
- import { dedentBlockStringValue } from './blockStringValue ' ;
14
+ import { dedentBlockStringValue } from './blockString ' ;
15
15
16
16
/**
17
17
* Given a Source object, this returns a Lexer for that source.
Original file line number Diff line number Diff line change 9
9
10
10
import type { ASTNode } from './ast' ;
11
11
import { visit } from './visitor' ;
12
- import { printBlockString } from './blockStringValue ' ;
12
+ import { printBlockString } from './blockString ' ;
13
13
14
14
/**
15
15
* Converts an AST into a string, using one set of reasonable
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import keyValMap from '../jsutils/keyValMap';
15
15
import type { ObjMap } from '../jsutils/ObjMap' ;
16
16
import { valueFromAST } from './valueFromAST' ;
17
17
import { assertValidSDL } from '../validation/validate' ;
18
- import { dedentBlockStringValue } from '../language/blockStringValue ' ;
18
+ import { dedentBlockStringValue } from '../language/blockString ' ;
19
19
import { TokenKind } from '../language/lexer' ;
20
20
import { parse } from '../language/parser' ;
21
21
import type { ParseOptions } from '../language/parser' ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import objectValues from '../polyfills/objectValues';
12
12
import inspect from '../jsutils/inspect' ;
13
13
import { astFromValue } from '../utilities/astFromValue' ;
14
14
import { print } from '../language/printer' ;
15
- import { printBlockString } from '../language/blockStringValue ' ;
15
+ import { printBlockString } from '../language/blockString ' ;
16
16
import type { GraphQLSchema } from '../type/schema' ;
17
17
import {
18
18
isScalarType ,
You can’t perform that action at this time.
0 commit comments