From 338b198cbf57d93ad00d9bb3080650eb5185f655 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 4 May 2020 01:16:48 +0300 Subject: [PATCH] added toc... Signed-off-by: Alex A. Naanou --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 76bdc21..2555854 100755 --- a/README.md +++ b/README.md @@ -25,6 +25,24 @@ Disadvantages compared to the `class` syntax: - Slightly more complicated calling of `parent` (_super_) methods +## Contents +- [object.js](#objectjs) + - [Contents](#contents) + - [Installation](#installation) + - [Basic usage](#basic-usage) + - [Inheritance](#inheritance) + - [Callable instances](#callable-instances) + - [Advanced usage](#advanced-usage) + - [Low level constructor](#low-level-constructor) + - [Extending the constructor](#extending-the-constructor) + - [Inheriting from native constructor objects](#inheriting-from-native-constructor-objects) + - [Extending native `.constructor(..)`](#extending-native-constructor) + - [Components](#components) + - [Utilities](#utilities) + - [Limitations](#limitations) + - [Can not mix unrelated native types](#can-not-mix-unrelated-native-types) + - [License](#license) + ## Installation @@ -394,7 +412,7 @@ to make source printing in console more pleasant to read. ## Limitations -### Can not mix unrelated native types directly +### Can not mix unrelated native types At this point we can't mix native types, for example it is not possible to make a callable `Array` object...