| OLD | NEW |
| 1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 #include "src/ast/scopeinfo.h" | |
| 6 | |
| 7 #include <stdlib.h> | 5 #include <stdlib.h> |
| 8 | 6 |
| 9 #include "src/ast/context-slot-cache.h" | 7 #include "src/ast/context-slot-cache.h" |
| 10 #include "src/ast/scopes.h" | 8 #include "src/ast/scopes.h" |
| 11 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
| 12 | 10 |
| 13 namespace v8 { | 11 namespace v8 { |
| 14 namespace internal { | 12 namespace internal { |
| 15 | 13 |
| 16 | 14 |
| (...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 ContextLocalNameEntriesIndex() + ContextLocalCount(), this); | 693 ContextLocalNameEntriesIndex() + ContextLocalCount(), this); |
| 696 } | 694 } |
| 697 | 695 |
| 698 PrintF("}\n"); | 696 PrintF("}\n"); |
| 699 } | 697 } |
| 700 #endif // DEBUG | 698 #endif // DEBUG |
| 701 | 699 |
| 702 | 700 |
| 703 } // namespace internal | 701 } // namespace internal |
| 704 } // namespace v8 | 702 } // namespace v8 |
| OLD | NEW |