File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 27
27
28
28
# Reset this number to 0 on major V8 upgrades.
29
29
# Increment by one for each non-official patch applied to deps/v8.
30
- 'v8_embedder_string' : '-node.1 ' ,
30
+ 'v8_embedder_string' : '-node.2 ' ,
31
31
32
32
# Enable disassembler for `--print-code` v8 options
33
33
'v8_enable_disassembler' : 1 ,
Original file line number Diff line number Diff line change @@ -507,7 +507,7 @@ Type* OperationTyper::NumberToInt32(Type* type) {
507
507
508
508
Type* OperationTyper::NumberToString (Type* type) {
509
509
DCHECK (type->Is (Type::Number ()));
510
-
510
+ if (type-> IsNone ()) return type;
511
511
if (type->Is (Type::NaN ())) return singleton_NaN_string_;
512
512
if (type->Is (cache_.kZeroOrMinusZero )) return singleton_zero_string_;
513
513
return Type::SeqString ();
You can’t perform that action at this time.
0 commit comments