This is valid QML code and should be parsed correctly: ```qml import QtQuick 2.0 Item { property string bar: "foo hello world" Component.onCompleted: console.log(bar) } ```