diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-12-14 23:11:29 -0500 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-12-14 23:11:29 -0500 |
commit | 7a8a8b975bd4ca636b825a42852c5af95d9b5825 (patch) | |
tree | 00465a3f940c38f8a8a59b60f4b19252f3f7677c /src/texec/world.go | |
parent | dc8f1a06f086bda90e90a5386d4619d54efb1d0d (diff) |
[EXEC] Struct mapping
+ added tStruct TType for use in modules
+ implemented a way to define structs in modules
Diffstat (limited to 'src/texec/world.go')
-rw-r--r-- | src/texec/world.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/texec/world.go b/src/texec/world.go index d0435a0..d88eae2 100644 --- a/src/texec/world.go +++ b/src/texec/world.go @@ -38,6 +38,7 @@ type TVariable struct { } type VarMap map[string]TVariable +type TypeMap map[string]TType // TContext represents a single call context. type TContext struct { |