Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(926)

Side by Side Diff: src/ast/scopes.h

Issue 2349473004: Revert of Preparse inner functions. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/ast/scopes.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_AST_SCOPES_H_ 5 #ifndef V8_AST_SCOPES_H_
6 #define V8_AST_SCOPES_H_ 6 #define V8_AST_SCOPES_H_
7 7
8 #include "src/base/hashmap.h" 8 #include "src/base/hashmap.h"
9 #include "src/globals.h" 9 #include "src/globals.h"
10 #include "src/objects.h" 10 #include "src/objects.h"
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 // --------------------------------------------------------------------------- 335 // ---------------------------------------------------------------------------
336 // Variable allocation. 336 // Variable allocation.
337 337
338 // Result of variable allocation. 338 // Result of variable allocation.
339 int num_stack_slots() const { return num_stack_slots_; } 339 int num_stack_slots() const { return num_stack_slots_; }
340 int num_heap_slots() const { return num_heap_slots_; } 340 int num_heap_slots() const { return num_heap_slots_; }
341 341
342 int StackLocalCount() const; 342 int StackLocalCount() const;
343 int ContextLocalCount() const; 343 int ContextLocalCount() const;
344 344
345 // Determine if we can parse a function literal in this scope lazily without 345 // Determine if we can parse a function literal in this scope lazily.
346 // caring about the unresolved variables within. 346 bool AllowsLazyParsing() const;
347 bool AllowsLazyParsingWithoutUnresolvedVariables() const;
348 347
349 // The number of contexts between this and scope; zero if this == scope. 348 // The number of contexts between this and scope; zero if this == scope.
350 int ContextChainLength(Scope* scope) const; 349 int ContextChainLength(Scope* scope) const;
351 350
352 // The number of contexts between this and the outermost context that has a 351 // The number of contexts between this and the outermost context that has a
353 // sloppy eval call. One if this->calls_sloppy_eval(). 352 // sloppy eval call. One if this->calls_sloppy_eval().
354 int ContextChainLengthUntilOutermostSloppyEval() const; 353 int ContextChainLengthUntilOutermostSloppyEval() const;
355 354
356 // The maximum number of nested contexts required for this scope and any inner 355 // The maximum number of nested contexts required for this scope and any inner
357 // scopes. 356 // scopes.
(...skipping 506 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 void AllocateModuleVariables(); 863 void AllocateModuleVariables();
865 864
866 private: 865 private:
867 ModuleDescriptor* module_descriptor_; 866 ModuleDescriptor* module_descriptor_;
868 }; 867 };
869 868
870 } // namespace internal 869 } // namespace internal
871 } // namespace v8 870 } // namespace v8
872 871
873 #endif // V8_AST_SCOPES_H_ 872 #endif // V8_AST_SCOPES_H_
OLDNEW
« no previous file with comments | « no previous file | src/ast/scopes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698