WithStripInfo is retained for backward compatibility only. Deprecated: quickjs-ng does not expose a runtime-level strip-info API, so this option is a no-op.
(strip int)
| 488 | // WithStripInfo is retained for backward compatibility only. |
| 489 | // Deprecated: quickjs-ng does not expose a runtime-level strip-info API, so this option is a no-op. |
| 490 | func WithStripInfo(strip int) Option { |
| 491 | return func(o *Options) { |
| 492 | o.strip = strip |
| 493 | } |
| 494 | } |
| 495 | |
| 496 | // WithOwnerGoroutineCheck enables/disables owner-goroutine checks. |
| 497 | // WARNING: disabling this check is unsafe and may cause data races or memory corruption. |
no outgoing calls