aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qml/holistic/data/scopeSwitching/cppToJs.js
blob: ed24310da0709b49c12789bfe6c425b6b95ade99 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

.pragma library

var generatedValue = 5;

function generateNextValue() {
    generatedValue += 1;
    return generatedValue;
}