diff options
author | Michaël Zasso <targos@protonmail.com> | 2018-09-21 09:14:51 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2018-09-22 18:29:25 +0200 |
commit | 0e7ddbd3d7e9439c67573b854c49cf82c398ae82 (patch) | |
tree | 2afe372acde921cb57ddb3444ff00c5adef8848c /deps/v8/src/js/macros.py | |
parent | 13245dc50da4cb7443c39ef6c68d419d5e6336d4 (diff) | |
download | node-new-0e7ddbd3d7e9439c67573b854c49cf82c398ae82.tar.gz |
deps: update V8 to 7.0.276.20
PR-URL: https://github.com/nodejs/node/pull/22754
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'deps/v8/src/js/macros.py')
-rw-r--r-- | deps/v8/src/js/macros.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/deps/v8/src/js/macros.py b/deps/v8/src/js/macros.py index 9e5c6d72d6..8e533c38bc 100644 --- a/deps/v8/src/js/macros.py +++ b/deps/v8/src/js/macros.py @@ -33,9 +33,6 @@ define READ_ONLY = 1; define DONT_ENUM = 2; define DONT_DELETE = 4; -# 2^53 - 1 -define kMaxSafeInteger = 9007199254740991; - # 2^32 - 1 define kMaxUint32 = 4294967295; @@ -45,15 +42,12 @@ define kMaxUint32 = 4294967295; # It will *not* generate a runtime typeof call for the most important # values of 'bar'. macro IS_ARRAY(arg) = (%_IsArray(arg)); -macro IS_FUNCTION(arg) = (%IsFunction(arg)); macro IS_NULL(arg) = (arg === null); macro IS_NULL_OR_UNDEFINED(arg) = (arg == null); macro IS_NUMBER(arg) = (typeof(arg) === 'number'); macro IS_STRING(arg) = (typeof(arg) === 'string'); macro IS_SYMBOL(arg) = (typeof(arg) === 'symbol'); macro IS_UNDEFINED(arg) = (arg === (void 0)); -macro IS_WEAKMAP(arg) = (%_IsJSWeakMap(arg)); -macro IS_WEAKSET(arg) = (%_IsJSWeakSet(arg)); # Macro for ES queries of the type: "Type(O) is Object." macro IS_RECEIVER(arg) = (%_IsJSReceiver(arg)); |