| 343 | } |
| 344 | |
| 345 | bool ExpressionVisitor::encounterDeclarationInNodeModule(const QualifiedIdentifier& id, |
| 346 | const QString& module) |
| 347 | { |
| 348 | return encounterDeclarationInContext( |
| 349 | id, |
| 350 | QmlJS::getInternalContext( |
| 351 | QmlJS::NodeJS::instance().moduleExports(module, m_context->url()) |
| 352 | ) |
| 353 | ); |
| 354 | } |
| 355 | |
| 356 | bool ExpressionVisitor::encounterGlobalDeclaration(const QualifiedIdentifier& id) |
| 357 | { |
nothing calls this directly
no test coverage detected