Skip to content

Commit c3afce2

Browse files
committedDec 25, 2024
📃 docs: Revise doc for V8 values
1 parent be7545d commit c3afce2

File tree

2 files changed

+35
-2
lines changed

2 files changed

+35
-2
lines changed
 

‎docs/make_html

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sphinx-build -M html ./ ./_build

‎docs/reference/v8_values/index.rst

+34-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,40 @@
22
V8 Values
33
=========
44

5+
V8 values represent a family of V8 primitive or reference values in JVM.
6+
7+
======================== =========================== ===========================
8+
Feature V8 Primitive Values V8 Reference Values
9+
======================== =========================== ===========================
10+
Decoupled with V8 Yes No
11+
Immutable Yes No
12+
Performance High Medium
13+
======================== =========================== ===========================
14+
15+
V8 Primitive Values
16+
===================
17+
18+
=========================== ======================
19+
Java Type JavaScript Type
20+
=========================== ======================
21+
V8ValueBigInteger bigint
22+
V8ValueBoolean bool
23+
V8ValueDouble number
24+
V8ValueInteger number
25+
V8ValueLong bigint
26+
V8ValueNull null
27+
V8ValueString string
28+
V8ValueUndefined undefined
29+
V8ValueZonedDateTime Date
30+
=========================== ======================
31+
32+
V8 Reference Values
33+
===================
34+
535
.. toctree::
636
:maxdepth: 1
7-
:glob:
837

9-
*
38+
v8_collection
39+
v8_function
40+
v8_promise
41+
v8_typed_array

0 commit comments

Comments
 (0)