15 lines
337 B
QML
15 lines
337 B
QML
import QtQuick 2.0
|
|
|
|
QtObject {
|
|
property bool calledAsConstructor
|
|
property bool calledAsFunction
|
|
|
|
Component.onCompleted: {
|
|
var x1 = new XMLHttpRequest;
|
|
var x2 = XMLHttpRequest();
|
|
|
|
calledAsConstructor = (x1 != null && x1 instanceof XMLHttpRequest);
|
|
calledAsFunction = (x2 == undefined);
|
|
}
|
|
}
|