llgo/internal/runtime

This commit is contained in:
xushiwei
2024-04-27 13:57:21 +08:00
parent 39076c75cf
commit f1761c0c9c
6 changed files with 134 additions and 0 deletions

18
internal/runtime/type.go Normal file
View File

@@ -0,0 +1,18 @@
// 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