From 3593ab47e110f7d3b5ef9da7c155bab8e4979236 Mon Sep 17 00:00:00 2001 From: nodist Date: Tue, 19 May 2026 14:31:36 -0400 Subject: use native insted of object --- docs/syntax/operators.md | 6 +++++- docs/type_system/index.md | 2 +- docs/type_system/native.md | 15 +++++++++++++++ docs/type_system/object.md | 15 --------------- 4 files changed, 21 insertions(+), 17 deletions(-) create mode 100644 docs/type_system/native.md delete mode 100644 docs/type_system/object.md (limited to 'docs') diff --git a/docs/syntax/operators.md b/docs/syntax/operators.md index a8b8342..91c1491 100644 --- a/docs/syntax/operators.md +++ b/docs/syntax/operators.md @@ -8,7 +8,7 @@ ## Cast `$` -## Print ``print` +## ``print` ```text TO `print DATA @@ -17,3 +17,7 @@ TO `print DATA If `TO` is not specified the output is send to `STDOUT` ## ``panic` + +```test +`panic ANY +``` diff --git a/docs/type_system/index.md b/docs/type_system/index.md index 91c5c16..95602c6 100644 --- a/docs/type_system/index.md +++ b/docs/type_system/index.md @@ -44,7 +44,7 @@ Denotes that a field that does not resolve to anything * #### [Union](./union.md) -* #### [Object](./object.md) +* #### [Native](./native.md) * #### [Shared](./shared.md) diff --git a/docs/type_system/native.md b/docs/type_system/native.md new file mode 100644 index 0000000..64f0cc9 --- /dev/null +++ b/docs/type_system/native.md @@ -0,0 +1,15 @@ +# Native + +--- + +A representation of a native object + +```text +Native[INTERFACE_TABLE_POINTER] +``` + +## Alias + +```text +File `alias Native[...] +``` diff --git a/docs/type_system/object.md b/docs/type_system/object.md deleted file mode 100644 index ca6c805..0000000 --- a/docs/type_system/object.md +++ /dev/null @@ -1,15 +0,0 @@ -# Object - ---- - -A representation of a native object - -```text -Object[INTERFACE_TABLE_POINTER] -``` - -## Alias - -```text -File `alias Object[...] -``` -- cgit v1.2.3