refactor(benchpress): remove two mutable exports from largetable/util.ts (#32425)

Mutable exports, i.e. using this pattern

```
export let x = 0;
export function f() {
  x += 1;
}
```

is problematic to transpile to CommonJS and Goog.module systems, we are
working on banning it google internal codebase.

The workaround is adding an explcit getter function.

PR Close #32425
This commit is contained in:
Rado Kirov
2019-08-30 13:59:04 -07:00
committed by Miško Hevery
parent 641c5c1c1e
commit f0bdf2a1ae
3 changed files with 11 additions and 7 deletions

View File

@ -13,8 +13,8 @@ export class TableCell {
}
let tableCreateCount: number;
export let maxRow: number;
export let maxCol: number;
let maxRow: number;
let maxCol: number;
let numberData: TableCell[][];
let charData: TableCell[][];