~saviq/ubuntu/saucy/qtdeclarative-opensource-src/add-qtquick-delegate-range

« back to all changes in this revision

Viewing changes to tests/auto/qml/qqmlecmascript/data/methods.4.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
 
 
3
MethodsObject {
 
4
    function testFunction2() { return 17; }
 
5
    function testFunction3() { return 16; }
 
6
 
 
7
    property int test: testFunction()
 
8
    property int test2: testFunction2()
 
9
    property int test3: testFunction3()
 
10
}
 
11