37 lines
626 B
Go
37 lines
626 B
Go
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Runtime type representation.
|
|
|
|
package runtime
|
|
|
|
import (
|
|
"github.com/goplus/llgo/internal/abi"
|
|
)
|
|
|
|
// type nameOff = abi.NameOff
|
|
// type typeOff = abi.TypeOff
|
|
|
|
type _type = abi.Type
|
|
|
|
type interfacetype = abi.InterfaceType
|
|
|
|
type maptype = abi.MapType
|
|
|
|
/*
|
|
type arraytype = abi.ArrayType
|
|
|
|
type chantype = abi.ChanType
|
|
|
|
type slicetype = abi.SliceType
|
|
|
|
type functype = abi.FuncType
|
|
|
|
type ptrtype = abi.PtrType
|
|
|
|
type name = abi.Name
|
|
|
|
type structtype = abi.StructType
|
|
*/
|