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

Side by Side Diff: src/runtime/runtime.h

Issue 1053563002: Revert of Correctly compute line numbers in functions from the function constructor. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Added regression test Created 5 years, 8 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
« no previous file with comments | « src/objects.cc ('k') | src/runtime/runtime-compiler.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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/zone.h" 10 #include "src/zone.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 /* Dates */ \ 243 /* Dates */ \
244 F(DateCurrentTime, 0, 1) \ 244 F(DateCurrentTime, 0, 1) \
245 F(DateParseString, 2, 1) \ 245 F(DateParseString, 2, 1) \
246 F(DateLocalTimezone, 1, 1) \ 246 F(DateLocalTimezone, 1, 1) \
247 F(DateToUTC, 1, 1) \ 247 F(DateToUTC, 1, 1) \
248 F(DateMakeDay, 2, 1) \ 248 F(DateMakeDay, 2, 1) \
249 F(DateSetValue, 3, 1) \ 249 F(DateSetValue, 3, 1) \
250 F(DateCacheVersion, 0, 1) \ 250 F(DateCacheVersion, 0, 1) \
251 \ 251 \
252 /* Globals */ \ 252 /* Globals */ \
253 F(CompileString, 3, 1) \ 253 F(CompileString, 2, 1) \
254 \ 254 \
255 /* Eval */ \ 255 /* Eval */ \
256 F(GlobalProxy, 1, 1) \ 256 F(GlobalProxy, 1, 1) \
257 \ 257 \
258 F(AddNamedProperty, 4, 1) \ 258 F(AddNamedProperty, 4, 1) \
259 F(SetProperty, 4, 1) \ 259 F(SetProperty, 4, 1) \
260 F(AddElement, 4, 1) \ 260 F(AddElement, 4, 1) \
261 F(DefineDataPropertyUnchecked, 4, 1) \ 261 F(DefineDataPropertyUnchecked, 4, 1) \
262 F(DefineAccessorPropertyUnchecked, 5, 1) \ 262 F(DefineAccessorPropertyUnchecked, 5, 1) \
263 F(GetDataProperty, 2, 1) \ 263 F(GetDataProperty, 2, 1) \
(...skipping 643 matching lines...) Expand 10 before | Expand all | Expand 10 after
907 907
908 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; 908 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {};
909 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; 909 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {};
910 STATIC_ASSERT(LANGUAGE_END == 3); 910 STATIC_ASSERT(LANGUAGE_END == 3);
911 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; 911 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {};
912 912
913 } // namespace internal 913 } // namespace internal
914 } // namespace v8 914 } // namespace v8
915 915
916 #endif // V8_RUNTIME_RUNTIME_H_ 916 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/runtime/runtime-compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698