mirror of
https://github.com/mappu/miqt.git
synced 2025-04-03 20:20:22 +00:00
genbindings/clang: skip over more top-level ast nodes
This commit is contained in:
parent
b5370c8728
commit
042a86ade7
@ -67,8 +67,16 @@ func parseHeader(topLevel []interface{}) (*CppParsedHeader, error) {
|
|||||||
case "StaticAssertDecl":
|
case "StaticAssertDecl":
|
||||||
// ignore
|
// ignore
|
||||||
|
|
||||||
case "ClassTemplateDecl", "ClassTemplateSpecializationDecl", "ClassTemplatePartialSpecializationDecl":
|
case "ClassTemplateDecl",
|
||||||
// ignore
|
"ClassTemplateSpecializationDecl",
|
||||||
|
"ClassTemplatePartialSpecializationDecl",
|
||||||
|
"FunctionTemplateDecl",
|
||||||
|
"TypeAliasTemplateDecl", // e.g. qendian.h
|
||||||
|
"VarTemplateDecl": // e.g. qglobal.h
|
||||||
|
// Template stuff probably can't be supported in the binding since
|
||||||
|
// we would need to link a concrete instantiation for each type in
|
||||||
|
// the CABI
|
||||||
|
// Ignore this node
|
||||||
|
|
||||||
case "FileScopeAsmDecl":
|
case "FileScopeAsmDecl":
|
||||||
// ignore
|
// ignore
|
||||||
@ -79,8 +87,12 @@ func parseHeader(topLevel []interface{}) (*CppParsedHeader, error) {
|
|||||||
case "FunctionDecl":
|
case "FunctionDecl":
|
||||||
// TODO
|
// TODO
|
||||||
|
|
||||||
case "FunctionTemplateDecl":
|
case "EnumDecl":
|
||||||
// TODO
|
// TODO e.g. qmetatype.h
|
||||||
|
|
||||||
|
case "VarDecl":
|
||||||
|
// TODO e.g. qmath.h
|
||||||
|
// We could probably generate setter/getter for this in the CABI
|
||||||
|
|
||||||
case "CXXConstructorDecl":
|
case "CXXConstructorDecl":
|
||||||
// TODO (why is this at the top level? e.g qobject.h)
|
// TODO (why is this at the top level? e.g qobject.h)
|
||||||
@ -91,6 +103,18 @@ func parseHeader(topLevel []interface{}) (*CppParsedHeader, error) {
|
|||||||
case "CXXConversionDecl":
|
case "CXXConversionDecl":
|
||||||
// TODO (e.g. qbytearray.h)
|
// TODO (e.g. qbytearray.h)
|
||||||
|
|
||||||
|
case "LinkageSpecDecl":
|
||||||
|
// TODO e.g. qfuturewatcher.h
|
||||||
|
// Probably can't be supported in the Go binding
|
||||||
|
|
||||||
|
case "TypeAliasDecl":
|
||||||
|
// TODO e.g. qglobal.h
|
||||||
|
// Should be treated like a typedef
|
||||||
|
|
||||||
|
case "UsingDirectiveDecl":
|
||||||
|
// TODO e.g. qtextstream.h
|
||||||
|
// Should be treated like a typedef
|
||||||
|
|
||||||
case "TypedefDecl":
|
case "TypedefDecl":
|
||||||
// Must have a name
|
// Must have a name
|
||||||
nodename, ok := node["name"].(string)
|
nodename, ok := node["name"].(string)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user