Index: src/scopes.cc |
=================================================================== |
--- src/scopes.cc (revision 9858) |
+++ src/scopes.cc (working copy) |
@@ -76,9 +76,6 @@ |
} |
-// Dummy constructor |
-VariableMap::VariableMap(bool gotta_love_static_overloading) : HashMap() {} |
- |
VariableMap::VariableMap() : HashMap(Match, &LocalsMapAllocator, 8) {} |
VariableMap::~VariableMap() {} |
@@ -112,21 +109,6 @@ |
// ---------------------------------------------------------------------------- |
// Implementation of Scope |
- |
-// Dummy constructor |
-Scope::Scope(ScopeType type) |
- : isolate_(Isolate::Current()), |
- inner_scopes_(0), |
- variables_(false), |
- temps_(0), |
- params_(0), |
- unresolved_(0), |
- decls_(0), |
- already_resolved_(false) { |
- SetDefaults(type, NULL, Handle<SerializedScopeInfo>::null()); |
-} |
- |
- |
Scope::Scope(Scope* outer_scope, ScopeType type) |
: isolate_(Isolate::Current()), |
inner_scopes_(4), |