WIP: Fixed GSI to some extent, some tests

This commit is contained in:
Matthias Koefferlein
2021-12-04 00:31:01 +01:00
parent 82909001c4
commit 125543957d
22 changed files with 338 additions and 83 deletions
-3
View File
@@ -809,9 +809,6 @@ include "QWindow", [ "<QWindow>", "<QScreen>",
include "QOffscreenSurface", [ "<QOffscreenSurface>", "<QScreen>" ]
include "QScreenOrientationChangeEvent", [ "<QScreenOrientationChangeEvent>", "<QScreen>" ]
drop_method "QRgba64", /QRgba64::QRgba64\(.*quint64/ # some problem with quint64 type ... @@@ TODO: debug later
drop_method "QRgba64", /QRgba64::operator=\(.*quint64/ # some problem with quint64 type ... @@@ TODO: debug later
drop_method "QRgba64", /QRgba64::quint64/ # some problem with quint64 type ... @@@ TODO: debug later
drop_method "QWindow", /QWindow::handle/ # QPlatformWindow not available
drop_method "QScreen", /QScreen::handle/ # QPlatformScreen not available
drop_method "QSurface", /QSurface::surfaceHandle/ # QPlatformSurface not available
+1 -1
View File
@@ -97,7 +97,7 @@ grammar CPP
rule id
"operator" s "," /
"operator" s ( bin_op / unary_op / "," ) /
"operator" sp [a-zA-Z\*\& \t\n\r]+ &( s "(" ) /
"operator" sp [a-zA-Z_0-9\*\& \t\n\r]+ &( s "(" ) /
"~"? [a-zA-Z_] [a-zA-Z_0-9]*
end