Index: pkg/compiler/lib/src/js_backend/backend.dart |
diff --git a/pkg/compiler/lib/src/js_backend/backend.dart b/pkg/compiler/lib/src/js_backend/backend.dart |
index 4e702b177e92dd9b71ce9f6f83316d44083c931e..0723cd1beec8f57bc926737cfc713882f56527ef 100644 |
--- a/pkg/compiler/lib/src/js_backend/backend.dart |
+++ b/pkg/compiler/lib/src/js_backend/backend.dart |
@@ -465,7 +465,8 @@ class JavaScriptBackend extends Backend { |
resolutionCallbacks = new JavaScriptResolutionCallbacks(this); |
patchResolverTask = new PatchResolverTask(compiler); |
functionCompiler = USE_CPS_IR |
- ? new CpsFunctionCompiler(compiler, this) |
+ ? new CpsFunctionCompiler( |
+ compiler, this, generateSourceMap: generateSourceMap) |
: new SsaFunctionCompiler(this, generateSourceMap); |
} |