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

Side by Side Diff: src/isolate.h

Issue 1285163003: Move regexp implementation into its own folder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: addressed comment Created 5 years, 4 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 | « src/interpreter-irregexp.cc ('k') | src/isolate.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_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <set> 9 #include <set>
10 10
11 #include "include/v8-debug.h" 11 #include "include/v8-debug.h"
12 #include "src/allocation.h" 12 #include "src/allocation.h"
13 #include "src/assert-scope.h" 13 #include "src/assert-scope.h"
14 #include "src/base/atomicops.h" 14 #include "src/base/atomicops.h"
15 #include "src/builtins.h" 15 #include "src/builtins.h"
16 #include "src/cancelable-task.h" 16 #include "src/cancelable-task.h"
17 #include "src/contexts.h" 17 #include "src/contexts.h"
18 #include "src/date.h" 18 #include "src/date.h"
19 #include "src/execution.h" 19 #include "src/execution.h"
20 #include "src/frames.h" 20 #include "src/frames.h"
21 #include "src/futex-emulation.h" 21 #include "src/futex-emulation.h"
22 #include "src/global-handles.h" 22 #include "src/global-handles.h"
23 #include "src/handles.h" 23 #include "src/handles.h"
24 #include "src/hashmap.h" 24 #include "src/hashmap.h"
25 #include "src/heap/heap.h" 25 #include "src/heap/heap.h"
26 #include "src/messages.h" 26 #include "src/messages.h"
27 #include "src/optimizing-compile-dispatcher.h" 27 #include "src/optimizing-compile-dispatcher.h"
28 #include "src/regexp-stack.h" 28 #include "src/regexp/regexp-stack.h"
29 #include "src/runtime/runtime.h" 29 #include "src/runtime/runtime.h"
30 #include "src/runtime-profiler.h" 30 #include "src/runtime-profiler.h"
31 #include "src/zone.h" 31 #include "src/zone.h"
32 32
33 namespace v8 { 33 namespace v8 {
34 34
35 namespace base { 35 namespace base {
36 class RandomNumberGenerator; 36 class RandomNumberGenerator;
37 } 37 }
38 38
(...skipping 1567 matching lines...) Expand 10 before | Expand all | Expand 10 after
1606 } 1606 }
1607 1607
1608 EmbeddedVector<char, 128> filename_; 1608 EmbeddedVector<char, 128> filename_;
1609 FILE* file_; 1609 FILE* file_;
1610 int scope_depth_; 1610 int scope_depth_;
1611 }; 1611 };
1612 1612
1613 } } // namespace v8::internal 1613 } } // namespace v8::internal
1614 1614
1615 #endif // V8_ISOLATE_H_ 1615 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/interpreter-irregexp.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698