| 101 | # - "sources" is for names that output to source maps JSON |
| 102 | # - "load" is for paths that used to load source text |
| 103 | class SourceMapPrefixes: |
| 104 | def __init__(self, sources, load, base_path): |
| 105 | self.sources = Prefixes(sources, base_path=base_path) |
| 106 | self.load = Prefixes(load, preserve_deterministic_prefix=False) |
| 107 | |
| 108 | |
| 109 | def encode_vlq(n): |