summaryrefslogtreecommitdiff
path: root/libtnsl/src
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-04-11 18:50:08 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-04-11 18:50:08 -0400
commitd0213b4202ac12d7e92f7125e87c31d9ecb637dd (patch)
tree50164dfa2295c6806f3866c24a897789856337a7 /libtnsl/src
parent41cb9e107b20153449526cedec101e33f21d8630 (diff)
Remove src folders
Diffstat (limited to 'libtnsl/src')
-rw-r--r--libtnsl/src/algo/algo.tnsl29
-rw-r--r--libtnsl/src/algo/alloc.tnsl20
-rw-r--r--libtnsl/src/algo/dealloc.tnsl20
-rw-r--r--libtnsl/src/algo/math/math.tnsl26
-rw-r--r--libtnsl/src/asm/asm.tnsl29
-rw-r--r--libtnsl/src/box/box.tnsl34
-rw-r--r--libtnsl/src/box/iterator.tnsl40
-rw-r--r--libtnsl/src/box/map.tnsl20
-rw-r--r--libtnsl/src/box/string.tnsl20
-rw-r--r--libtnsl/src/box/tree.tnsl20
-rw-r--r--libtnsl/src/box/vector.tnsl20
-rw-r--r--libtnsl/src/io/block.tnsl20
-rw-r--r--libtnsl/src/io/file.tnsl20
-rw-r--r--libtnsl/src/io/io.tnsl33
-rw-r--r--libtnsl/src/io/std.tnsl20
-rw-r--r--libtnsl/src/io/stream.tnsl20
-rw-r--r--libtnsl/src/libtnsl.tnsl32
-rw-r--r--libtnsl/src/reflect/dispatch.tnsl20
-rw-r--r--libtnsl/src/reflect/reflect.tnsl33
-rw-r--r--libtnsl/src/reflect/resolver.tnsl20
-rw-r--r--libtnsl/src/reflect/type.tnsl71
-rw-r--r--libtnsl/src/reflect/virtual.tnsl144
-rw-r--r--libtnsl/src/time/alg.tnsl20
-rw-r--r--libtnsl/src/time/conv.tnsl20
-rw-r--r--libtnsl/src/time/parse.tnsl20
-rw-r--r--libtnsl/src/time/time.tnsl27
26 files changed, 0 insertions, 798 deletions
diff --git a/libtnsl/src/algo/algo.tnsl b/libtnsl/src/algo/algo.tnsl
deleted file mode 100644
index 7df9198..0000000
--- a/libtnsl/src/algo/algo.tnsl
+++ /dev/null
@@ -1,29 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/; export module algo
- /: include
- "alloc.tnsl"
- "dealloc.tnsl"
-
- "math"
- :/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/algo/alloc.tnsl b/libtnsl/src/algo/alloc.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/algo/alloc.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/algo/dealloc.tnsl b/libtnsl/src/algo/dealloc.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/algo/dealloc.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/algo/math/math.tnsl b/libtnsl/src/algo/math/math.tnsl
deleted file mode 100644
index 5676d09..0000000
--- a/libtnsl/src/algo/math/math.tnsl
+++ /dev/null
@@ -1,26 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/; export module math
- /; include
-
- ;/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/asm/asm.tnsl b/libtnsl/src/asm/asm.tnsl
deleted file mode 100644
index d0da9a6..0000000
--- a/libtnsl/src/asm/asm.tnsl
+++ /dev/null
@@ -1,29 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/## tnsl.asm
-
- Unexported module for internal library use. Bridges
- the gaps between the main language and assembly for
- the selected ISA/OS combo.
-
-#; module asm
-;/ \ No newline at end of file
diff --git a/libtnsl/src/box/box.tnsl b/libtnsl/src/box/box.tnsl
deleted file mode 100644
index 2f270b6..0000000
--- a/libtnsl/src/box/box.tnsl
+++ /dev/null
@@ -1,34 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/##
- module tnsl.box
- Containers and data management classes
-
-#; export module box
- /: import
- "iterator.tnsl"
- "map.tnsl"
- "string.tnsl"
- "tree.tnsl"
- "vector.tnsl"
- :/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/box/iterator.tnsl b/libtnsl/src/box/iterator.tnsl
deleted file mode 100644
index 13b9ef9..0000000
--- a/libtnsl/src/box/iterator.tnsl
+++ /dev/null
@@ -1,40 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-# Interface for moving through a list
-/; interface ForwardsIterator (type T)
-
- # Advance to the next element in the list
- /; next [bool]
- ;/
-
- # Get the current element in the list
- /; current [T]
- ;/
-;/
-
-# Interface for moving through a list forwards or backwards
-/; interface TwoWayIterator (type T) extends ForwardsIterator(T)
-
- # Move to the previous element in the list
- /; prev [bool]
- ;/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/box/map.tnsl b/libtnsl/src/box/map.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/box/map.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/box/string.tnsl b/libtnsl/src/box/string.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/box/string.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/box/tree.tnsl b/libtnsl/src/box/tree.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/box/tree.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/box/vector.tnsl b/libtnsl/src/box/vector.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/box/vector.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/io/block.tnsl b/libtnsl/src/io/block.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/io/block.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/io/file.tnsl b/libtnsl/src/io/file.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/io/file.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/io/io.tnsl b/libtnsl/src/io/io.tnsl
deleted file mode 100644
index 68e2fc0..0000000
--- a/libtnsl/src/io/io.tnsl
+++ /dev/null
@@ -1,33 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/##
- module tnsl.io
- Data management for input and output via blocks and streams, memory tools such as alloc and delete
-
-#; export module io
- /: import
- "block.tnsl"
- "stream.tnsl"
- "file.tnsl"
- "std.tnsl"
- :/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/io/std.tnsl b/libtnsl/src/io/std.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/io/std.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/io/stream.tnsl b/libtnsl/src/io/stream.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/io/stream.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/libtnsl.tnsl b/libtnsl/src/libtnsl.tnsl
deleted file mode 100644
index 070bfd2..0000000
--- a/libtnsl/src/libtnsl.tnsl
+++ /dev/null
@@ -1,32 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/;export module tnsl
- ; const ~void _null = 0x0
-
- /: import
- "algo"
- "box"
- "io"
- "reflect"
- "time"
- :/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/reflect/dispatch.tnsl b/libtnsl/src/reflect/dispatch.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/reflect/dispatch.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/reflect/reflect.tnsl b/libtnsl/src/reflect/reflect.tnsl
deleted file mode 100644
index b3640c2..0000000
--- a/libtnsl/src/reflect/reflect.tnsl
+++ /dev/null
@@ -1,33 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/##
- module tnsl.reflect
- Type and method resolution, reflection and other required methods such as is
-
-#; export module reflect
- /: import
- "type.tnsl"
- "virtual.tnsl"
- "resolver.tnsl"
- "dispatch.tnsl"
- :/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/reflect/resolver.tnsl b/libtnsl/src/reflect/resolver.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/reflect/resolver.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/reflect/type.tnsl b/libtnsl/src/reflect/type.tnsl
deleted file mode 100644
index 7a19b7d..0000000
--- a/libtnsl/src/reflect/type.tnsl
+++ /dev/null
@@ -1,71 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/## tnsl.reflect._type
- Header data which non-raw structs point to.
- Upper limits for classes and libs defined here:
- - Max 2^16 libraries
- - Max 2^16 modules/sub-modules per library
- - Max 2^16 classes per module
- - Max 2^8 Generics per class
-#/
-; raw struct _type() {
- uint16
- _library_id,
- _module_id,
- _type_id,
-
- {uint8}_type
- _generics
-}
-
-/## tnsl.reflect._type_addresses
- Metadata about where things are stored
- in a class
-#/
-; raw struct _type_addresses {
- ~{}_type
- _supers,
-
- ~{}uint
- _super_offsets,
-
- ~{}_method
- _methods,
-
- ~{}_member
- _members
-}
-
-/; method _type
-
- /; _is (_type base) [bool]
- ;/
-
- /; inline _get (_type t, ~void s, _member m) [~void]
- ;/
-
- /; inline raw _call (_type t, ~void s, _method m, ~void p)
- ;/
-
- /; _offset (_type cast) [uint]
- ;/
-;/ \ No newline at end of file
diff --git a/libtnsl/src/reflect/virtual.tnsl b/libtnsl/src/reflect/virtual.tnsl
deleted file mode 100644
index 8891905..0000000
--- a/libtnsl/src/reflect/virtual.tnsl
+++ /dev/null
@@ -1,144 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/## _LIB_TABLE
- The array of library export trees.
-
- Convention:
- - index 0 is always reserved for language-specific types + libtnsl
- - index 0 module 0 represents the fundimental in-built types like int
-#/
-: extern const {}~library _LIB_TABLE
-
-; raw struct library {
- # Version
- uint16
- major,
- minor,
- patch
-
- ~sym_node
- root_node
-}
-
-/## tnsl.reflect._method
- Metadata for methods (can be decoded from library
- symbol tables). Limits for methods defined here:
- - Max 2^8 inputs
- - Max 2^8 outputs
-#/
-; raw struct _method {
- {uint8}charp
- name,
-
- {uint8}~_type
- inputs,
- outputs,
-
- ~void
- address
-}
-
-/## tnsl.reflect._member
- Metadata about struct members
-#/
-; raw struct _member {
- {uint8}charp
- name,
-
- _type
- member_type,
-
- uint
- byte_offset
-}
-
-/## tnsl.reflect.sym_node
- Represents a module in a symbol tree
-#/
-; raw struct sym_node {
- {uint8}charp
- name,
-
- uint16
- id,
-
- {}~sym_node
- sub_modules,
-
- {}~sym_type
- sub_types
-}
-
-/## tnsl.reflect.sym_type
- Represents a type in a symbol tree
-#/
-; raw struct sym_type {
- {uint8}charp
- name,
-
- {uint8}~sym_type
- super_types,
-
-}
-
-###############################
-# Traverse the Library Tree #
-###############################
-
-/; get_sym_node (~sym_node root, uint16 mod_id) [~sym_node]
- /;loop (root != null)
- /; loop (uint16 sub = 0; sub < len `root.sub_modules) [sub++]
- /; if (mod_id < `root.sub_modules{sub}.id)
- /; if (sub == 0)
- ; return null
- ;/
- ;root = `root.sub_modules{sub - 1}
- ; continue 1
- ;; else if (mod_id == `root.sub_modules{sub}.id)
- ; return `root.sub_modules{sub}
- ;/
- ;/
-
- ; break
- ;/
-
- ; return null
-;/
-
-/; get_sym_node (uint16 lib_id, mod_id) [~sym_node]
-
- ;~library lib = _LIB_TABLE{lib_id}
-
- ;return get_sym_node(`lib.root_node, mod_id)
-;/
-
-/; get_sym_type(uint16 lib_id, mod_id, typ_id) [~sym_type]
-
- ;~library lib = _LIB_TABLE{lib_id}
- ;~sym_node mod = get_sym_node(`lib.root_node, mod_id)
-
- ;return `mod.sub_types{typ_id}
-;/
-
-/; get_sym_type(`const {}charp path) [~sym_type]
-
-;/ \ No newline at end of file
diff --git a/libtnsl/src/time/alg.tnsl b/libtnsl/src/time/alg.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/time/alg.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/time/conv.tnsl b/libtnsl/src/time/conv.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/time/conv.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/time/parse.tnsl b/libtnsl/src/time/parse.tnsl
deleted file mode 100644
index d346464..0000000
--- a/libtnsl/src/time/parse.tnsl
+++ /dev/null
@@ -1,20 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/ \ No newline at end of file
diff --git a/libtnsl/src/time/time.tnsl b/libtnsl/src/time/time.tnsl
deleted file mode 100644
index dc24369..0000000
--- a/libtnsl/src/time/time.tnsl
+++ /dev/null
@@ -1,27 +0,0 @@
-/##
- Copyright 2021 Kyle Gunger
-
- Dual licensed under the CDDL 1.0 and BSD 3-Clause licenses.
-
- This file may only be used in accordance with one of the two
- licenses. You should have received a copy of each license with
- the source code. In the event that you did not recieve a copy
- of the licenses, they may be found at the following URLs:
-
- CDDL 1.0:
- https://opensource.org/licenses/CDDL-1.0
-
- BSD 3-Clause:
- https://opensource.org/licenses/BSD-3-Clause
-
- THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
- WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
- EXPRESS OR IMPLIED
-#/
-
-/##
- module tnsl.time
- Functionality for conversion, parsing, printing, and measuring of time
-
-#; export module time
-;/ \ No newline at end of file