~ubuntu-branches/ubuntu/saucy/qtdeclarative-opensource-src/saucy

« back to all changes in this revision

Viewing changes to tests/auto/qml/qqmlecmascript/data/sequenceConversion.read.error.qml

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 14:17:19 UTC
  • Revision ID: package-import@ubuntu.com-20130205141719-qqeyml8wslpyez52
Tags: upstream-5.0.1
ImportĀ upstreamĀ versionĀ 5.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Qt.test 1.0
 
3
 
 
4
Item {
 
5
    id: root
 
6
    objectName: "root"
 
7
 
 
8
    MySequenceConversionObject {
 
9
        id: msco
 
10
        objectName: "msco"
 
11
    }
 
12
 
 
13
    property int typeListLength: 0
 
14
    property variant typeList
 
15
 
 
16
    function performTest() {
 
17
        // we have NOT registered QList<NonRegisteredType> as a type
 
18
        typeListLength = msco.typeListProperty.length;
 
19
        typeList = msco.typeListProperty;
 
20
    }
 
21
}