()
| 131 | |
| 132 | let isSEABuiltinWarningNeeded_; |
| 133 | function isSEABuiltinWarningNeeded() { |
| 134 | if (isSEABuiltinWarningNeeded_ === undefined) { |
| 135 | const { isExperimentalSeaWarningNeeded, isSea } = internalBinding('sea'); |
| 136 | isSEABuiltinWarningNeeded_ = isSea() && isExperimentalSeaWarningNeeded(); |
| 137 | } |
| 138 | return isSEABuiltinWarningNeeded_; |
| 139 | } |
| 140 | |
| 141 | let warnedAboutBuiltins = false; |
| 142 | /** |
no outgoing calls
no test coverage detected