Index: src/scopes.h |
diff --git a/src/scopes.h b/src/scopes.h |
index af0449e93c7dea6895f06d42cf7a95ca7624071c..72a05b11fd910cfe9d9dcf6b16a5740a48340e15 100644 |
--- a/src/scopes.h |
+++ b/src/scopes.h |
@@ -543,7 +543,10 @@ class Scope: public ZoneObject { |
private: |
// Construct a scope based on the scope info. |
- Scope(Scope* inner_scope, ScopeType type, Handle<ScopeInfo> scope_info); |
+ Scope(Scope* inner_scope, |
+ ScopeType type, |
+ Handle<ScopeInfo> scope_info, |
+ bool has_context_with_extension = false); |
Kevin Millikin (Chromium)
2012/02/02 08:36:13
Please no: default parameters are bad, boolean-val
|
// Construct a catch scope with a binding for the name. |
Scope(Scope* inner_scope, Handle<String> catch_variable_name); |