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

Side by Side Diff: include/v8.h

Issue 1292753007: [es6] Parameter scopes for sloppy eval (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comments Created 5 years, 4 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
« no previous file with comments | « no previous file | src/bootstrapper.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 /** \mainpage V8 API Reference Guide 5 /** \mainpage V8 API Reference Guide
6 * 6 *
7 * V8 is Google's open source JavaScript engine. 7 * V8 is Google's open source JavaScript engine.
8 * 8 *
9 * This set of documents provides reference material generated from the 9 * This set of documents provides reference material generated from the
10 * V8 header file, include/v8.h. 10 * V8 header file, include/v8.h.
(...skipping 6963 matching lines...) Expand 10 before | Expand all | Expand 10 after
6974 6974
6975 static const int kNodeClassIdOffset = 1 * kApiPointerSize; 6975 static const int kNodeClassIdOffset = 1 * kApiPointerSize;
6976 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; 6976 static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
6977 static const int kNodeStateMask = 0x7; 6977 static const int kNodeStateMask = 0x7;
6978 static const int kNodeStateIsWeakValue = 2; 6978 static const int kNodeStateIsWeakValue = 2;
6979 static const int kNodeStateIsPendingValue = 3; 6979 static const int kNodeStateIsPendingValue = 3;
6980 static const int kNodeStateIsNearDeathValue = 4; 6980 static const int kNodeStateIsNearDeathValue = 4;
6981 static const int kNodeIsIndependentShift = 3; 6981 static const int kNodeIsIndependentShift = 3;
6982 static const int kNodeIsPartiallyDependentShift = 4; 6982 static const int kNodeIsPartiallyDependentShift = 4;
6983 6983
6984 static const int kJSObjectType = 0xb6; 6984 static const int kJSObjectType = 0xb7;
6985 static const int kFirstNonstringType = 0x80; 6985 static const int kFirstNonstringType = 0x80;
6986 static const int kOddballType = 0x83; 6986 static const int kOddballType = 0x83;
6987 static const int kForeignType = 0x87; 6987 static const int kForeignType = 0x87;
6988 6988
6989 static const int kUndefinedOddballKind = 5; 6989 static const int kUndefinedOddballKind = 5;
6990 static const int kNullOddballKind = 3; 6990 static const int kNullOddballKind = 3;
6991 6991
6992 static const uint32_t kNumIsolateDataSlots = 4; 6992 static const uint32_t kNumIsolateDataSlots = 4;
6993 6993
6994 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate); 6994 V8_EXPORT static void CheckInitializedImpl(v8::Isolate* isolate);
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after
8347 */ 8347 */
8348 8348
8349 8349
8350 } // namespace v8 8350 } // namespace v8
8351 8351
8352 8352
8353 #undef TYPE_CHECK 8353 #undef TYPE_CHECK
8354 8354
8355 8355
8356 #endif // V8_H_ 8356 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698