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

Side by Side Diff: src/objects.h

Issue 2522543008: Merged: Squashed multiple commits. (Closed)
Patch Set: Created 4 years 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/compiler/verifier.cc ('k') | test/mjsunit/compiler/instanceof.js » ('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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_OBJECTS_H_ 5 #ifndef V8_OBJECTS_H_
6 #define V8_OBJECTS_H_ 6 #define V8_OBJECTS_H_
7 7
8 #include <iosfwd> 8 #include <iosfwd>
9 #include <memory> 9 #include <memory>
10 10
(...skipping 7076 matching lines...) Expand 10 before | Expand all | Expand 10 after
7087 ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID) 7087 ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
7088 #undef DECLARE_FUNCTION_ID 7088 #undef DECLARE_FUNCTION_ID
7089 // Fake id for a special case of Math.pow. Note, it continues the 7089 // Fake id for a special case of Math.pow. Note, it continues the
7090 // list of math functions. 7090 // list of math functions.
7091 kMathPowHalf, 7091 kMathPowHalf,
7092 // These are manually assigned to special getters during bootstrapping. 7092 // These are manually assigned to special getters during bootstrapping.
7093 kArrayBufferByteLength, 7093 kArrayBufferByteLength,
7094 kDataViewBuffer, 7094 kDataViewBuffer,
7095 kDataViewByteLength, 7095 kDataViewByteLength,
7096 kDataViewByteOffset, 7096 kDataViewByteOffset,
7097 kFunctionHasInstance,
7097 kGlobalDecodeURI, 7098 kGlobalDecodeURI,
7098 kGlobalDecodeURIComponent, 7099 kGlobalDecodeURIComponent,
7099 kGlobalEncodeURI, 7100 kGlobalEncodeURI,
7100 kGlobalEncodeURIComponent, 7101 kGlobalEncodeURIComponent,
7101 kGlobalEscape, 7102 kGlobalEscape,
7102 kGlobalUnescape, 7103 kGlobalUnescape,
7103 kGlobalIsFinite, 7104 kGlobalIsFinite,
7104 kGlobalIsNaN, 7105 kGlobalIsNaN,
7105 kTypedArrayByteLength, 7106 kTypedArrayByteLength,
7106 kTypedArrayByteOffset, 7107 kTypedArrayByteOffset,
(...skipping 4299 matching lines...) Expand 10 before | Expand all | Expand 10 after
11406 } 11407 }
11407 return value; 11408 return value;
11408 } 11409 }
11409 }; 11410 };
11410 11411
11411 11412
11412 } // NOLINT, false-positive due to second-order macros. 11413 } // NOLINT, false-positive due to second-order macros.
11413 } // NOLINT, false-positive due to second-order macros. 11414 } // NOLINT, false-positive due to second-order macros.
11414 11415
11415 #endif // V8_OBJECTS_H_ 11416 #endif // V8_OBJECTS_H_
OLDNEW
« no previous file with comments | « src/compiler/verifier.cc ('k') | test/mjsunit/compiler/instanceof.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698