aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/codemodel/ecmascript7/samples/basic/super.js
blob: 27dcaf010008eed5cfee382e02246321d2c7ef6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

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

class MySuperClass extends MyClass
{
    constructor(id, data)
    {
        this.data = data;
        super(id);
    }
}