This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// holds script-specific information (i.e. how to load the script data, | |
// name of the script, script runtime version required, etc.) | |
type Script struct { | |
} | |
// parameters to the script, TBD if key/value or positional | |
type ScriptParam struct { | |
} | |
// current script execution scope. Defines global variables, pre-exising variables | |
// from the current scope, etc. | |
type Scope struct { |
OlderNewer