diff options
Diffstat (limited to 'src/texec/worldbuilder.go')
-rw-r--r-- | src/texec/worldbuilder.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/texec/worldbuilder.go b/src/texec/worldbuilder.go index 023c730..9fd29b7 100644 --- a/src/texec/worldbuilder.go +++ b/src/texec/worldbuilder.go @@ -45,6 +45,12 @@ func evalPreLiteral(n tparse.Node) string { return "" } +//Generate a variable for a module +// For sub = 0, give the vlist +func modDef(n tparse.Node, t TType, sub int) ([]string, []TVariable) { + +} + // Parse a file and make an AST from it. func parseFile(p string) tparse.Node { tokens := tparse.TokenizeFile(p) |