| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | class __attribute__((visibility("default"))) QQmlScriptStringPrivate : public QSharedData | - |
| 5 | { | - |
| 6 | public: | - |
| 7 | QQmlScriptStringPrivate() : context(nullptr), scope(nullptr), bindingId(-1), lineNumber(0), columnNumber(0), | - |
| 8 | numberValue(0), isStringLiteral(false), isNumberLiteral(false) {}executed 13558 times by 14 tests: end of blockExecuted by:- tst_examples
- tst_qqmlecmascript
- tst_qqmlexpression
- tst_qqmlstatemachine
- tst_qqmlxmlhttprequest
- tst_qquickanimations
- tst_qquickbehaviors
- tst_qquickgridview
- tst_qquickitem2
- tst_qquicklistview
- tst_qquickpathview
- tst_qquickpositioners
- tst_qquickstates
- tst_scenegraph
| 13558 |
| 9 | | - |
| 10 | | - |
| 11 | static const QQmlScriptStringPrivate* get(const QQmlScriptString &script); | - |
| 12 | | - |
| 13 | QQmlContext *context; | - |
| 14 | QObject *scope; | - |
| 15 | QString script; | - |
| 16 | int bindingId; | - |
| 17 | quint16 lineNumber; | - |
| 18 | quint16 columnNumber; | - |
| 19 | double numberValue; | - |
| 20 | bool isStringLiteral; | - |
| 21 | bool isNumberLiteral; | - |
| 22 | }; | - |
| 23 | | - |
| 24 | | - |
| | |