Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
chakrashim: Added missing IsSharedArrayBuffer API
Browse files Browse the repository at this point in the history
SharedArrayBuffer is experimental. Chakrashim does not support it yet.

Synced the chakrashim v8 version header.
  • Loading branch information
Ian Halliday committed Nov 18, 2016
1 parent 9814c0b commit 9c745fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps/chakrashim/include/v8-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
// NOTE these macros are used by some of the tool scripts and the build
// system so their names cannot be changed without changing the scripts.
#define V8_MAJOR_VERSION 5
#define V8_MINOR_VERSION 1
#define V8_BUILD_NUMBER 281
#define V8_PATCH_LEVEL 80
#define V8_MINOR_VERSION 4
#define V8_BUILD_NUMBER 500
#define V8_PATCH_LEVEL 31

// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
Expand Down
4 changes: 4 additions & 0 deletions deps/chakrashim/include/v8.h
Original file line number Diff line number Diff line change
Expand Up @@ -991,6 +991,10 @@ class V8_EXPORT Value : public Data {
bool IsFloat32Array() const;
bool IsFloat64Array() const;
bool IsDataView() const;
bool IsSharedArrayBuffer() const {
// CHAKRA-TODO Not implemented
return false;
}
bool IsMapIterator() const;
bool IsSetIterator() const;
bool IsMap() const;
Expand Down

0 comments on commit 9c745fd

Please sign in to comment.