We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fc8879 commit 7f18746Copy full SHA for 7f18746
1 file changed
tests/specs/panic_subtract_with_overflow.txt
@@ -0,0 +1,43 @@
1
+# mod.ts
2
+export { Audio } from './audio.ts';
3
+
4
+# audio.ts
5
+import { Speech } from './speech.ts';
6
7
+/** Some documentation. **/
8
+export namespace Audio {
9
+ export { Speech as Speech };
10
+}
11
12
+# speech.ts
13
+export namespace Speech {}
14
15
+# output.txt
16
+Defined in file:///audio.ts:4:1
17
18
+namespace Audio
19
+ Some documentation. *
20
21
22
23
+# output.json
24
+[
25
+ {
26
+ "name": "Audio",
27
+ "isDefault": false,
28
+ "location": {
29
+ "filename": "file:///audio.ts",
30
+ "line": 4,
31
+ "col": 0,
32
+ "byteIndex": 67
33
+ },
34
+ "declarationKind": "export",
35
+ "jsDoc": {
36
+ "doc": "Some documentation. *"
37
38
+ "kind": "namespace",
39
+ "namespaceDef": {
40
+ "elements": []
41
+ }
42
43
+]
0 commit comments