Commit a5f61fca authored by yangguo's avatar yangguo Committed by Commit bot

Fix harmony-sharedarraybuffer implementation.

NOTREECHECKS=true
NOTRY=true
TBR=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/1161553002

Cr-Commit-Position: refs/heads/master@{#28609}
parent 5cb925e4
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
(function(global, shared, exports) { (function(global, utils) {
"use strict"; "use strict";
...@@ -46,10 +46,10 @@ function SharedArrayBufferIsViewJS(obj) { ...@@ -46,10 +46,10 @@ function SharedArrayBufferIsViewJS(obj) {
%AddNamedProperty(GlobalSharedArrayBuffer.prototype, %AddNamedProperty(GlobalSharedArrayBuffer.prototype,
symbolToStringTag, "SharedArrayBuffer", DONT_ENUM | READ_ONLY); symbolToStringTag, "SharedArrayBuffer", DONT_ENUM | READ_ONLY);
$installGetter(GlobalSharedArrayBuffer.prototype, "byteLength", utils.InstallGetter(GlobalSharedArrayBuffer.prototype, "byteLength",
SharedArrayBufferGetByteLen); SharedArrayBufferGetByteLen);
$installFunctions(GlobalSharedArrayBuffer, DONT_ENUM, [ utils.InstallFunctions(GlobalSharedArrayBuffer, DONT_ENUM, [
"isView", SharedArrayBufferIsViewJS "isView", SharedArrayBufferIsViewJS
]); ]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment