Files
qt-creator/tests/auto/qml/codemodel/check/avoid-some-constructors.qml

15 lines
343 B
QML
Raw Normal View History

import QtQuick 1.0
Item {
function foo() {
var x = new Number(); // 308 21 26
x = new String(); // 110 17 22
x = new Array(); // 112 17 21
x = new Object(); // 111 17 22
x = new Function(); // 113 17 24
x = new Boolean() // 109 17 23
x = new Date()
x = new Array(6)
}
}