Index: src/compiler.cc |
diff --git a/src/compiler.cc b/src/compiler.cc |
index 72cdc038ebfdb39e96573e6f49433dd84a292bc7..1d1a5b58fe26808d7a79e165866417a5a259dba1 100644 |
--- a/src/compiler.cc |
+++ b/src/compiler.cc |
@@ -228,13 +228,6 @@ bool CompilationInfo::ExpectsJSReceiverAsReceiver() { |
return is_sloppy(parse_info()->language_mode()) && !parse_info()->is_native(); |
} |
-#if DEBUG |
-void CompilationInfo::PrintAstForTesting() { |
- PrintF("--- Source from AST ---\n%s\n", |
- PrettyPrinter(isolate()).PrintProgram(literal())); |
-} |
-#endif |
- |
// ---------------------------------------------------------------------------- |
// Implementation of CompilationJob |