forked from v8/v8
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug-print.js
More file actions
46 lines (35 loc) · 861 Bytes
/
debug-print.js
File metadata and controls
46 lines (35 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Make sure printing different element kinds doesn't crash.
var array;
var obj = {};
array = [];
%DebugPrint(array);
// PACKED_SMI_ELEMENTS
array = [1, 2, 3];
%DebugPrint(array);
// HOLEY_SMI_ELEMENTS
array[10] = 100;
array[11] = 100;
%DebugPrint(array);
// PACKED_ELEMENTS
array = [1, obj, obj];
%DebugPrint(array);
// HOLEY_ELEMENTS
array[100] = obj;
array[101] = obj;
%DebugPrint(array);
// PACKED_DOUBLE_ELEMENTS
array = [1.1, 2.2, 3.3, 3.3, 3.3, NaN];
%DebugPrint(array);
array.push(NaN);
array.push(NaN);
%DebugPrint(array);
// HOLEY_DOUBLE_ELEMENTS
array[100] = 1.2;
array[101] = 1.2;
%DebugPrint(array);
// DICTIONARY_ELEMENTS
%NormalizeElements(array);
%DebugPrint(array);