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

Side by Side Diff: include/v8.h

Issue 1545633002: Reland of Add web compat workarounds for ES2015 RegExp semantics (patchset #3 id:40001 of https://c… (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Move var declaration up to fix debug build Created 4 years, 12 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/js/harmony-regexp.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 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 5393 matching lines...) Expand 10 before | Expand all | Expand 10 after
5404 kBreakIterator = 1, 5404 kBreakIterator = 1,
5405 kLegacyConst = 2, 5405 kLegacyConst = 2,
5406 kMarkDequeOverflow = 3, 5406 kMarkDequeOverflow = 3,
5407 kStoreBufferOverflow = 4, 5407 kStoreBufferOverflow = 4,
5408 kSlotsBufferOverflow = 5, 5408 kSlotsBufferOverflow = 5,
5409 kObjectObserve = 6, 5409 kObjectObserve = 6,
5410 kForcedGC = 7, 5410 kForcedGC = 7,
5411 kSloppyMode = 8, 5411 kSloppyMode = 8,
5412 kStrictMode = 9, 5412 kStrictMode = 9,
5413 kStrongMode = 10, 5413 kStrongMode = 10,
5414 kRegExpPrototypeStickyGetter = 11,
5415 kRegExpPrototypeToString = 12,
5414 kUseCounterFeatureCount // This enum value must be last. 5416 kUseCounterFeatureCount // This enum value must be last.
5415 }; 5417 };
5416 5418
5417 typedef void (*UseCounterCallback)(Isolate* isolate, 5419 typedef void (*UseCounterCallback)(Isolate* isolate,
5418 UseCounterFeature feature); 5420 UseCounterFeature feature);
5419 5421
5420 5422
5421 /** 5423 /**
5422 * Creates a new isolate. Does not change the currently entered 5424 * Creates a new isolate. Does not change the currently entered
5423 * isolate. 5425 * isolate.
(...skipping 3039 matching lines...) Expand 10 before | Expand all | Expand 10 after
8463 */ 8465 */
8464 8466
8465 8467
8466 } // namespace v8 8468 } // namespace v8
8467 8469
8468 8470
8469 #undef TYPE_CHECK 8471 #undef TYPE_CHECK
8470 8472
8471 8473
8472 #endif // INCLUDE_V8_H_ 8474 #endif // INCLUDE_V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/js/harmony-regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698