summaryrefslogtreecommitdiff
path: root/tests/auto/qml/codemodel/ecmascript7/samples/basic/constructor.js
blob: dc32d5f9c076387de2ae4c104b2876e99df4e40a (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

class MyClass
{
    constructor(id)
    {
        this.id = id;
    }
}