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

Side by Side Diff: src/js/collection.js

Issue 1543803002: Revert of [proxies] Better print for proxies in d8 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 | « src/d8.js ('k') | src/js/json.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 (function(global, utils) { 5 (function(global, utils) {
6 "use strict"; 6 "use strict";
7 7
8 %CheckIsBootstrapping(); 8 %CheckIsBootstrapping();
9 9
10 // ------------------------------------------------------------------- 10 // -------------------------------------------------------------------
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 93
94 function GetExistingHash(key) { 94 function GetExistingHash(key) {
95 if (%_IsSmi(key)) { 95 if (%_IsSmi(key)) {
96 return ComputeIntegerHash(key, 0); 96 return ComputeIntegerHash(key, 0);
97 } 97 }
98 if (IS_STRING(key)) { 98 if (IS_STRING(key)) {
99 var field = %_StringGetRawHashField(key); 99 var field = %_StringGetRawHashField(key);
100 if ((field & 1 /* Name::kHashNotComputedMask */) === 0) { 100 if ((field & 1 /* Name::kHashNotComputedMask */) === 0) {
101 return field >>> 2 /* Name::kHashShift */; 101 return field >>> 2 /* Name::kHashShift */;
102 } 102 }
103 } else if (IS_RECEIVER(key) && !IS_PROXY(key) && !IS_GLOBAL(key)) { 103 } else if (IS_RECEIVER(key) && !%_IsJSProxy(key) && !IS_GLOBAL(key)) {
104 var hash = GET_PRIVATE(key, hashCodeSymbol); 104 var hash = GET_PRIVATE(key, hashCodeSymbol);
105 return hash; 105 return hash;
106 } 106 }
107 return %GenericHash(key); 107 return %GenericHash(key);
108 } 108 }
109 %SetForceInlineFlag(GetExistingHash); 109 %SetForceInlineFlag(GetExistingHash);
110 110
111 111
112 function GetHash(key) { 112 function GetHash(key) {
113 var hash = GetExistingHash(key); 113 var hash = GetExistingHash(key);
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 "set_has", SetHas, 469 "set_has", SetHas,
470 "set_delete", SetDelete, 470 "set_delete", SetDelete,
471 ]); 471 ]);
472 472
473 utils.Export(function(to) { 473 utils.Export(function(to) {
474 to.GetExistingHash = GetExistingHash; 474 to.GetExistingHash = GetExistingHash;
475 to.GetHash = GetHash; 475 to.GetHash = GetHash;
476 }); 476 });
477 477
478 }) 478 })
OLDNEW
« no previous file with comments | « src/d8.js ('k') | src/js/json.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698