()
| 380 | } |
| 381 | |
| 382 | function setupFFI() { |
| 383 | if (!getOptionValue('--experimental-ffi')) { |
| 384 | return; |
| 385 | } |
| 386 | |
| 387 | const { BuiltinModule } = require('internal/bootstrap/realm'); |
| 388 | BuiltinModule.allowRequireByUsers('ffi'); |
| 389 | } |
| 390 | |
| 391 | function setupSQLite() { |
| 392 | if (getOptionValue('--no-experimental-sqlite')) { |
no test coverage detected
searching dependent graphs…