mirror of
https://github.com/mappu/miqt.git
synced 2025-04-04 12:40:23 +00:00
genbindings/c++1z: skip over more advanced AST node types
This commit is contained in:
parent
a78ba20f15
commit
c616c789ff
@ -56,6 +56,7 @@ nextTopLevel:
|
|||||||
"ClassTemplateSpecializationDecl",
|
"ClassTemplateSpecializationDecl",
|
||||||
"ClassTemplatePartialSpecializationDecl",
|
"ClassTemplatePartialSpecializationDecl",
|
||||||
"FunctionTemplateDecl",
|
"FunctionTemplateDecl",
|
||||||
|
"BuiltinTemplateDecl", // Scintilla
|
||||||
"VarTemplatePartialSpecializationDecl", // e.g. Qt6 qcontainerinfo.h
|
"VarTemplatePartialSpecializationDecl", // e.g. Qt6 qcontainerinfo.h
|
||||||
"VarTemplateSpecializationDecl", // e.g. qhashfunctions.h
|
"VarTemplateSpecializationDecl", // e.g. qhashfunctions.h
|
||||||
"TypeAliasTemplateDecl", // e.g. qendian.h
|
"TypeAliasTemplateDecl", // e.g. qendian.h
|
||||||
@ -130,6 +131,12 @@ nextTopLevel:
|
|||||||
// TODO e.g. qfuturewatcher.h
|
// TODO e.g. qfuturewatcher.h
|
||||||
// Probably can't be supported in the Go binding
|
// Probably can't be supported in the Go binding
|
||||||
|
|
||||||
|
case "AbiTagAttr":
|
||||||
|
// e.g. scintilla.org ScintillaEditBase
|
||||||
|
case "VisibilityAttr":
|
||||||
|
// e.g. scintilla.org ScintillaEditBase
|
||||||
|
// Don't understand why this appears at top level??
|
||||||
|
|
||||||
case "UsingDirectiveDecl", // qtextstream.h
|
case "UsingDirectiveDecl", // qtextstream.h
|
||||||
"UsingDecl", // qglobal.h
|
"UsingDecl", // qglobal.h
|
||||||
"UsingShadowDecl": // global.h
|
"UsingShadowDecl": // global.h
|
||||||
|
Loading…
x
Reference in New Issue
Block a user