diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-08-06 18:37:32 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-08 18:35:26 -0700 |
| commit | 51380bf39936e0bcb1cb671bb20e961e1bb18e7d (patch) | |
| tree | 3bed337aa9d2f63fe497f5e2ea826dd499b4b00b /js/v8_source_maps.ts | |
| parent | 4a1ccdeadb44983b8966c4623f10c5a665a39517 (diff) | |
Organize libdeno functions.
Diffstat (limited to 'js/v8_source_maps.ts')
| -rw-r--r-- | js/v8_source_maps.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/v8_source_maps.ts b/js/v8_source_maps.ts index 29091486c..ec706cd44 100644 --- a/js/v8_source_maps.ts +++ b/js/v8_source_maps.ts @@ -3,10 +3,9 @@ // Originated from source-map-support but has been heavily modified for deno. import { SourceMapConsumer, MappedPosition } from "source-map"; -import { RawSourceMap } from "source-map"; import * as base64 from "base64-js"; import { arrayToStr } from "./util"; -import { CallSite } from "./types"; +import { CallSite, RawSourceMap } from "./types"; const consumers = new Map<string, SourceMapConsumer>(); |
