removed forced transforms

This commit is contained in:
Ron Buckton 2015-08-10 10:54:54 -07:00
parent 38c24798e4
commit 1ba577b88d

View file

@ -7270,7 +7270,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
// Process tree transformations
let statements = node.statements;
if (compilerOptions.experimentalTransforms || true) {
if (compilerOptions.experimentalTransforms) {
let context = new transform.VisitorContext(compilerOptions, currentSourceFile, resolver, generatedNameSet, nodeToGeneratedName);
statements = transformationChain(context, node.statements);
}