aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/parser/qqmljsast_p.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-11-15 15:49:23 +0100
committerUlf Hermann <ulf.hermann@qt.io>2019-11-27 18:50:14 +0100
commitf6e90ba533b9b4b98cfcae3d31731c1cb794ee77 (patch)
treedbde1d4f79cb8f7be325ba69b058eb7530c7394b /src/qml/parser/qqmljsast_p.h
parentc6c34db202ce504cff1e6cc71d9f809a8365e066 (diff)
Add (and ignore for now) type assertions to QML
You can write "(something as Foo)" to give hints to any tools that you expect something to be a Foo at this place. This is not a conversion and ignored at runtime for now. Eventually the compiler will verify that the type assertions are plausible and error out if they aren't. Change-Id: I21c8705bb387f7ab2cbc153293dbf477663afe87 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/parser/qqmljsast_p.h')
-rw-r--r--src/qml/parser/qqmljsast_p.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/qml/parser/qqmljsast_p.h b/src/qml/parser/qqmljsast_p.h
index fcf9933e67..bc0a467f40 100644
--- a/src/qml/parser/qqmljsast_p.h
+++ b/src/qml/parser/qqmljsast_p.h
@@ -104,6 +104,7 @@ enum Op {
URShift,
InplaceURightShift,
InplaceXor,
+ As,
Invalid
};