| 8 | #[cfg_attr(feature = "serde", derive(serde::Serialize))] |
| 9 | #[derive(Debug)] |
| 10 | pub struct BytecodeOptions { |
| 11 | pub static_builtins: bool, |
| 12 | pub cjs_modules_statically_resolved: bool, |
| 13 | pub has_async: bool, |
| 14 | pub flags: bool, |
| 15 | } |
| 16 | |
| 17 | impl BytecodeOptions { |
| 18 | pub fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected