mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
Make error in ast_util more informative. (#2252)
This commit is contained in:
parent
bbeb30fc5e
commit
c36b5dd01c
1 changed files with 1 additions and 1 deletions
|
@ -449,7 +449,7 @@ export function namespaceSourceFile(
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
throw createDeclarationError(
|
throw createDeclarationError(
|
||||||
"Unsupported import clause.",
|
`Unsupported import clause: ${e}`,
|
||||||
declaration
|
declaration
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue