From 6c7414b098611109d4698684d80205b626dc6622 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Fri, 15 Apr 2016 10:35:21 -0700 Subject: [PATCH] Fix baseline as it appears in the master branch Fixes #8098 --- tests/baselines/reference/systemModule7.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/baselines/reference/systemModule7.js b/tests/baselines/reference/systemModule7.js index d25ca627e4..bf34e3f786 100644 --- a/tests/baselines/reference/systemModule7.js +++ b/tests/baselines/reference/systemModule7.js @@ -21,7 +21,7 @@ System.register([], function (exports_1, context_1) { // filename: instantiatedModule.ts (function (M) { var x = 1; - })(M || (M = {})); + })(M = M || (M = {})); exports_1("M", M); } };