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

Side by Side Diff: src/parser.cc

Issue 1961004: First step towards making JumpTarget work on ARM. Instead... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 20 matching lines...) Expand all
31 #include "ast.h" 31 #include "ast.h"
32 #include "bootstrapper.h" 32 #include "bootstrapper.h"
33 #include "codegen.h" 33 #include "codegen.h"
34 #include "compiler.h" 34 #include "compiler.h"
35 #include "messages.h" 35 #include "messages.h"
36 #include "platform.h" 36 #include "platform.h"
37 #include "runtime.h" 37 #include "runtime.h"
38 #include "parser.h" 38 #include "parser.h"
39 #include "scopes.h" 39 #include "scopes.h"
40 #include "string-stream.h" 40 #include "string-stream.h"
41 41
Søren Thygesen Gjesse 2010/05/06 07:48:11 Sort includes.
Erik Corry 2010/05/10 10:34:10 I think it makes sense to have the -inl.h files af
42 #include "ast-inl.h"
43 #include "jump-target-inl.h"
44
42 namespace v8 { 45 namespace v8 {
43 namespace internal { 46 namespace internal {
44 47
45 class ParserFactory; 48 class ParserFactory;
46 class ParserLog; 49 class ParserLog;
47 class TemporaryScope; 50 class TemporaryScope;
48 class Target; 51 class Target;
49 52
50 template <typename T> class ZoneListWrapper; 53 template <typename T> class ZoneListWrapper;
51 54
(...skipping 5121 matching lines...) Expand 10 before | Expand all | Expand 10 after
5173 parser.ParseLazy(script_source, name, 5176 parser.ParseLazy(script_source, name,
5174 start_position, end_position, is_expression); 5177 start_position, end_position, is_expression);
5175 return result; 5178 return result;
5176 } 5179 }
5177 5180
5178 5181
5179 #undef NEW 5182 #undef NEW
5180 5183
5181 5184
5182 } } // namespace v8::internal 5185 } } // namespace v8::internal
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698