mirror of
https://github.com/denoland/deno.git
synced 2024-12-26 17:19:06 -05:00
d76acfdc17
This commit fixes source maps for files that contain emojis. This is done by updating "deno_ast" to "0.14.1" for the case of "--no-check" flag (ie using SWC emit) and by overriding TSC's default base64 encoder (which turned out to be buggy) for the type checking case.
19 lines
400 B
Text
19 lines
400 B
Text
cover [WILDCARD]/coverage/complex.ts ... 60.526% (23/38)
|
|
46 | export function unused(
|
|
47 | foo: string,
|
|
48 | bar: string,
|
|
49 | baz: string,
|
|
-----|-----
|
|
51 | return complex(
|
|
52 | foo,
|
|
53 | bar,
|
|
54 | baz,
|
|
55 | );
|
|
56 | }
|
|
-----|-----
|
|
64 | export function ƒ(): number {
|
|
65 | return (
|
|
66 | 0
|
|
67 | );
|
|
-----|-----
|
|
71 | console.log("%s", () => 1);
|