Skip to content

Commit

Permalink
Merge pull request quickjs-zh#10 from lon-yang/master
Browse files Browse the repository at this point in the history
Update README.md Anchor Address
  • Loading branch information
llgoer authored Jul 23, 2019
2 parents 4aac9d6 + 998d38e commit 69e4e70
Showing 1 changed file with 52 additions and 52 deletions.
104 changes: 52 additions & 52 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,58 +4,58 @@ QuickJS Javascript引擎
目录
-----------------

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

1 简介
--------------
Expand Down

0 comments on commit 69e4e70

Please sign in to comment.