Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( //BuiltInMap defines various mappings that need to exist between the virtual machine and golang BuiltInMap = map[string]string{ "int": "int64", "uintptr": "int64", } // TypeAliasMap maps a package to it's various type alias conversion types TypeAliasMap = map[string]TypeAliasToBuiltIn{ "syscall": TypeAliasToBuiltIn{ "Signal": "int", }, "time": TypeAliasToBuiltIn{ "Duration": "int64", }, } )
Functions ¶
This section is empty.
Types ¶
type TypeAliasToBuiltIn ¶
TypeAliasToBuiltIn maps package type aliases to built in types for conversion
Click to show internal directories.
Click to hide internal directories.