github.com/goplus/llgo@v0.8.3/internal/runtime/type.go (about) 1 // Copyright 2009 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 // Runtime type representation. 6 7 package runtime 8 9 import ( 10 "github.com/goplus/llgo/internal/abi" 11 ) 12 13 // type nameOff = abi.NameOff 14 // type typeOff = abi.TypeOff 15 16 type _type = abi.Type 17 18 type interfacetype = abi.InterfaceType 19 20 type maptype = abi.MapType 21 22 /* 23 type arraytype = abi.ArrayType 24 25 type chantype = abi.ChanType 26 27 type slicetype = abi.SliceType 28 29 type functype = abi.FuncType 30 31 type ptrtype = abi.PtrType 32 33 type name = abi.Name 34 35 type structtype = abi.StructType 36 */