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

Side by Side Diff: src/runtime.h

Issue 11359130: Make formatting error message side-effect-free. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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/messages.js ('k') | src/runtime.cc » ('j') | src/runtime.cc » ('J')
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 // 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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 F(GlobalPrint, 1, 1) \ 260 F(GlobalPrint, 1, 1) \
261 \ 261 \
262 /* Eval */ \ 262 /* Eval */ \
263 F(GlobalReceiver, 1, 1) \ 263 F(GlobalReceiver, 1, 1) \
264 F(ResolvePossiblyDirectEval, 5, 2) \ 264 F(ResolvePossiblyDirectEval, 5, 2) \
265 \ 265 \
266 F(SetProperty, -1 /* 4 or 5 */, 1) \ 266 F(SetProperty, -1 /* 4 or 5 */, 1) \
267 F(DefineOrRedefineDataProperty, 4, 1) \ 267 F(DefineOrRedefineDataProperty, 4, 1) \
268 F(DefineOrRedefineAccessorProperty, 5, 1) \ 268 F(DefineOrRedefineAccessorProperty, 5, 1) \
269 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ 269 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \
270 F(GetDataProperty, 2, 1) \
270 \ 271 \
271 /* Arrays */ \ 272 /* Arrays */ \
272 F(RemoveArrayHoles, 2, 1) \ 273 F(RemoveArrayHoles, 2, 1) \
273 F(GetArrayKeys, 2, 1) \ 274 F(GetArrayKeys, 2, 1) \
274 F(MoveArrayContents, 2, 1) \ 275 F(MoveArrayContents, 2, 1) \
275 F(EstimateNumberOfElements, 1, 1) \ 276 F(EstimateNumberOfElements, 1, 1) \
276 \ 277 \
277 /* Getters and Setters */ \ 278 /* Getters and Setters */ \
278 F(LookupAccessor, 3, 1) \ 279 F(LookupAccessor, 3, 1) \
279 \ 280 \
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 //--------------------------------------------------------------------------- 714 //---------------------------------------------------------------------------
714 // Constants used by interface to runtime functions. 715 // Constants used by interface to runtime functions.
715 716
716 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; 717 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {};
717 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; 718 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {};
718 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; 719 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {};
719 720
720 } } // namespace v8::internal 721 } } // namespace v8::internal
721 722
722 #endif // V8_RUNTIME_H_ 723 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/messages.js ('k') | src/runtime.cc » ('j') | src/runtime.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698