projects
/
profile
/
ivi
/
qtdeclarative.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git]
/
tests
/
auto
/
qml
/
qqmlecmascript
/
data
/
scope.3.qml
1
import QtQuick 2.0
2
import Qt.test 1.0
3
4
MyQmlObject {
5
id: root
6
7
property int foo: 12
8
9
property bool test1: foo == 12
10
property bool test2: console != 11
11
property bool test3: root.console == 11
12
}
13