aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlcompiler_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/qqmlcompiler_p.h')
-rw-r--r--src/qml/qml/qqmlcompiler_p.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlcompiler_p.h b/src/qml/qml/qqmlcompiler_p.h
index 1d1306fba4..c8e5c907e0 100644
--- a/src/qml/qml/qqmlcompiler_p.h
+++ b/src/qml/qml/qqmlcompiler_p.h
@@ -470,6 +470,12 @@ private:
int compiledFunctionIndex; // index in functionToCompile
};
QList<CompiledMetaMethod> compiledMetaMethods;
+ struct CompiledSignalHandlerExpression
+ {
+ QQmlScript::Value *signal;
+ int compiledHandlerIndex; // index in functionsToCompile
+ };
+ QList<CompiledSignalHandlerExpression> compiledSignalHandlers;
// Compiler component statistics. Only collected if QML_COMPILER_STATS=1
struct ComponentStat