Documentation ¶
Index ¶
- Variables
- func AutoConvert(v reflect.Value, t reflect.Type) reflect.Value
- func GoModuleList() []string
- func GoModuleName(table map[string]interface{}) (name string, ok bool)
- func Import(mod string, table map[string]interface{})
- func SetAutoCall(t reflect.Type)
- func SetDontTyNormalize(t reflect.Type)
- func SetDumpStack(dump bool)
- type Chan
- type DataIndex
- type Module
- type Type
- type Var
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ChanIn = dummyChanIn ChanOut = dummyChanOut GetEx = dummy2 SetIndex = dummySetIndex MapInit = dummyN MapFrom = dummyN Map = dummy2 Slice = dummy1 SliceFrom = dummyN SliceFromTy = dummyN StructInit = dummyN SubSlice = dummy3 Xor = dummy2 Lshr = dummy2 Rshr = dummy2 BitAnd = dummy2 BitOr = dummy2 AndNot = dummy2 EQ = dummy2 GetVar = dummy2 Get = dummy2 Add = dummy2 Sub = dummy2 Mul = dummy2 Quo = dummy2 Mod = dummy2 Inc = dummy1 Dec = dummy1 )
View Source
var ( // DumpStack indicates to dump stack when error. DumpStack = false // AutoCall is reserved for internal use. AutoCall = make(map[reflect.Type]bool) // DontTyNormalize is reserved for internal use. DontTyNormalize = make(map[reflect.Type]bool) )
View Source
var Fntable = map[string]interface{}{
"$neg": dummy1,
"$elem": dummy1,
"$mul": dummy2,
"$quo": dummy2,
"$mod": dummy2,
"$add": dummy2,
"$sub": dummy2,
"$xor": dummy2,
"$lshr": dummy2,
"$rshr": dummy2,
"$bitand": dummy2,
"$bitor": dummy2,
"$bitnot": dummy1,
"$andnot": dummy2,
"$lt": dummy2,
"$gt": dummy2,
"$le": dummy2,
"$ge": dummy2,
"$eq": dummy2,
"$ne": dummy2,
"$and": dummy2,
"$or": dummy2,
"$not": dummy1,
}
Fntable is function table required by tpl.Interpreter engine.
View Source
var SafeMode bool
SafeMode is the init mode of qlang.
View Source
var ( // Undefined is `undefined` in qlang. Undefined = interface{}(errors.New("undefined")) )
Functions ¶
func AutoConvert ¶ added in v0.2.81
AutoConvert converts a value to specified type automatically.
func GoModuleList ¶ added in v0.2.6
func GoModuleList() []string
GoModuleList returns qlang modules implemented by Go.
func GoModuleName ¶ added in v0.2.71
func SetDontTyNormalize ¶ added in v0.2.80
SetDontTyNormalize is reserved for internal use.
Types ¶
type DataIndex ¶
type DataIndex struct { Data interface{} Index interface{} }
A DataIndex represents a compound data and its index. such as map[index], slice[index], object.member.
type Type ¶ added in v0.2.80
type Type struct {
// contains filtered or unexported fields
}
A Type represents a qlang builtin type.
func (*Type) Call ¶ added in v0.2.80
func (p *Type) Call(a interface{}) interface{}
Call returns `T(a)`.
func (*Type) GoType ¶ added in v0.2.80
GoType returns the underlying go type. required by `qlang type` spec.
func (*Type) NewInstance ¶ added in v0.2.80
func (p *Type) NewInstance(args ...interface{}) interface{}
NewInstance creates a new instance of a qlang type. required by `qlang type` spec.
Click to show internal directories.
Click to hide internal directories.