genbindings: minor compatibility improvements for qwidget.h

This commit is contained in:
mappu 2024-08-10 14:04:52 +12:00
parent bdc13f71c4
commit ab9c015501
2 changed files with 12 additions and 1 deletions

View File

@ -58,6 +58,13 @@ func parseHeader(inner []interface{}) (*CppParsedHeader, error) {
case "NamespaceDecl":
// ignore
case "FunctionDecl":
// TODO
case "CXXMethodDecl":
// A C++ class method implementation directly in the header
// Skip over these
default:
return nil, fmt.Errorf("missing handling for clang ast node type %q", kind)
}
@ -306,6 +313,10 @@ func parseTypeString(typeString string) (CppParameter, []CppParameter, error) {
return CppParameter{}, nil, ErrTooComplex
}
if strings.Contains(typeString, `&&`) { // TODO Rvalue references
return CppParameter{}, nil, ErrTooComplex
}
// Cut to exterior-most (, ) pair
opos := strings.Index(typeString, `(`)
epos := strings.LastIndex(typeString, `)`)

View File

@ -214,7 +214,7 @@ import "C"
formattedSrc, err := format.Source([]byte(goSrc))
if err != nil {
log.Printf("gofmt failure: %v", err)
formattedSrc = []byte(ret.String())
formattedSrc = []byte(goSrc)
}
return string(formattedSrc), nil