Convert builder state to mutable data, so that later we can create builder Program out of this

This commit is contained in:
Sheetal Nandi
2017-12-07 14:04:40 -08:00
parent 2586bb303c
commit bb0fc0d2bc
3 changed files with 243 additions and 28 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ namespace ts {
/**
* State corresponding to all the file references and shapes of the module etc
*/
const state = createBuilderState({
const state = createBuilderStateOld({
useCaseSensitiveFileNames: host.useCaseSensitiveFileNames(),
createHash: host.createHash,
onUpdateProgramInitialized,