| 468 | } |
| 469 | |
| 470 | NAN_MODULE_INIT(Init) { |
| 471 | NAN_EXPORT(target, testArray); |
| 472 | NAN_EXPORT(target, testBoolean); |
| 473 | NAN_EXPORT(target, testBooleanObject); |
| 474 | NAN_EXPORT(target, testContext); |
| 475 | NAN_EXPORT(target, testDate); |
| 476 | NAN_EXPORT(target, testExternal); |
| 477 | NAN_EXPORT(target, testFunction); |
| 478 | NAN_EXPORT(target, testFunctionTemplate); |
| 479 | NAN_EXPORT(target, testNumber); |
| 480 | NAN_EXPORT(target, testNumberObject); |
| 481 | NAN_EXPORT(target, testObject); |
| 482 | NAN_EXPORT(target, testObjectTemplate); |
| 483 | NAN_EXPORT(target, testScript); |
| 484 | NAN_EXPORT(target, testSignature); |
| 485 | NAN_EXPORT(target, testString); |
| 486 | NAN_EXPORT(target, testStringObject); |
| 487 | |
| 488 | NAN_EXPORT(target, testPersistents); |
| 489 | NAN_EXPORT(target, testGlobals); |
| 490 | |
| 491 | NAN_EXPORT(target, testRegression212); |
| 492 | NAN_EXPORT(target, testRegression242); |
| 493 | |
| 494 | NAN_EXPORT(target, newIntegerWithValue); |
| 495 | NAN_EXPORT(target, newNumberWithValue); |
| 496 | NAN_EXPORT(target, newUint32WithValue); |
| 497 | NAN_EXPORT(target, newStringFromChars); |
| 498 | NAN_EXPORT(target, newStringFromCharsWithLength); |
| 499 | NAN_EXPORT(target, newStringFromStdString); |
| 500 | |
| 501 | NAN_EXPORT(target, newExternal); |
| 502 | |
| 503 | NAN_EXPORT(target, invokeMakeMaybe); |
| 504 | } |
| 505 | |
| 506 | } // end of anonymous namespace |
| 507 |
nothing calls this directly
no outgoing calls
no test coverage detected