Skip to content

Commit 69e4e70

Browse files
authored
Merge pull request quickjs-zh#10 from lon-yang/master
Update README.md Anchor Address
2 parents 4aac9d6 + 998d38e commit 69e4e70

File tree

1 file changed

+52
-52
lines changed

1 file changed

+52
-52
lines changed

README.md

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -4,58 +4,58 @@ QuickJS Javascript引擎
44
目录
55
-----------------
66

7-
* [1 简介](#Introduction)
8-
* [1.1 主要功能](#Main-Features)
9-
* [1.2 基准测试](#bench)
10-
* [2 用法](#Usage)
11-
* [2.1 安装](#Installation)
12-
* [2.2 快速入门](#Quick-start)
13-
* [2.3 命令行选项](#Command-line-options)
14-
* [2.3.1 `qjs` 解释器](#qjs-interpreter)
15-
* [2.3.2 `qjsc` 编译器](#qjsc-compiler)
16-
* [2.4 `qjscalc` 应用程序](#qjscalc-application)
17-
* [2.5 内置测试](#Built_002din-tests)
18-
* [2.6 Test262 (ECMAScript测试套件)](#Test262-_0028ECMAScript-Test-Suite_0029)
19-
* [3 技术规范](#Specifications)
20-
* [3.1 语言支持](#Language-support)
21-
* [3.1.1 ES2019支持](#ES2019-support)
22-
* [3.1.2 JSON](#JSON)
23-
* [3.1.3 ECMA402](#ECMA402)
24-
* [3.1.4 扩展](#Extensions)
25-
* [3.1.5 数学扩展](#Mathematical-extensions)
26-
* [3.2 模块](#Modules)
27-
* [3.3 标准库](#Standard-library)
28-
* [3.3.1 全局对象](#Global-objects)
29-
* [3.3.2 `std` 模块](#std-module)
30-
* [3.3.3 `os` 模块](#os-module)
31-
* [3.4 QuickJS C API](#QuickJS-C-API)
32-
* [3.4.1 运行时和上下文](#Runtime-and-contexts)
33-
* [3.4.2 JSValue](#JSValue)
34-
* [3.4.3 C函数](#C-functions)
35-
* [3.4.4 错误异常](#Exceptions)
36-
* [3.4.5 Script代码执行](#Script-evaluation)
37-
* [3.4.6 JS类](#JS-Classes)
38-
* [3.4.7 C模块](#C-Modules)
39-
* [3.4.8 内存处理](#Memory-handling)
40-
* [3.4.9 执行超时和中断](#Execution-timeout-and-interrupts)
41-
* [4 内部实现](#Internals)
42-
* [4.1 Bytecode](#Bytecode)
43-
* [4.2 Executable generation](#Executable-generation)
44-
* [4.2.1 `qjsc` 编译器](#qjsc-compiler-1)
45-
* [4.2.2 二进制 JSON](#Binary-JSON)
46-
* [4.3 运行时](#Runtime)
47-
* [4.3.1 Strings](#Strings)
48-
* [4.3.2 Objects](#Objects)
49-
* [4.3.3 Atoms](#Atoms)
50-
* [4.3.4 Numbers](#Numbers)
51-
* [4.3.5 垃圾回收](#Garbage-collection)
52-
* [4.3.6 JSValue](#JSValue-1)
53-
* [4.3.7 Function call](#Function-call)
54-
* [4.4 RegExp](#RegExp)
55-
* [4.5 Unicode](#Unicode)
56-
* [4.6 BigInt and BigFloat](#BigInt-and-BigFloat)
57-
* [5 许可协议](#License)
58-
* [6 相关项目](#Projects)
7+
* [1 简介](#1-简介)
8+
* [1.1 主要功能](#11-主要功能)
9+
* [1.2 基准测试](#12-基准测试)
10+
* [2 用法](#2-用法)
11+
* [2.1 安装](#21-安装)
12+
* [2.2 快速入门](#22-快速入门)
13+
* [2.3 命令行选项](#23-命令行选项)
14+
* [2.3.1 `qjs` 解释器](#231-qjs-解释器)
15+
* [2.3.2 `qjsc` 编译器](#232-qjsc-编译器)
16+
* [2.4 `qjscalc` 应用程序](#24-qjscalc-应用程序)
17+
* [2.5 内置测试](#25-内置测试)
18+
* [2.6 Test262 (ECMAScript测试套件)](#26-test262-ecmascript-测试套件)
19+
* [3 技术规范](#3-技术规范)
20+
* [3.1 语言支持](#31-语言支持)
21+
* [3.1.1 ES2019支持](#311-es2019支持)
22+
* [3.1.2 JSON](#312-json)
23+
* [3.1.3 ECMA402](#313-ecma402)
24+
* [3.1.4 扩展](#314-扩展)
25+
* [3.1.5 数学扩展](#315-数学扩展)
26+
* [3.2 模块](#32-模块)
27+
* [3.3 标准库](#33-标准库)
28+
* [3.3.1 全局对象](#331-全局对象)
29+
* [3.3.2 `std` 模块](#332-std-模块)
30+
* [3.3.3 `os` 模块](#333-os-模块)
31+
* [3.4 QuickJS C API](#34-quickjs-c-api)
32+
* [3.4.1 运行时和上下文](#341-运行时和上下文)
33+
* [3.4.2 JSValue](#342-jsvalue)
34+
* [3.4.3 C函数](#343-c函数)
35+
* [3.4.4 错误异常](#344-错误异常)
36+
* [3.4.5 Script代码执行](#345-script代码执行)
37+
* [3.4.6 JS类](#346-js类)
38+
* [3.4.7 C模块](#347-c模块)
39+
* [3.4.8 内存处理](#348-内存处理)
40+
* [3.4.9 执行超时和中断](#349-执行超时和中断)
41+
* [4 内部实现](#4-内部实现)
42+
* [4.1 Bytecode](#41-bytecode)
43+
* [4.2 Executable generation](#42-executable-generation)
44+
* [4.2.1 `qjsc` 编译器](#421-qjsc-编译器)
45+
* [4.2.2 二进制 JSON](#422-二进制-json)
46+
* [4.3 运行时](#43-运行时)
47+
* [4.3.1 Strings](#431-strings)
48+
* [4.3.2 Objects](#432-objects)
49+
* [4.3.3 Atoms](#433-atoms)
50+
* [4.3.4 Numbers](#434-numbers)
51+
* [4.3.5 垃圾回收](#435-垃圾回收)
52+
* [4.3.6 JSValue](#436-jsvalue)
53+
* [4.3.7 Function call](#437-function-call)
54+
* [4.4 RegExp](#44-regexp)
55+
* [4.5 Unicode](#45-unicode)
56+
* [4.6 BigInt and BigFloat](#46-bigint-and-bigfloat)
57+
* [5 许可协议](#5-许可协议)
58+
* [6 相关项目](#6-相关项目)
5959

6060
1 简介
6161
--------------

0 commit comments

Comments
 (0)