build: reformat repo to new clang@1.4.0 (#36613)

PR Close #36613
This commit is contained in:
Joey Perrott
2020-04-13 16:40:21 -07:00
committed by atscott
parent 5e80e7e216
commit 698b0288be
1160 changed files with 31667 additions and 24000 deletions

View File

@ -12,12 +12,14 @@ import {SourceMapGenerator} from 'source-map';
import {SizeTracker} from './size_tracker';
const testTempDir = process.env['TEST_TMPDIR'] !;
const testTempDir = process.env['TEST_TMPDIR']!;
describe('size tracking', () => {
let generator: SourceMapGenerator;
beforeEach(() => { generator = new SourceMapGenerator(); });
beforeEach(() => {
generator = new SourceMapGenerator();
});
function writeFile(filePath: string, content: string): string {
const tmpFilePath = join(testTempDir, filePath);