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

Side by Side Diff: include/v8.h

Issue 1230793002: [es6] silence access-check failure for well-known symbol properties (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Ensure @@isConcatSpreadable is actually installed now that its in a separate list Created 5 years, 2 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/api.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 2447 matching lines...) Expand 10 before | Expand all | Expand 10 after
2458 static Local<Symbol> For(Isolate *isolate, Local<String> name); 2458 static Local<Symbol> For(Isolate *isolate, Local<String> name);
2459 2459
2460 // Retrieve a global symbol. Similar to |For|, but using a separate 2460 // Retrieve a global symbol. Similar to |For|, but using a separate
2461 // registry that is not accessible by (and cannot clash with) JavaScript code. 2461 // registry that is not accessible by (and cannot clash with) JavaScript code.
2462 static Local<Symbol> ForApi(Isolate *isolate, Local<String> name); 2462 static Local<Symbol> ForApi(Isolate *isolate, Local<String> name);
2463 2463
2464 // Well-known symbols 2464 // Well-known symbols
2465 static Local<Symbol> GetIterator(Isolate* isolate); 2465 static Local<Symbol> GetIterator(Isolate* isolate);
2466 static Local<Symbol> GetUnscopables(Isolate* isolate); 2466 static Local<Symbol> GetUnscopables(Isolate* isolate);
2467 static Local<Symbol> GetToStringTag(Isolate* isolate); 2467 static Local<Symbol> GetToStringTag(Isolate* isolate);
2468 static Local<Symbol> GetIsConcatSpreadable(Isolate* isolate);
2468 2469
2469 V8_INLINE static Symbol* Cast(v8::Value* obj); 2470 V8_INLINE static Symbol* Cast(v8::Value* obj);
2470 2471
2471 private: 2472 private:
2472 Symbol(); 2473 Symbol();
2473 static void CheckCast(v8::Value* obj); 2474 static void CheckCast(v8::Value* obj);
2474 }; 2475 };
2475 2476
2476 2477
2477 /** 2478 /**
(...skipping 5889 matching lines...) Expand 10 before | Expand all | Expand 10 after
8367 */ 8368 */
8368 8369
8369 8370
8370 } // namespace v8 8371 } // namespace v8
8371 8372
8372 8373
8373 #undef TYPE_CHECK 8374 #undef TYPE_CHECK
8374 8375
8375 8376
8376 #endif // V8_H_ 8377 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698