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

Side by Side Diff: src/objects.h

Issue 2523223003: 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 7295 matching lines...) Expand 10 before | Expand all | Expand 10 after
7306 kMathPowHalf, 7306 kMathPowHalf,
7307 // These are manually assigned to special getters during bootstrapping. 7307 // These are manually assigned to special getters during bootstrapping.
7308 kArrayBufferByteLength, 7308 kArrayBufferByteLength,
7309 kArrayEntries, 7309 kArrayEntries,
7310 kArrayKeys, 7310 kArrayKeys,
7311 kArrayValues, 7311 kArrayValues,
7312 kArrayIteratorNext, 7312 kArrayIteratorNext,
7313 kDataViewBuffer, 7313 kDataViewBuffer,
7314 kDataViewByteLength, 7314 kDataViewByteLength,
7315 kDataViewByteOffset, 7315 kDataViewByteOffset,
7316 kFunctionHasInstance,
7316 kGlobalDecodeURI, 7317 kGlobalDecodeURI,
7317 kGlobalDecodeURIComponent, 7318 kGlobalDecodeURIComponent,
7318 kGlobalEncodeURI, 7319 kGlobalEncodeURI,
7319 kGlobalEncodeURIComponent, 7320 kGlobalEncodeURIComponent,
7320 kGlobalEscape, 7321 kGlobalEscape,
7321 kGlobalUnescape, 7322 kGlobalUnescape,
7322 kGlobalIsFinite, 7323 kGlobalIsFinite,
7323 kGlobalIsNaN, 7324 kGlobalIsNaN,
7324 kTypedArrayByteLength, 7325 kTypedArrayByteLength,
7325 kTypedArrayByteOffset, 7326 kTypedArrayByteOffset,
(...skipping 4535 matching lines...) Expand 10 before | Expand all | Expand 10 after
11861 } 11862 }
11862 return value; 11863 return value;
11863 } 11864 }
11864 }; 11865 };
11865 11866
11866 11867
11867 } // NOLINT, false-positive due to second-order macros. 11868 } // NOLINT, false-positive due to second-order macros.
11868 } // NOLINT, false-positive due to second-order macros. 11869 } // NOLINT, false-positive due to second-order macros.
11869 11870
11870 #endif // V8_OBJECTS_H_ 11871 #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