denoland / deno_ast

Source text parsing, lexing, and AST related functionality for Deno
https://crates.io/crates/deno_ast
MIT License
144 stars 43 forks source link

Combine EmitOptions - inline_source_map and inline_sources #217

Closed dsherret closed 4 months ago

dsherret commented 5 months ago

These options are mutually exclusive, so we should combine them into something like:

source_map: SourceMapOption,

Where SourceMapOption has None, Inline, Separate