Method.qml 588 B

123456789101112131415161718
  1. // Copyright (C) 2020 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. import QML
  4. import QtQuick.tooling as Tooling
  5. Tooling.Member {
  6. default property list<Tooling.Parameter> parameters
  7. property string type
  8. property int revision: 0
  9. property bool isConstructor: false
  10. property bool isList: false
  11. property bool isPointer: false
  12. property bool isJavaScriptFunction: false
  13. property bool isCloned: false
  14. property bool isTypeConstant: false
  15. property bool isMethodConstant: false
  16. }