Var used before declaration

This warning category is spelled [var-used-before-declaration] by qmllint.

Variable is used here before its declaration

What happened?

You used a variable before you declared it.

Why is this bad?

This makes the code harder to read. Variables declared with let or const will error out at runtime.

Example

import QtQuick

Item {
    function f() {
        x = 42; // x is used before its declaration
        let x;
    }

    Component.onCompleted: f()
}

To fix this warning, move the declaration before the usage:

import QtQuick

Item {
    function f() {
        let x;
        x = 42;
    }

    Component.onCompleted: f()
}

See also JavaScript Expressions in QML Documents.

© 2024 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.