mirror of
https://github.com/denoland/deno.git
synced 2025-01-02 04:19:10 -05:00
8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
|
function test() {
|
||
|
// this comment should be in output
|
||
|
return 1 + 1;
|
||
|
}
|
||
|
|
||
|
// should include the comments because people rely on this behavior
|
||
|
console.log(test.toString());
|