Index: src/compiler.h |
diff --git a/src/compiler.h b/src/compiler.h |
index ecc7b1c7adcb41acebac0d0f749bba113bf4144b..ade21f57425fa2b8b0737a674d553cf4a96c0c2a 100644 |
--- a/src/compiler.h |
+++ b/src/compiler.h |
@@ -138,10 +138,7 @@ class CompilationInfo BASE_EMBEDDED { |
// There should always be a function literal, but it may be set after |
// construction (for lazy compilation). |
FunctionLiteral* function() { return function_; } |
- void set_function(FunctionLiteral* literal) { |
- ASSERT(function_ == NULL); |
- function_ = literal; |
- } |
+ void set_function(FunctionLiteral* literal) { function_ = literal; } |
// Simple accessors. |
bool is_eval() { return is_eval_; } |