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

Side by Side Diff: src/preparser.h

Issue 1282503003: Remove several grab-bag includes from the v8.h header. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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
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_PREPARSER_H 5 #ifndef V8_PREPARSER_H
6 #define V8_PREPARSER_H 6 #define V8_PREPARSER_H
7 7
8 #include "src/v8.h"
9
10 #include "src/bailout-reason.h" 8 #include "src/bailout-reason.h"
11 #include "src/expression-classifier.h" 9 #include "src/expression-classifier.h"
12 #include "src/func-name-inferrer.h" 10 #include "src/func-name-inferrer.h"
13 #include "src/hashmap.h" 11 #include "src/hashmap.h"
14 #include "src/messages.h" 12 #include "src/messages.h"
15 #include "src/scanner.h" 13 #include "src/scanner.h"
16 #include "src/scopes.h" 14 #include "src/scopes.h"
17 #include "src/token.h" 15 #include "src/token.h"
18 16
19 namespace v8 { 17 namespace v8 {
(...skipping 4002 matching lines...) Expand 10 before | Expand all | Expand 10 after
4022 *ok = false; 4020 *ok = false;
4023 return; 4021 return;
4024 } 4022 }
4025 has_seen_constructor_ = true; 4023 has_seen_constructor_ = true;
4026 return; 4024 return;
4027 } 4025 }
4028 } 4026 }
4029 } } // v8::internal 4027 } } // v8::internal
4030 4028
4031 #endif // V8_PREPARSER_H 4029 #endif // V8_PREPARSER_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698