diff options
author | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-30 03:01:04 (GMT) |
---|---|---|
committer | Aaron Kennedy <aaron.kennedy@nokia.com> | 2009-04-30 03:01:04 (GMT) |
commit | d85c0c07b72476d801db3f1cb622cb32ab50dcc4 (patch) | |
tree | 1fa3a51cfd493fa7cde45f0b61f5f27891e51769 /src/declarative/qml/qmlcompiler_p.h | |
parent | 27cce9ae6c889c1803e46e45375ffb411490989d (diff) | |
download | Qt-d85c0c07b72476d801db3f1cb622cb32ab50dcc4.zip Qt-d85c0c07b72476d801db3f1cb622cb32ab50dcc4.tar.gz Qt-d85c0c07b72476d801db3f1cb622cb32ab50dcc4.tar.bz2 |
Prototype custom parsers for non-xml qml language
ListModel has been ported (under the name ListModel2) to demonstrate. ListModel2 behaves the same as ListModel, except that list "objects" must be called "ListElement" instead of a freeform name.
Diffstat (limited to 'src/declarative/qml/qmlcompiler_p.h')
-rw-r--r-- | src/declarative/qml/qmlcompiler_p.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/declarative/qml/qmlcompiler_p.h b/src/declarative/qml/qmlcompiler_p.h index 2a06f73..9a0ce1c 100644 --- a/src/declarative/qml/qmlcompiler_p.h +++ b/src/declarative/qml/qmlcompiler_p.h @@ -139,6 +139,7 @@ private: bool compileComponentFromRoot(QmlParser::Object *obj, int); bool compileFetchedObject(QmlParser::Object *obj, int); bool compileSignal(QmlParser::Property *prop, QmlParser::Object *obj); + bool testProperty(QmlParser::Property *prop, QmlParser::Object *obj); bool compileProperty(QmlParser::Property *prop, QmlParser::Object *obj, int); bool compileIdProperty(QmlParser::Property *prop, QmlParser::Object *obj); |