| 266 | } |
| 267 | |
| 268 | void importObjectContext(DUContext* context, TopDUContext* topContext) |
| 269 | { |
| 270 | DeclarationPointer objectDeclaration = |
| 271 | NodeJS::instance().moduleMember(QStringLiteral("__builtin_ecmascript"), QStringLiteral("Object"), topContext->url()); |
| 272 | |
| 273 | if (objectDeclaration) { |
| 274 | importDeclarationInContext(context, objectDeclaration); |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | bool isPrototypeIdentifier(const QString& identifier) |
| 279 | { |
no test coverage detected