| 52 | } |
| 53 | |
| 54 | void QmlBindingProvider::fetchSourceLocationFor(BindingNode *node, QQmlBinding *binding) |
| 55 | { |
| 56 | QV4::Function *function = binding->function(); |
| 57 | if (function) { |
| 58 | QQmlSourceLocation loc = function->sourceLocation(); |
| 59 | node->setSourceLocation(SourceLocation::fromOneBased(QUrl(loc.sourceFile), loc.line, loc.column)); |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | std::vector<std::unique_ptr<BindingNode>> QmlBindingProvider::findDependenciesFor(BindingNode *node) const |
| 64 | { |
nothing calls this directly
no test coverage detected