diff --git a/scripts/rebuild_specs.js b/scripts/rebuild_specs.js index 2ac03a852..89c731638 100644 --- a/scripts/rebuild_specs.js +++ b/scripts/rebuild_specs.js @@ -6,6 +6,8 @@ const fs = require("fs"); const path = require("path"); const TypeDoc = require(".."); const { getExpandedEntryPointsForPaths } = require("../dist/lib/utils"); +const { ok } = require("assert"); +const { SourceReference } = require(".."); const base = path.join(__dirname, "../src/test/converter"); @@ -21,6 +23,23 @@ app.bootstrap({ logLevel: TypeDoc.LogLevel.Warn, gitRevision: "fake", }); +app.serializer.addSerializer({ + priority: -1, + supports(obj) { + return obj instanceof SourceReference; + }, + /** + * @param {SourceReference} ref + */ + toObject(ref, obj, _serializer) { + if (obj.url) { + obj.url = `typedoc://${obj.url.substring( + obj.url.indexOf(ref.fileName) + )}`; + } + return obj; + }, +}); /** @type {[string, () => void, () => void][]} */ const conversions = [ @@ -68,20 +87,17 @@ function rebuildConverterTests(dirs) { if (fs.existsSync(out)) { TypeDoc.resetReflectionID(); before(); - const result = app.converter.convert( - getExpandedEntryPointsForPaths( - app.logger, - [fullPath], - app.options, - [program] - ) + const entry = getExpandedEntryPointsForPaths( + app.logger, + [fullPath], + app.options, + [program] ); + ok(entry, "Missing entry point"); + const result = app.converter.convert(entry); const serialized = app.serializer.toObject(result); - const data = - JSON.stringify(serialized, null, " ") - .split(TypeDoc.normalizePath(base)) - .join("%BASE%") + "\n"; + const data = JSON.stringify(serialized, null, " ") + "\n"; after(); fs.writeFileSync(out, data); } diff --git a/src/lib/serialization/components.ts b/src/lib/serialization/components.ts index 727904b52..86a00d67d 100644 --- a/src/lib/serialization/components.ts +++ b/src/lib/serialization/components.ts @@ -17,7 +17,12 @@ export interface SerializerComponent { */ readonly priority: number; - supports(item: unknown): item is T; + /** + * Technically this should return `item is T`, but that doesn't play nicely + * with inference, so allow the looser `boolean` return type. + * @param item + */ + supports(item: unknown): boolean; toObject( item: T, diff --git a/src/test/converter.test.ts b/src/test/converter.test.ts index f86a6f7c2..36d5d05fd 100644 --- a/src/test/converter.test.ts +++ b/src/test/converter.test.ts @@ -1,7 +1,7 @@ import { deepStrictEqual as equal, ok } from "assert"; import * as FS from "fs"; import * as Path from "path"; -import { normalizePath, ProjectReflection, resetReflectionID } from ".."; +import { ProjectReflection, resetReflectionID } from ".."; import { getExpandedEntryPointsForPaths } from "../lib/utils"; import { getConverterApp, @@ -76,14 +76,12 @@ describe("Converter", function () { const specs = JSON.parse( FS.readFileSync(specsFile, "utf-8") ); - let data = JSON.stringify( - result && app.serializer.toObject(result), - null, - " " + // Pass data through a parse/stringify to get rid of undefined properties + const data = JSON.parse( + JSON.stringify(app.serializer.toObject(result)) ); - data = data.split(normalizePath(base)).join("%BASE%"); - equal(JSON.parse(data), specs); + equal(data, specs); }); } }); diff --git a/src/test/converter/alias/specs.json b/src/test/converter/alias/specs.json index 2bf65bb0c..e088b4600 100644 --- a/src/test/converter/alias/specs.json +++ b/src/test/converter/alias/specs.json @@ -24,7 +24,7 @@ "fileName": "alias.ts", "line": 14, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/alias/alias.ts#L14" + "url": "typedoc://alias.ts#L14" } ], "typeParameters": [ @@ -76,7 +76,7 @@ "fileName": "alias.ts", "line": 19, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/alias/alias.ts#L19" + "url": "typedoc://alias.ts#L19" } ], "typeParameters": [ @@ -129,7 +129,7 @@ "fileName": "alias.ts", "line": 4, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/alias/alias.ts#L4" + "url": "typedoc://alias.ts#L4" } ], "typeParameters": [ @@ -154,7 +154,7 @@ "fileName": "alias.ts", "line": 4, "character": 34, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/alias/alias.ts#L4" + "url": "typedoc://alias.ts#L4" } ], "signatures": [ @@ -226,7 +226,7 @@ "fileName": "alias.ts", "line": 9, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/alias/alias.ts#L9" + "url": "typedoc://alias.ts#L9" } ], "type": { @@ -260,7 +260,7 @@ "fileName": "alias.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/alias/alias.ts#L4" + "url": "typedoc://alias.ts#L4" } ] } diff --git a/src/test/converter/class/specs-with-lump-categories.json b/src/test/converter/class/specs-with-lump-categories.json index 09e844248..4c3d87441 100644 --- a/src/test/converter/class/specs-with-lump-categories.json +++ b/src/test/converter/class/specs-with-lump-categories.json @@ -49,7 +49,7 @@ "fileName": "access.ts", "line": 34, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L34" + "url": "typedoc://access.ts#L34" } ], "type": { @@ -78,7 +78,7 @@ "fileName": "access.ts", "line": 40, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L40" + "url": "typedoc://access.ts#L40" } ], "type": { @@ -100,7 +100,7 @@ "fileName": "access.ts", "line": 59, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L59" + "url": "typedoc://access.ts#L59" } ], "getSignature": { @@ -128,7 +128,7 @@ "fileName": "access.ts", "line": 46, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L46" + "url": "typedoc://access.ts#L46" } ], "signatures": [ @@ -168,7 +168,7 @@ "fileName": "access.ts", "line": 52, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L52" + "url": "typedoc://access.ts#L52" } ], "signatures": [ @@ -208,7 +208,7 @@ "fileName": "access.ts", "line": 54, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L54" + "url": "typedoc://access.ts#L54" } ], "signatures": [ @@ -254,7 +254,7 @@ "fileName": "access.ts", "line": 29, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L29" + "url": "typedoc://access.ts#L29" } ] }, @@ -280,7 +280,7 @@ "fileName": "access.ts", "line": 5, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L5" + "url": "typedoc://access.ts#L5" } ], "type": { @@ -311,7 +311,7 @@ "fileName": "access.ts", "line": 11, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L11" + "url": "typedoc://access.ts#L11" } ], "type": { @@ -333,7 +333,7 @@ "fileName": "access.ts", "line": 17, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L17" + "url": "typedoc://access.ts#L17" } ], "signatures": [ @@ -373,7 +373,7 @@ "fileName": "access.ts", "line": 23, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L23" + "url": "typedoc://access.ts#L23" } ], "signatures": [ @@ -428,7 +428,7 @@ "fileName": "access.ts", "line": 5, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L5" + "url": "typedoc://access.ts#L5" } ] }, @@ -457,7 +457,7 @@ "fileName": "class.ts", "line": 108, "character": 20, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L108" + "url": "typedoc://class.ts#L108" } ], "signatures": [ @@ -496,19 +496,19 @@ "fileName": "class.ts", "line": 61, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L61" + "url": "typedoc://class.ts#L61" }, { "fileName": "class.ts", "line": 97, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L97" + "url": "typedoc://class.ts#L97" }, { "fileName": "class.ts", "line": 104, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L104" + "url": "typedoc://class.ts#L104" } ] }, @@ -555,7 +555,7 @@ "fileName": "class.ts", "line": 126, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L126" + "url": "typedoc://class.ts#L126" } ], "signatures": [ @@ -592,7 +592,7 @@ "fileName": "class.ts", "line": 125, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L125" + "url": "typedoc://class.ts#L125" } ] }, @@ -635,7 +635,7 @@ "fileName": "class.ts", "line": 114, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L114" + "url": "typedoc://class.ts#L114" } ], "type": { @@ -655,7 +655,7 @@ "fileName": "class.ts", "line": 115, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L115" + "url": "typedoc://class.ts#L115" } ], "type": { @@ -675,7 +675,7 @@ "fileName": "class.ts", "line": 116, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L116" + "url": "typedoc://class.ts#L116" } ], "type": { @@ -695,7 +695,7 @@ "fileName": "class.ts", "line": 117, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L117" + "url": "typedoc://class.ts#L117" } ], "type": { @@ -727,7 +727,7 @@ "fileName": "class.ts", "line": 113, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L113" + "url": "typedoc://class.ts#L113" } ] }, @@ -774,7 +774,7 @@ "fileName": "class.ts", "line": 86, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L86" + "url": "typedoc://class.ts#L86" } ], "type": { @@ -796,7 +796,7 @@ "fileName": "class.ts", "line": 88, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L88" + "url": "typedoc://class.ts#L88" } ], "signatures": [ @@ -839,7 +839,7 @@ "fileName": "class.ts", "line": 85, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L85" + "url": "typedoc://class.ts#L85" } ], "extendedBy": [ @@ -899,7 +899,7 @@ "fileName": "class.ts", "line": 92, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L92" + "url": "typedoc://class.ts#L92" } ], "type": { @@ -925,7 +925,7 @@ "fileName": "class.ts", "line": 94, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L94" + "url": "typedoc://class.ts#L94" } ], "signatures": [ @@ -978,7 +978,7 @@ "fileName": "class.ts", "line": 91, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L91" + "url": "typedoc://class.ts#L91" } ], "extendedTypes": [ @@ -1032,7 +1032,7 @@ "fileName": "class.ts", "line": 27, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L27" + "url": "typedoc://class.ts#L27" } ], "signatures": [ @@ -1079,7 +1079,7 @@ "fileName": "class.ts", "line": 17, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L17" + "url": "typedoc://class.ts#L17" } ], "type": { @@ -1111,7 +1111,7 @@ "fileName": "class.ts", "line": 12, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L12" + "url": "typedoc://class.ts#L12" } ], "type": { @@ -1140,7 +1140,7 @@ "fileName": "class.ts", "line": 22, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L22" + "url": "typedoc://class.ts#L22" } ], "type": { @@ -1160,7 +1160,7 @@ "fileName": "class.ts", "line": 58, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L58" + "url": "typedoc://class.ts#L58" } ], "signatures": [ @@ -1198,7 +1198,7 @@ "fileName": "class.ts", "line": 48, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L48" + "url": "typedoc://class.ts#L48" } ], "signatures": [ @@ -1236,7 +1236,7 @@ "fileName": "class.ts", "line": 41, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L41" + "url": "typedoc://class.ts#L41" } ], "signatures": [ @@ -1274,7 +1274,7 @@ "fileName": "class.ts", "line": 34, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L34" + "url": "typedoc://class.ts#L34" } ], "signatures": [ @@ -1312,7 +1312,7 @@ "fileName": "class.ts", "line": 53, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L53" + "url": "typedoc://class.ts#L53" } ], "signatures": [ @@ -1397,7 +1397,7 @@ "fileName": "class.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L8" + "url": "typedoc://class.ts#L8" } ], "extendedBy": [ @@ -1451,7 +1451,7 @@ "fileName": "class.ts", "line": 80, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L80" + "url": "typedoc://class.ts#L80" } ], "signatures": [ @@ -1578,7 +1578,7 @@ "fileName": "class.ts", "line": 80, "character": 47, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L80" + "url": "typedoc://class.ts#L80" } ], "type": { @@ -1599,7 +1599,7 @@ "fileName": "class.ts", "line": 80, "character": 66, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L80" + "url": "typedoc://class.ts#L80" } ], "type": { @@ -1628,7 +1628,7 @@ "fileName": "class.ts", "line": 12, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L12" + "url": "typedoc://class.ts#L12" } ], "type": { @@ -1662,7 +1662,7 @@ "fileName": "class.ts", "line": 22, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L22" + "url": "typedoc://class.ts#L22" } ], "type": { @@ -1687,7 +1687,7 @@ "fileName": "class.ts", "line": 58, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L58" + "url": "typedoc://class.ts#L58" } ], "signatures": [ @@ -1733,7 +1733,7 @@ "fileName": "class.ts", "line": 101, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L101" + "url": "typedoc://class.ts#L101" } ], "signatures": [ @@ -1771,7 +1771,7 @@ "fileName": "class.ts", "line": 70, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L70" + "url": "typedoc://class.ts#L70" } ], "signatures": [ @@ -1819,7 +1819,7 @@ "fileName": "class.ts", "line": 65, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L65" + "url": "typedoc://class.ts#L65" } ], "signatures": [ @@ -1867,7 +1867,7 @@ "fileName": "class.ts", "line": 53, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L53" + "url": "typedoc://class.ts#L53" } ], "signatures": [ @@ -1935,19 +1935,19 @@ "fileName": "class.ts", "line": 61, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L61" + "url": "typedoc://class.ts#L61" }, { "fileName": "class.ts", "line": 97, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L97" + "url": "typedoc://class.ts#L97" }, { "fileName": "class.ts", "line": 104, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L104" + "url": "typedoc://class.ts#L104" } ], "extendedTypes": [ @@ -2007,7 +2007,7 @@ "fileName": "class.ts", "line": 122, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L122" + "url": "typedoc://class.ts#L122" } ], "type": { @@ -2036,7 +2036,7 @@ "fileName": "class.ts", "line": 120, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L120" + "url": "typedoc://class.ts#L120" } ] }, @@ -2051,7 +2051,7 @@ "fileName": "class.ts", "line": 130, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L130" + "url": "typedoc://class.ts#L130" } ], "type": { @@ -2067,7 +2067,7 @@ "fileName": "class.ts", "line": 130, "character": 25, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L130" + "url": "typedoc://class.ts#L130" } ], "signatures": [ @@ -2121,7 +2121,7 @@ "fileName": "class.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L8" + "url": "typedoc://class.ts#L8" } ] }, @@ -2158,7 +2158,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "signatures": [ @@ -2248,7 +2248,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 61, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2269,7 +2269,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2290,7 +2290,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 41, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2320,7 +2320,7 @@ "fileName": "constructor-properties.ts", "line": 4, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L4" + "url": "typedoc://constructor-properties.ts#L4" } ], "extendedBy": [ @@ -2357,7 +2357,7 @@ "fileName": "constructor-properties.ts", "line": 23, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L23" + "url": "typedoc://constructor-properties.ts#L23" } ], "signatures": [ @@ -2476,7 +2476,7 @@ "fileName": "constructor-properties.ts", "line": 27, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L27" + "url": "typedoc://constructor-properties.ts#L27" } ], "type": { @@ -2502,7 +2502,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2528,7 +2528,7 @@ "fileName": "constructor-properties.ts", "line": 25, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L25" + "url": "typedoc://constructor-properties.ts#L25" } ], "type": { @@ -2554,7 +2554,7 @@ "fileName": "constructor-properties.ts", "line": 26, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L26" + "url": "typedoc://constructor-properties.ts#L26" } ], "type": { @@ -2585,7 +2585,7 @@ "fileName": "constructor-properties.ts", "line": 16, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L16" + "url": "typedoc://constructor-properties.ts#L16" } ], "extendedTypes": [ @@ -2611,7 +2611,7 @@ "fileName": "constructor-properties.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L4" + "url": "typedoc://constructor-properties.ts#L4" } ] }, @@ -2669,7 +2669,7 @@ "fileName": "decorators.ts", "line": 13, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L13" + "url": "typedoc://decorators.ts#L13" } ], "signatures": [ @@ -2714,7 +2714,7 @@ "fileName": "decorators.ts", "line": 7, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L7" + "url": "typedoc://decorators.ts#L7" } ] }, @@ -2729,7 +2729,7 @@ "fileName": "decorators.ts", "line": 19, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L19" + "url": "typedoc://decorators.ts#L19" } ], "signatures": [ @@ -2819,7 +2819,7 @@ "fileName": "decorators.ts", "line": 48, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L48" + "url": "typedoc://decorators.ts#L48" } ], "signatures": [ @@ -2880,7 +2880,7 @@ "fileName": "decorators.ts", "line": 49, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L49" + "url": "typedoc://decorators.ts#L49" } ], "type": { @@ -2902,7 +2902,7 @@ "fileName": "decorators.ts", "line": 48, "character": 46, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L48" + "url": "typedoc://decorators.ts#L48" } ] } @@ -2929,7 +2929,7 @@ "fileName": "decorators.ts", "line": 32, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L32" + "url": "typedoc://decorators.ts#L32" } ], "signatures": [ @@ -2999,7 +2999,7 @@ "fileName": "decorators.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L4" + "url": "typedoc://decorators.ts#L4" } ] }, @@ -3059,7 +3059,7 @@ "fileName": "events.ts", "line": 6, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events.ts#L6" + "url": "typedoc://events.ts#L6" } ], "type": { @@ -3088,7 +3088,7 @@ "fileName": "events.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events.ts#L1" + "url": "typedoc://events.ts#L1" } ] } @@ -3106,7 +3106,7 @@ "fileName": "events.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events.ts#L1" + "url": "typedoc://events.ts#L1" } ] }, @@ -3154,25 +3154,25 @@ "fileName": "events-overloads.ts", "line": 14, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L14" + "url": "typedoc://events-overloads.ts#L14" }, { "fileName": "events-overloads.ts", "line": 23, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L23" + "url": "typedoc://events-overloads.ts#L23" }, { "fileName": "events-overloads.ts", "line": 32, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L32" + "url": "typedoc://events-overloads.ts#L32" }, { "fileName": "events-overloads.ts", "line": 41, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L41" + "url": "typedoc://events-overloads.ts#L41" } ], "signatures": [ @@ -3237,7 +3237,7 @@ "fileName": "events-overloads.ts", "line": 14, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L14" + "url": "typedoc://events-overloads.ts#L14" } ], "signatures": [ @@ -3336,7 +3336,7 @@ "fileName": "events-overloads.ts", "line": 23, "character": 32, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L23" + "url": "typedoc://events-overloads.ts#L23" } ], "signatures": [ @@ -3435,7 +3435,7 @@ "fileName": "events-overloads.ts", "line": 32, "character": 35, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L32" + "url": "typedoc://events-overloads.ts#L32" } ], "signatures": [ @@ -3534,7 +3534,7 @@ "fileName": "events-overloads.ts", "line": 41, "character": 35, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L41" + "url": "typedoc://events-overloads.ts#L41" } ], "signatures": [ @@ -3588,7 +3588,7 @@ "fileName": "events-overloads.ts", "line": 6, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L6" + "url": "typedoc://events-overloads.ts#L6" } ] } @@ -3606,7 +3606,7 @@ "fileName": "events-overloads.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L6" + "url": "typedoc://events-overloads.ts#L6" } ] }, @@ -3643,7 +3643,7 @@ "fileName": "generic-class.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L20" + "url": "typedoc://generic-class.ts#L20" } ], "signatures": [ @@ -3728,7 +3728,7 @@ "fileName": "generic-class.ts", "line": 9, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L9" + "url": "typedoc://generic-class.ts#L9" } ], "type": { @@ -3758,7 +3758,7 @@ "fileName": "generic-class.ts", "line": 14, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L14" + "url": "typedoc://generic-class.ts#L14" } ], "type": { @@ -3781,7 +3781,7 @@ "fileName": "generic-class.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L28" + "url": "typedoc://generic-class.ts#L28" } ], "signatures": [ @@ -3845,7 +3845,7 @@ "fileName": "generic-class.ts", "line": 5, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L5" + "url": "typedoc://generic-class.ts#L5" } ], "typeParameters": [ @@ -3899,7 +3899,7 @@ "fileName": "generic-class.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L20" + "url": "typedoc://generic-class.ts#L20" } ], "signatures": [ @@ -3977,7 +3977,7 @@ "fileName": "generic-class.ts", "line": 9, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L9" + "url": "typedoc://generic-class.ts#L9" } ], "type": { @@ -4011,7 +4011,7 @@ "fileName": "generic-class.ts", "line": 14, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L14" + "url": "typedoc://generic-class.ts#L14" } ], "type": { @@ -4038,7 +4038,7 @@ "fileName": "generic-class.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L28" + "url": "typedoc://generic-class.ts#L28" } ], "signatures": [ @@ -4111,7 +4111,7 @@ "fileName": "generic-class.ts", "line": 36, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L36" + "url": "typedoc://generic-class.ts#L36" } ], "extendedTypes": [ @@ -4143,7 +4143,7 @@ "fileName": "generic-class.ts", "line": 5, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L5" + "url": "typedoc://generic-class.ts#L5" } ] }, @@ -4195,7 +4195,7 @@ "fileName": "getter-setter.ts", "line": 2, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L2" + "url": "typedoc://getter-setter.ts#L2" } ], "type": { @@ -4214,13 +4214,13 @@ "fileName": "getter-setter.ts", "line": 4, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L4" + "url": "typedoc://getter-setter.ts#L4" }, { "fileName": "getter-setter.ts", "line": 7, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L7" + "url": "typedoc://getter-setter.ts#L7" } ], "getSignature": { @@ -4270,7 +4270,7 @@ "fileName": "getter-setter.ts", "line": 11, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L11" + "url": "typedoc://getter-setter.ts#L11" } ], "getSignature": { @@ -4296,7 +4296,7 @@ "fileName": "getter-setter.ts", "line": 15, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L15" + "url": "typedoc://getter-setter.ts#L15" } ], "setSignature": { @@ -4352,7 +4352,7 @@ "fileName": "getter-setter.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L1" + "url": "typedoc://getter-setter.ts#L1" } ] } @@ -4370,7 +4370,7 @@ "fileName": "getter-setter.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L1" + "url": "typedoc://getter-setter.ts#L1" } ] }, @@ -4430,7 +4430,7 @@ "fileName": "this.ts", "line": 10, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/this.ts#L10" + "url": "typedoc://this.ts#L10" } ], "signatures": [ @@ -4476,7 +4476,7 @@ "fileName": "this.ts", "line": 6, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/this.ts#L6" + "url": "typedoc://this.ts#L6" } ] } @@ -4494,7 +4494,7 @@ "fileName": "this.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/this.ts#L6" + "url": "typedoc://this.ts#L6" } ] }, @@ -4569,7 +4569,7 @@ "fileName": "type-operator.ts", "line": 14, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L14" + "url": "typedoc://type-operator.ts#L14" } ], "type": { @@ -4598,7 +4598,7 @@ "fileName": "type-operator.ts", "line": 13, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L13" + "url": "typedoc://type-operator.ts#L13" } ], "typeParameters": [ @@ -4684,7 +4684,7 @@ "fileName": "type-operator.ts", "line": 9, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L9" + "url": "typedoc://type-operator.ts#L9" } ], "type": { @@ -4703,7 +4703,7 @@ "fileName": "type-operator.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L10" + "url": "typedoc://type-operator.ts#L10" } ], "type": { @@ -4732,7 +4732,7 @@ "fileName": "type-operator.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L8" + "url": "typedoc://type-operator.ts#L8" } ] } @@ -4751,7 +4751,7 @@ "fileName": "type-operator.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L8" + "url": "typedoc://type-operator.ts#L8" } ] } diff --git a/src/test/converter/class/specs.json b/src/test/converter/class/specs.json index f1b092a15..b7e1e123a 100644 --- a/src/test/converter/class/specs.json +++ b/src/test/converter/class/specs.json @@ -49,7 +49,7 @@ "fileName": "access.ts", "line": 34, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L34" + "url": "typedoc://access.ts#L34" } ], "type": { @@ -78,7 +78,7 @@ "fileName": "access.ts", "line": 40, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L40" + "url": "typedoc://access.ts#L40" } ], "type": { @@ -100,7 +100,7 @@ "fileName": "access.ts", "line": 59, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L59" + "url": "typedoc://access.ts#L59" } ], "getSignature": { @@ -128,7 +128,7 @@ "fileName": "access.ts", "line": 46, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L46" + "url": "typedoc://access.ts#L46" } ], "signatures": [ @@ -168,7 +168,7 @@ "fileName": "access.ts", "line": 52, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L52" + "url": "typedoc://access.ts#L52" } ], "signatures": [ @@ -208,7 +208,7 @@ "fileName": "access.ts", "line": 54, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L54" + "url": "typedoc://access.ts#L54" } ], "signatures": [ @@ -254,7 +254,7 @@ "fileName": "access.ts", "line": 29, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L29" + "url": "typedoc://access.ts#L29" } ] }, @@ -280,7 +280,7 @@ "fileName": "access.ts", "line": 5, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L5" + "url": "typedoc://access.ts#L5" } ], "type": { @@ -311,7 +311,7 @@ "fileName": "access.ts", "line": 11, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L11" + "url": "typedoc://access.ts#L11" } ], "type": { @@ -333,7 +333,7 @@ "fileName": "access.ts", "line": 17, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L17" + "url": "typedoc://access.ts#L17" } ], "signatures": [ @@ -373,7 +373,7 @@ "fileName": "access.ts", "line": 23, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L23" + "url": "typedoc://access.ts#L23" } ], "signatures": [ @@ -428,7 +428,7 @@ "fileName": "access.ts", "line": 5, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/access.ts#L5" + "url": "typedoc://access.ts#L5" } ] }, @@ -457,7 +457,7 @@ "fileName": "class.ts", "line": 108, "character": 20, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L108" + "url": "typedoc://class.ts#L108" } ], "signatures": [ @@ -496,19 +496,19 @@ "fileName": "class.ts", "line": 61, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L61" + "url": "typedoc://class.ts#L61" }, { "fileName": "class.ts", "line": 97, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L97" + "url": "typedoc://class.ts#L97" }, { "fileName": "class.ts", "line": 104, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L104" + "url": "typedoc://class.ts#L104" } ] }, @@ -555,7 +555,7 @@ "fileName": "class.ts", "line": 126, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L126" + "url": "typedoc://class.ts#L126" } ], "signatures": [ @@ -592,7 +592,7 @@ "fileName": "class.ts", "line": 125, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L125" + "url": "typedoc://class.ts#L125" } ] }, @@ -635,7 +635,7 @@ "fileName": "class.ts", "line": 114, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L114" + "url": "typedoc://class.ts#L114" } ], "type": { @@ -655,7 +655,7 @@ "fileName": "class.ts", "line": 115, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L115" + "url": "typedoc://class.ts#L115" } ], "type": { @@ -675,7 +675,7 @@ "fileName": "class.ts", "line": 116, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L116" + "url": "typedoc://class.ts#L116" } ], "type": { @@ -695,7 +695,7 @@ "fileName": "class.ts", "line": 117, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L117" + "url": "typedoc://class.ts#L117" } ], "type": { @@ -727,7 +727,7 @@ "fileName": "class.ts", "line": 113, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L113" + "url": "typedoc://class.ts#L113" } ] }, @@ -774,7 +774,7 @@ "fileName": "class.ts", "line": 86, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L86" + "url": "typedoc://class.ts#L86" } ], "type": { @@ -796,7 +796,7 @@ "fileName": "class.ts", "line": 88, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L88" + "url": "typedoc://class.ts#L88" } ], "signatures": [ @@ -839,7 +839,7 @@ "fileName": "class.ts", "line": 85, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L85" + "url": "typedoc://class.ts#L85" } ], "extendedBy": [ @@ -899,7 +899,7 @@ "fileName": "class.ts", "line": 92, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L92" + "url": "typedoc://class.ts#L92" } ], "type": { @@ -925,7 +925,7 @@ "fileName": "class.ts", "line": 94, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L94" + "url": "typedoc://class.ts#L94" } ], "signatures": [ @@ -978,7 +978,7 @@ "fileName": "class.ts", "line": 91, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L91" + "url": "typedoc://class.ts#L91" } ], "extendedTypes": [ @@ -1032,7 +1032,7 @@ "fileName": "class.ts", "line": 27, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L27" + "url": "typedoc://class.ts#L27" } ], "signatures": [ @@ -1079,7 +1079,7 @@ "fileName": "class.ts", "line": 17, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L17" + "url": "typedoc://class.ts#L17" } ], "type": { @@ -1111,7 +1111,7 @@ "fileName": "class.ts", "line": 12, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L12" + "url": "typedoc://class.ts#L12" } ], "type": { @@ -1140,7 +1140,7 @@ "fileName": "class.ts", "line": 22, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L22" + "url": "typedoc://class.ts#L22" } ], "type": { @@ -1160,7 +1160,7 @@ "fileName": "class.ts", "line": 58, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L58" + "url": "typedoc://class.ts#L58" } ], "signatures": [ @@ -1198,7 +1198,7 @@ "fileName": "class.ts", "line": 48, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L48" + "url": "typedoc://class.ts#L48" } ], "signatures": [ @@ -1236,7 +1236,7 @@ "fileName": "class.ts", "line": 41, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L41" + "url": "typedoc://class.ts#L41" } ], "signatures": [ @@ -1274,7 +1274,7 @@ "fileName": "class.ts", "line": 34, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L34" + "url": "typedoc://class.ts#L34" } ], "signatures": [ @@ -1312,7 +1312,7 @@ "fileName": "class.ts", "line": 53, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L53" + "url": "typedoc://class.ts#L53" } ], "signatures": [ @@ -1393,7 +1393,7 @@ "fileName": "class.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L8" + "url": "typedoc://class.ts#L8" } ], "extendedBy": [ @@ -1447,7 +1447,7 @@ "fileName": "class.ts", "line": 80, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L80" + "url": "typedoc://class.ts#L80" } ], "signatures": [ @@ -1574,7 +1574,7 @@ "fileName": "class.ts", "line": 80, "character": 47, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L80" + "url": "typedoc://class.ts#L80" } ], "type": { @@ -1595,7 +1595,7 @@ "fileName": "class.ts", "line": 80, "character": 66, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L80" + "url": "typedoc://class.ts#L80" } ], "type": { @@ -1624,7 +1624,7 @@ "fileName": "class.ts", "line": 12, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L12" + "url": "typedoc://class.ts#L12" } ], "type": { @@ -1658,7 +1658,7 @@ "fileName": "class.ts", "line": 22, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L22" + "url": "typedoc://class.ts#L22" } ], "type": { @@ -1683,7 +1683,7 @@ "fileName": "class.ts", "line": 58, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L58" + "url": "typedoc://class.ts#L58" } ], "signatures": [ @@ -1729,7 +1729,7 @@ "fileName": "class.ts", "line": 101, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L101" + "url": "typedoc://class.ts#L101" } ], "signatures": [ @@ -1767,7 +1767,7 @@ "fileName": "class.ts", "line": 70, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L70" + "url": "typedoc://class.ts#L70" } ], "signatures": [ @@ -1815,7 +1815,7 @@ "fileName": "class.ts", "line": 65, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L65" + "url": "typedoc://class.ts#L65" } ], "signatures": [ @@ -1863,7 +1863,7 @@ "fileName": "class.ts", "line": 53, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L53" + "url": "typedoc://class.ts#L53" } ], "signatures": [ @@ -1931,19 +1931,19 @@ "fileName": "class.ts", "line": 61, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L61" + "url": "typedoc://class.ts#L61" }, { "fileName": "class.ts", "line": 97, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L97" + "url": "typedoc://class.ts#L97" }, { "fileName": "class.ts", "line": 104, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L104" + "url": "typedoc://class.ts#L104" } ], "extendedTypes": [ @@ -2003,7 +2003,7 @@ "fileName": "class.ts", "line": 122, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L122" + "url": "typedoc://class.ts#L122" } ], "type": { @@ -2032,7 +2032,7 @@ "fileName": "class.ts", "line": 120, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L120" + "url": "typedoc://class.ts#L120" } ] }, @@ -2047,7 +2047,7 @@ "fileName": "class.ts", "line": 130, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L130" + "url": "typedoc://class.ts#L130" } ], "type": { @@ -2063,7 +2063,7 @@ "fileName": "class.ts", "line": 130, "character": 25, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L130" + "url": "typedoc://class.ts#L130" } ], "signatures": [ @@ -2117,7 +2117,7 @@ "fileName": "class.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/class.ts#L8" + "url": "typedoc://class.ts#L8" } ] }, @@ -2154,7 +2154,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "signatures": [ @@ -2244,7 +2244,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 61, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2265,7 +2265,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2286,7 +2286,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 41, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2316,7 +2316,7 @@ "fileName": "constructor-properties.ts", "line": 4, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L4" + "url": "typedoc://constructor-properties.ts#L4" } ], "extendedBy": [ @@ -2353,7 +2353,7 @@ "fileName": "constructor-properties.ts", "line": 23, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L23" + "url": "typedoc://constructor-properties.ts#L23" } ], "signatures": [ @@ -2472,7 +2472,7 @@ "fileName": "constructor-properties.ts", "line": 27, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L27" + "url": "typedoc://constructor-properties.ts#L27" } ], "type": { @@ -2498,7 +2498,7 @@ "fileName": "constructor-properties.ts", "line": 10, "character": 23, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L10" + "url": "typedoc://constructor-properties.ts#L10" } ], "type": { @@ -2524,7 +2524,7 @@ "fileName": "constructor-properties.ts", "line": 25, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L25" + "url": "typedoc://constructor-properties.ts#L25" } ], "type": { @@ -2550,7 +2550,7 @@ "fileName": "constructor-properties.ts", "line": 26, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L26" + "url": "typedoc://constructor-properties.ts#L26" } ], "type": { @@ -2581,7 +2581,7 @@ "fileName": "constructor-properties.ts", "line": 16, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L16" + "url": "typedoc://constructor-properties.ts#L16" } ], "extendedTypes": [ @@ -2607,7 +2607,7 @@ "fileName": "constructor-properties.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/constructor-properties.ts#L4" + "url": "typedoc://constructor-properties.ts#L4" } ] }, @@ -2665,7 +2665,7 @@ "fileName": "decorators.ts", "line": 13, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L13" + "url": "typedoc://decorators.ts#L13" } ], "signatures": [ @@ -2710,7 +2710,7 @@ "fileName": "decorators.ts", "line": 7, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L7" + "url": "typedoc://decorators.ts#L7" } ] }, @@ -2725,7 +2725,7 @@ "fileName": "decorators.ts", "line": 19, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L19" + "url": "typedoc://decorators.ts#L19" } ], "signatures": [ @@ -2815,7 +2815,7 @@ "fileName": "decorators.ts", "line": 48, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L48" + "url": "typedoc://decorators.ts#L48" } ], "signatures": [ @@ -2876,7 +2876,7 @@ "fileName": "decorators.ts", "line": 49, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L49" + "url": "typedoc://decorators.ts#L49" } ], "type": { @@ -2898,7 +2898,7 @@ "fileName": "decorators.ts", "line": 48, "character": 46, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L48" + "url": "typedoc://decorators.ts#L48" } ] } @@ -2925,7 +2925,7 @@ "fileName": "decorators.ts", "line": 32, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L32" + "url": "typedoc://decorators.ts#L32" } ], "signatures": [ @@ -2995,7 +2995,7 @@ "fileName": "decorators.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/decorators.ts#L4" + "url": "typedoc://decorators.ts#L4" } ] }, @@ -3055,7 +3055,7 @@ "fileName": "events.ts", "line": 6, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events.ts#L6" + "url": "typedoc://events.ts#L6" } ], "type": { @@ -3084,7 +3084,7 @@ "fileName": "events.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events.ts#L1" + "url": "typedoc://events.ts#L1" } ] } @@ -3102,7 +3102,7 @@ "fileName": "events.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events.ts#L1" + "url": "typedoc://events.ts#L1" } ] }, @@ -3150,25 +3150,25 @@ "fileName": "events-overloads.ts", "line": 14, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L14" + "url": "typedoc://events-overloads.ts#L14" }, { "fileName": "events-overloads.ts", "line": 23, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L23" + "url": "typedoc://events-overloads.ts#L23" }, { "fileName": "events-overloads.ts", "line": 32, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L32" + "url": "typedoc://events-overloads.ts#L32" }, { "fileName": "events-overloads.ts", "line": 41, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L41" + "url": "typedoc://events-overloads.ts#L41" } ], "signatures": [ @@ -3233,7 +3233,7 @@ "fileName": "events-overloads.ts", "line": 14, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L14" + "url": "typedoc://events-overloads.ts#L14" } ], "signatures": [ @@ -3332,7 +3332,7 @@ "fileName": "events-overloads.ts", "line": 23, "character": 32, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L23" + "url": "typedoc://events-overloads.ts#L23" } ], "signatures": [ @@ -3431,7 +3431,7 @@ "fileName": "events-overloads.ts", "line": 32, "character": 35, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L32" + "url": "typedoc://events-overloads.ts#L32" } ], "signatures": [ @@ -3530,7 +3530,7 @@ "fileName": "events-overloads.ts", "line": 41, "character": 35, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L41" + "url": "typedoc://events-overloads.ts#L41" } ], "signatures": [ @@ -3584,7 +3584,7 @@ "fileName": "events-overloads.ts", "line": 6, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L6" + "url": "typedoc://events-overloads.ts#L6" } ] } @@ -3602,7 +3602,7 @@ "fileName": "events-overloads.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/events-overloads.ts#L6" + "url": "typedoc://events-overloads.ts#L6" } ] }, @@ -3639,7 +3639,7 @@ "fileName": "generic-class.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L20" + "url": "typedoc://generic-class.ts#L20" } ], "signatures": [ @@ -3724,7 +3724,7 @@ "fileName": "generic-class.ts", "line": 9, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L9" + "url": "typedoc://generic-class.ts#L9" } ], "type": { @@ -3754,7 +3754,7 @@ "fileName": "generic-class.ts", "line": 14, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L14" + "url": "typedoc://generic-class.ts#L14" } ], "type": { @@ -3777,7 +3777,7 @@ "fileName": "generic-class.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L28" + "url": "typedoc://generic-class.ts#L28" } ], "signatures": [ @@ -3841,7 +3841,7 @@ "fileName": "generic-class.ts", "line": 5, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L5" + "url": "typedoc://generic-class.ts#L5" } ], "typeParameters": [ @@ -3895,7 +3895,7 @@ "fileName": "generic-class.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L20" + "url": "typedoc://generic-class.ts#L20" } ], "signatures": [ @@ -3973,7 +3973,7 @@ "fileName": "generic-class.ts", "line": 9, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L9" + "url": "typedoc://generic-class.ts#L9" } ], "type": { @@ -4007,7 +4007,7 @@ "fileName": "generic-class.ts", "line": 14, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L14" + "url": "typedoc://generic-class.ts#L14" } ], "type": { @@ -4034,7 +4034,7 @@ "fileName": "generic-class.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L28" + "url": "typedoc://generic-class.ts#L28" } ], "signatures": [ @@ -4107,7 +4107,7 @@ "fileName": "generic-class.ts", "line": 36, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L36" + "url": "typedoc://generic-class.ts#L36" } ], "extendedTypes": [ @@ -4139,7 +4139,7 @@ "fileName": "generic-class.ts", "line": 5, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/generic-class.ts#L5" + "url": "typedoc://generic-class.ts#L5" } ] }, @@ -4191,7 +4191,7 @@ "fileName": "getter-setter.ts", "line": 2, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L2" + "url": "typedoc://getter-setter.ts#L2" } ], "type": { @@ -4210,13 +4210,13 @@ "fileName": "getter-setter.ts", "line": 4, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L4" + "url": "typedoc://getter-setter.ts#L4" }, { "fileName": "getter-setter.ts", "line": 7, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L7" + "url": "typedoc://getter-setter.ts#L7" } ], "getSignature": { @@ -4266,7 +4266,7 @@ "fileName": "getter-setter.ts", "line": 11, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L11" + "url": "typedoc://getter-setter.ts#L11" } ], "getSignature": { @@ -4292,7 +4292,7 @@ "fileName": "getter-setter.ts", "line": 15, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L15" + "url": "typedoc://getter-setter.ts#L15" } ], "setSignature": { @@ -4348,7 +4348,7 @@ "fileName": "getter-setter.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L1" + "url": "typedoc://getter-setter.ts#L1" } ] } @@ -4366,7 +4366,7 @@ "fileName": "getter-setter.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/getter-setter.ts#L1" + "url": "typedoc://getter-setter.ts#L1" } ] }, @@ -4426,7 +4426,7 @@ "fileName": "this.ts", "line": 10, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/this.ts#L10" + "url": "typedoc://this.ts#L10" } ], "signatures": [ @@ -4472,7 +4472,7 @@ "fileName": "this.ts", "line": 6, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/this.ts#L6" + "url": "typedoc://this.ts#L6" } ] } @@ -4490,7 +4490,7 @@ "fileName": "this.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/this.ts#L6" + "url": "typedoc://this.ts#L6" } ] }, @@ -4565,7 +4565,7 @@ "fileName": "type-operator.ts", "line": 14, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L14" + "url": "typedoc://type-operator.ts#L14" } ], "type": { @@ -4594,7 +4594,7 @@ "fileName": "type-operator.ts", "line": 13, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L13" + "url": "typedoc://type-operator.ts#L13" } ], "typeParameters": [ @@ -4680,7 +4680,7 @@ "fileName": "type-operator.ts", "line": 9, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L9" + "url": "typedoc://type-operator.ts#L9" } ], "type": { @@ -4699,7 +4699,7 @@ "fileName": "type-operator.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L10" + "url": "typedoc://type-operator.ts#L10" } ], "type": { @@ -4728,7 +4728,7 @@ "fileName": "type-operator.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L8" + "url": "typedoc://type-operator.ts#L8" } ] } @@ -4747,7 +4747,7 @@ "fileName": "type-operator.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/class/type-operator.ts#L8" + "url": "typedoc://type-operator.ts#L8" } ] } diff --git a/src/test/converter/comment/specs.json b/src/test/converter/comment/specs.json index ac3c2e683..a3ee5fc33 100644 --- a/src/test/converter/comment/specs.json +++ b/src/test/converter/comment/specs.json @@ -85,7 +85,7 @@ "fileName": "comment.ts", "line": 37, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment.ts#L37" + "url": "typedoc://comment.ts#L37" } ], "type": { @@ -171,7 +171,7 @@ "fileName": "comment.ts", "line": 33, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment.ts#L33" + "url": "typedoc://comment.ts#L33" } ] } @@ -189,7 +189,7 @@ "fileName": "comment.ts", "line": 5, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment.ts#L5" + "url": "typedoc://comment.ts#L5" } ] }, @@ -227,7 +227,7 @@ "fileName": "comment2.ts", "line": 8, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment2.ts#L8" + "url": "typedoc://comment2.ts#L8" } ], "signatures": [ @@ -282,7 +282,7 @@ "fileName": "comment2.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment2.ts#L8" + "url": "typedoc://comment2.ts#L8" } ] }, @@ -320,7 +320,7 @@ "fileName": "comment3.ts", "line": 8, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment3.ts#L8" + "url": "typedoc://comment3.ts#L8" } ], "signatures": [ @@ -375,7 +375,7 @@ "fileName": "comment3.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment3.ts#L8" + "url": "typedoc://comment3.ts#L8" } ] }, @@ -409,7 +409,7 @@ "fileName": "comment4.ts", "line": 11, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment4.ts#L11" + "url": "typedoc://comment4.ts#L11" } ], "signatures": [ @@ -464,7 +464,7 @@ "fileName": "comment4.ts", "line": 11, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/comment/comment4.ts#L11" + "url": "typedoc://comment4.ts#L11" } ] } diff --git a/src/test/converter/declaration/specs.json b/src/test/converter/declaration/specs.json index ffe21ba1d..14f233239 100644 --- a/src/test/converter/declaration/specs.json +++ b/src/test/converter/declaration/specs.json @@ -50,7 +50,7 @@ "fileName": "declaration.d.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/declaration.d.ts#L2" + "url": "typedoc://declaration.d.ts#L2" } ], "type": { @@ -78,7 +78,7 @@ "fileName": "declaration.d.ts", "line": 1, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/declaration.d.ts#L1" + "url": "typedoc://declaration.d.ts#L1" } ] }, @@ -95,7 +95,7 @@ "fileName": "declaration.d.ts", "line": 5, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/declaration.d.ts#L5" + "url": "typedoc://declaration.d.ts#L5" } ], "type": { @@ -123,7 +123,7 @@ "fileName": "declaration.d.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/declaration.d.ts#L1" + "url": "typedoc://declaration.d.ts#L1" } ] }, @@ -176,7 +176,7 @@ "fileName": "export-declaration.d.ts", "line": 1, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/export-declaration.d.ts#L1" + "url": "typedoc://export-declaration.d.ts#L1" } ] }, @@ -222,7 +222,7 @@ "fileName": "export-declaration.d.ts", "line": 3, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/export-declaration.d.ts#L3" + "url": "typedoc://export-declaration.d.ts#L3" } ] } @@ -241,7 +241,7 @@ "fileName": "export-declaration.d.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/export-declaration.d.ts#L1" + "url": "typedoc://export-declaration.d.ts#L1" } ] }, @@ -265,7 +265,7 @@ "fileName": "external.d.ts", "line": 3, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/external.d.ts#L3" + "url": "typedoc://external.d.ts#L3" } ], "type": { @@ -289,7 +289,7 @@ "fileName": "external.d.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/declaration/external.d.ts#L1" + "url": "typedoc://external.d.ts#L1" } ] } diff --git a/src/test/converter/enum/specs.json b/src/test/converter/enum/specs.json index bedf333e7..0492e2703 100644 --- a/src/test/converter/enum/specs.json +++ b/src/test/converter/enum/specs.json @@ -39,7 +39,7 @@ "fileName": "enum.ts", "line": 48, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L48" + "url": "typedoc://enum.ts#L48" } ], "type": { @@ -58,7 +58,7 @@ "fileName": "enum.ts", "line": 53, "character": 20, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L53" + "url": "typedoc://enum.ts#L53" } ], "signatures": [ @@ -103,13 +103,13 @@ "fileName": "enum.ts", "line": 24, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L24" + "url": "typedoc://enum.ts#L24" }, { "fileName": "enum.ts", "line": 44, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L44" + "url": "typedoc://enum.ts#L44" } ] }, @@ -141,7 +141,7 @@ "fileName": "enum.ts", "line": 60, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L60" + "url": "typedoc://enum.ts#L60" } ], "type": { @@ -160,7 +160,7 @@ "fileName": "enum.ts", "line": 61, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L61" + "url": "typedoc://enum.ts#L61" } ], "type": { @@ -183,7 +183,7 @@ "fileName": "enum.ts", "line": 59, "character": 18, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L59" + "url": "typedoc://enum.ts#L59" } ] }, @@ -221,7 +221,7 @@ "fileName": "enum.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L28" + "url": "typedoc://enum.ts#L28" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "enum.ts", "line": 33, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L33" + "url": "typedoc://enum.ts#L33" } ], "type": { @@ -275,7 +275,7 @@ "fileName": "enum.ts", "line": 38, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L38" + "url": "typedoc://enum.ts#L38" } ], "type": { @@ -299,13 +299,13 @@ "fileName": "enum.ts", "line": 24, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L24" + "url": "typedoc://enum.ts#L24" }, { "fileName": "enum.ts", "line": 44, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L44" + "url": "typedoc://enum.ts#L44" } ] }, @@ -343,7 +343,7 @@ "fileName": "enum.ts", "line": 8, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L8" + "url": "typedoc://enum.ts#L8" } ], "type": { @@ -370,7 +370,7 @@ "fileName": "enum.ts", "line": 13, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L13" + "url": "typedoc://enum.ts#L13" } ], "type": { @@ -397,7 +397,7 @@ "fileName": "enum.ts", "line": 18, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L18" + "url": "typedoc://enum.ts#L18" } ], "type": { @@ -421,7 +421,7 @@ "fileName": "enum.ts", "line": 4, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L4" + "url": "typedoc://enum.ts#L4" } ] } @@ -447,7 +447,7 @@ "fileName": "enum.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L4" + "url": "typedoc://enum.ts#L4" } ] } diff --git a/src/test/converter/enum/specs.nodoc.json b/src/test/converter/enum/specs.nodoc.json index bedf333e7..0492e2703 100644 --- a/src/test/converter/enum/specs.nodoc.json +++ b/src/test/converter/enum/specs.nodoc.json @@ -39,7 +39,7 @@ "fileName": "enum.ts", "line": 48, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L48" + "url": "typedoc://enum.ts#L48" } ], "type": { @@ -58,7 +58,7 @@ "fileName": "enum.ts", "line": 53, "character": 20, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L53" + "url": "typedoc://enum.ts#L53" } ], "signatures": [ @@ -103,13 +103,13 @@ "fileName": "enum.ts", "line": 24, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L24" + "url": "typedoc://enum.ts#L24" }, { "fileName": "enum.ts", "line": 44, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L44" + "url": "typedoc://enum.ts#L44" } ] }, @@ -141,7 +141,7 @@ "fileName": "enum.ts", "line": 60, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L60" + "url": "typedoc://enum.ts#L60" } ], "type": { @@ -160,7 +160,7 @@ "fileName": "enum.ts", "line": 61, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L61" + "url": "typedoc://enum.ts#L61" } ], "type": { @@ -183,7 +183,7 @@ "fileName": "enum.ts", "line": 59, "character": 18, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L59" + "url": "typedoc://enum.ts#L59" } ] }, @@ -221,7 +221,7 @@ "fileName": "enum.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L28" + "url": "typedoc://enum.ts#L28" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "enum.ts", "line": 33, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L33" + "url": "typedoc://enum.ts#L33" } ], "type": { @@ -275,7 +275,7 @@ "fileName": "enum.ts", "line": 38, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L38" + "url": "typedoc://enum.ts#L38" } ], "type": { @@ -299,13 +299,13 @@ "fileName": "enum.ts", "line": 24, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L24" + "url": "typedoc://enum.ts#L24" }, { "fileName": "enum.ts", "line": 44, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L44" + "url": "typedoc://enum.ts#L44" } ] }, @@ -343,7 +343,7 @@ "fileName": "enum.ts", "line": 8, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L8" + "url": "typedoc://enum.ts#L8" } ], "type": { @@ -370,7 +370,7 @@ "fileName": "enum.ts", "line": 13, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L13" + "url": "typedoc://enum.ts#L13" } ], "type": { @@ -397,7 +397,7 @@ "fileName": "enum.ts", "line": 18, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L18" + "url": "typedoc://enum.ts#L18" } ], "type": { @@ -421,7 +421,7 @@ "fileName": "enum.ts", "line": 4, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L4" + "url": "typedoc://enum.ts#L4" } ] } @@ -447,7 +447,7 @@ "fileName": "enum.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/enum/enum.ts#L4" + "url": "typedoc://enum.ts#L4" } ] } diff --git a/src/test/converter/exports/specs.json b/src/test/converter/exports/specs.json index 498c05251..7efe65460 100644 --- a/src/test/converter/exports/specs.json +++ b/src/test/converter/exports/specs.json @@ -22,7 +22,7 @@ "fileName": "mod.ts", "line": 42, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L42" + "url": "typedoc://mod.ts#L42" } ], "target": 35 @@ -38,7 +38,7 @@ "fileName": "export.ts", "line": 5, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L5" + "url": "typedoc://export.ts#L5" } ], "target": 29 @@ -62,7 +62,7 @@ "fileName": "export.ts", "line": 14, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L14" + "url": "typedoc://export.ts#L14" } ], "target": 29 @@ -78,7 +78,7 @@ "fileName": "export.ts", "line": 5, "character": 27, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L5" + "url": "typedoc://export.ts#L5" } ], "target": 36 @@ -94,7 +94,7 @@ "fileName": "mod.ts", "line": 40, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L40" + "url": "typedoc://mod.ts#L40" } ], "target": 34 @@ -110,7 +110,7 @@ "fileName": "mod.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L8" + "url": "typedoc://mod.ts#L8" } ], "target": 30 @@ -134,7 +134,7 @@ "fileName": "mod.ts", "line": 13, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L13" + "url": "typedoc://mod.ts#L13" } ], "target": 31 @@ -150,7 +150,7 @@ "fileName": "export.ts", "line": 5, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L5" + "url": "typedoc://export.ts#L5" } ], "target": 30 @@ -173,7 +173,7 @@ "fileName": "export.ts", "line": 31, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L31" + "url": "typedoc://export.ts#L31" } ], "type": { @@ -195,7 +195,7 @@ "fileName": "export.ts", "line": 28, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L28" + "url": "typedoc://export.ts#L28" } ], "type": { @@ -217,7 +217,7 @@ "fileName": "export.ts", "line": 26, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L26" + "url": "typedoc://export.ts#L26" } ], "type": { @@ -240,7 +240,7 @@ "fileName": "export.ts", "line": 29, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L29" + "url": "typedoc://export.ts#L29" } ], "type": { @@ -263,7 +263,7 @@ "fileName": "export.ts", "line": 27, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L27" + "url": "typedoc://export.ts#L27" } ], "type": { @@ -296,7 +296,7 @@ "fileName": "export.ts", "line": 25, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L25" + "url": "typedoc://export.ts#L25" } ] }, @@ -311,7 +311,7 @@ "fileName": "export.ts", "line": 7, "character": 9, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L7" + "url": "typedoc://export.ts#L7" } ], "signatures": [ @@ -363,7 +363,7 @@ "fileName": "export.ts", "line": 18, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L18" + "url": "typedoc://export.ts#L18" } ], "signatures": [ @@ -427,7 +427,7 @@ "fileName": "export.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L1" + "url": "typedoc://export.ts#L1" } ] }, @@ -449,7 +449,7 @@ "fileName": "export-assignment.ts", "line": 1, "character": 9, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-assignment.ts#L1" + "url": "typedoc://export-assignment.ts#L1" } ], "signatures": [ @@ -504,7 +504,7 @@ "fileName": "export-assignment.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-assignment.ts#L1" + "url": "typedoc://export-assignment.ts#L1" } ] }, @@ -528,7 +528,7 @@ "fileName": "export-default.ts", "line": 1, "character": 6, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-default.ts#L1" + "url": "typedoc://export-default.ts#L1" } ], "type": { @@ -551,7 +551,7 @@ "fileName": "export-default.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-default.ts#L1" + "url": "typedoc://export-default.ts#L1" } ] }, @@ -575,7 +575,7 @@ "fileName": "export-with-local.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-with-local.ts#L1" + "url": "typedoc://export-with-local.ts#L1" } ], "type": { @@ -595,7 +595,7 @@ "fileName": "export-with-local.ts", "line": 6, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-with-local.ts#L6" + "url": "typedoc://export-with-local.ts#L6" } ], "signatures": [ @@ -656,7 +656,7 @@ "fileName": "export-with-local.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export-with-local.ts#L1" + "url": "typedoc://export-with-local.ts#L1" } ] }, @@ -678,7 +678,7 @@ "fileName": "mod.ts", "line": 40, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L40" + "url": "typedoc://mod.ts#L40" } ], "target": 29 @@ -702,7 +702,7 @@ "fileName": "mod.ts", "line": 13, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L13" + "url": "typedoc://mod.ts#L13" } ], "target": 30 @@ -726,7 +726,7 @@ "fileName": "mod.ts", "line": 18, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L18" + "url": "typedoc://mod.ts#L18" } ], "target": 30 @@ -742,7 +742,7 @@ "fileName": "mod.ts", "line": 42, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L42" + "url": "typedoc://mod.ts#L42" } ], "type": { @@ -771,7 +771,7 @@ "fileName": "mod.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L8" + "url": "typedoc://mod.ts#L8" } ], "type": { @@ -791,7 +791,7 @@ "fileName": "mod.ts", "line": 23, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L23" + "url": "typedoc://mod.ts#L23" } ], "signatures": [ @@ -850,7 +850,7 @@ "fileName": "mod.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L8" + "url": "typedoc://mod.ts#L8" } ] }, @@ -893,7 +893,7 @@ "fileName": "no-doc-members.ts", "line": 6, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/no-doc-members.ts#L6" + "url": "typedoc://no-doc-members.ts#L6" } ], "type": { @@ -916,7 +916,7 @@ "fileName": "no-doc-members.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/no-doc-members.ts#L6" + "url": "typedoc://no-doc-members.ts#L6" } ] } diff --git a/src/test/converter/exports/specs.nodoc.json b/src/test/converter/exports/specs.nodoc.json index 98f7cdeae..ad6c450ef 100644 --- a/src/test/converter/exports/specs.nodoc.json +++ b/src/test/converter/exports/specs.nodoc.json @@ -30,7 +30,7 @@ "fileName": "export.ts", "line": 14, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L14" + "url": "typedoc://export.ts#L14" } ], "target": 29 @@ -54,7 +54,7 @@ "fileName": "mod.ts", "line": 13, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L13" + "url": "typedoc://mod.ts#L13" } ], "target": 31 @@ -74,7 +74,7 @@ "fileName": "export.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/export.ts#L1" + "url": "typedoc://export.ts#L1" } ] }, @@ -104,7 +104,7 @@ "fileName": "mod.ts", "line": 13, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L13" + "url": "typedoc://mod.ts#L13" } ], "target": 30 @@ -128,7 +128,7 @@ "fileName": "mod.ts", "line": 18, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L18" + "url": "typedoc://mod.ts#L18" } ], "target": 30 @@ -154,7 +154,7 @@ "fileName": "mod.ts", "line": 8, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L8" + "url": "typedoc://mod.ts#L8" } ], "type": { @@ -174,7 +174,7 @@ "fileName": "mod.ts", "line": 23, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L23" + "url": "typedoc://mod.ts#L23" } ], "signatures": [ @@ -226,7 +226,7 @@ "fileName": "mod.ts", "line": 8, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/mod.ts#L8" + "url": "typedoc://mod.ts#L8" } ] }, @@ -260,7 +260,7 @@ "fileName": "no-doc-members.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/exports/no-doc-members.ts#L6" + "url": "typedoc://no-doc-members.ts#L6" } ] } diff --git a/src/test/converter/function/specs.json b/src/test/converter/function/specs.json index dd297969a..eea266563 100644 --- a/src/test/converter/function/specs.json +++ b/src/test/converter/function/specs.json @@ -29,7 +29,7 @@ "fileName": "function.ts", "line": 305, "character": 7, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L305" + "url": "typedoc://function.ts#L305" } ], "signatures": [ @@ -60,13 +60,13 @@ "fileName": "function.ts", "line": 304, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L304" + "url": "typedoc://function.ts#L304" }, { "fileName": "function.ts", "line": 305, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L305" + "url": "typedoc://function.ts#L305" } ] }, @@ -104,7 +104,7 @@ "fileName": "function.ts", "line": 264, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L264" + "url": "typedoc://function.ts#L264" } ], "type": { @@ -123,7 +123,7 @@ "fileName": "function.ts", "line": 269, "character": 20, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L269" + "url": "typedoc://function.ts#L269" } ], "signatures": [ @@ -159,7 +159,7 @@ "fileName": "function.ts", "line": 274, "character": 20, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L274" + "url": "typedoc://function.ts#L274" } ], "signatures": [ @@ -205,13 +205,13 @@ "fileName": "function.ts", "line": 218, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L218" + "url": "typedoc://function.ts#L218" }, { "fileName": "function.ts", "line": 260, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L260" + "url": "typedoc://function.ts#L260" } ] }, @@ -254,7 +254,7 @@ "fileName": "function.ts", "line": 285, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L285" + "url": "typedoc://function.ts#L285" } ], "signatures": [ @@ -287,7 +287,7 @@ "fileName": "function.ts", "line": 281, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L281" + "url": "typedoc://function.ts#L281" } ], "signatures": [ @@ -322,7 +322,7 @@ "fileName": "function.ts", "line": 284, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L284" + "url": "typedoc://function.ts#L284" } ], "signatures": [ @@ -366,7 +366,7 @@ "fileName": "function.ts", "line": 278, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L278" + "url": "typedoc://function.ts#L278" } ], "signatures": [ @@ -424,7 +424,7 @@ "fileName": "function.ts", "line": 277, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L277" + "url": "typedoc://function.ts#L277" } ] }, @@ -439,7 +439,7 @@ "fileName": "function.ts", "line": 293, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L293" + "url": "typedoc://function.ts#L293" } ], "signatures": [ @@ -478,7 +478,7 @@ "fileName": "function.ts", "line": 294, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L294" + "url": "typedoc://function.ts#L294" } ], "signatures": [ @@ -572,7 +572,7 @@ "fileName": "function.ts", "line": 295, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L295" + "url": "typedoc://function.ts#L295" } ], "signatures": [ @@ -619,7 +619,7 @@ "fileName": "function.ts", "line": 295, "character": 35, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L295" + "url": "typedoc://function.ts#L295" } ], "signatures": [ @@ -673,7 +673,7 @@ "fileName": "function.ts", "line": 241, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L241" + "url": "typedoc://function.ts#L241" } ], "signatures": [ @@ -751,7 +751,7 @@ "fileName": "function.ts", "line": 227, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L227" + "url": "typedoc://function.ts#L227" } ], "signatures": [ @@ -809,7 +809,7 @@ "fileName": "function.ts", "line": 298, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L298" + "url": "typedoc://function.ts#L298" } ], "signatures": [ @@ -859,7 +859,7 @@ "fileName": "function.ts", "line": 233, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L233" + "url": "typedoc://function.ts#L233" } ], "signatures": [ @@ -913,7 +913,7 @@ "fileName": "function.ts", "line": 4, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L4" + "url": "typedoc://function.ts#L4" } ], "signatures": [ @@ -949,7 +949,7 @@ "fileName": "function.ts", "line": 100, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L100" + "url": "typedoc://function.ts#L100" } ], "signatures": [ @@ -1026,7 +1026,7 @@ "fileName": "function.ts", "line": 107, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L107" + "url": "typedoc://function.ts#L107" } ], "type": { @@ -1055,7 +1055,7 @@ "fileName": "function.ts", "line": 106, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L106" + "url": "typedoc://function.ts#L106" } ], "type": { @@ -1082,7 +1082,7 @@ "fileName": "function.ts", "line": 105, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L105" + "url": "typedoc://function.ts#L105" } ], "type": { @@ -1106,7 +1106,7 @@ "fileName": "function.ts", "line": 104, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L104" + "url": "typedoc://function.ts#L104" } ] } @@ -1131,7 +1131,7 @@ "fileName": "function.ts", "line": 166, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L166" + "url": "typedoc://function.ts#L166" } ], "signatures": [ @@ -1203,7 +1203,7 @@ "fileName": "function.ts", "line": 173, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L173" + "url": "typedoc://function.ts#L173" } ], "type": { @@ -1224,7 +1224,7 @@ "fileName": "function.ts", "line": 172, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L172" + "url": "typedoc://function.ts#L172" } ], "type": { @@ -1243,7 +1243,7 @@ "fileName": "function.ts", "line": 171, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L171" + "url": "typedoc://function.ts#L171" } ], "type": { @@ -1267,7 +1267,7 @@ "fileName": "function.ts", "line": 170, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L170" + "url": "typedoc://function.ts#L170" } ] } @@ -1292,7 +1292,7 @@ "fileName": "function.ts", "line": 131, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L131" + "url": "typedoc://function.ts#L131" } ], "signatures": [ @@ -1356,7 +1356,7 @@ "fileName": "function.ts", "line": 139, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L139" + "url": "typedoc://function.ts#L139" } ], "type": { @@ -1377,7 +1377,7 @@ "fileName": "function.ts", "line": 138, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L138" + "url": "typedoc://function.ts#L138" } ], "type": { @@ -1396,7 +1396,7 @@ "fileName": "function.ts", "line": 137, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L137" + "url": "typedoc://function.ts#L137" } ], "type": { @@ -1420,7 +1420,7 @@ "fileName": "function.ts", "line": 136, "character": 7, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L136" + "url": "typedoc://function.ts#L136" } ] } @@ -1456,7 +1456,7 @@ "fileName": "function.ts", "line": 62, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L62" + "url": "typedoc://function.ts#L62" } ], "signatures": [ @@ -1605,7 +1605,7 @@ "fileName": "function.ts", "line": 47, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L47" + "url": "typedoc://function.ts#L47" } ], "signatures": [ @@ -1683,7 +1683,7 @@ "fileName": "function.ts", "line": 23, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L23" + "url": "typedoc://function.ts#L23" } ], "signatures": [ @@ -1795,7 +1795,7 @@ "fileName": "function.ts", "line": 78, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L78" + "url": "typedoc://function.ts#L78" } ], "signatures": [ @@ -1868,7 +1868,7 @@ "fileName": "function.ts", "line": 253, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L253" + "url": "typedoc://function.ts#L253" } ], "signatures": [ @@ -1946,13 +1946,13 @@ "fileName": "function.ts", "line": 304, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L304" + "url": "typedoc://function.ts#L304" }, { "fileName": "function.ts", "line": 305, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L305" + "url": "typedoc://function.ts#L305" } ], "signatures": [ @@ -1980,13 +1980,13 @@ "fileName": "function.ts", "line": 218, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L218" + "url": "typedoc://function.ts#L218" }, { "fileName": "function.ts", "line": 260, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L260" + "url": "typedoc://function.ts#L260" } ], "signatures": [ @@ -2043,19 +2043,19 @@ "fileName": "function.ts", "line": 183, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L183" + "url": "typedoc://function.ts#L183" }, { "fileName": "function.ts", "line": 191, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L191" + "url": "typedoc://function.ts#L191" }, { "fileName": "function.ts", "line": 201, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L201" + "url": "typedoc://function.ts#L201" } ], "signatures": [ @@ -2156,7 +2156,7 @@ "fileName": "function.ts", "line": 191, "character": 44, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L191" + "url": "typedoc://function.ts#L191" } ], "type": { @@ -2178,7 +2178,7 @@ "fileName": "function.ts", "line": 191, "character": 42, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L191" + "url": "typedoc://function.ts#L191" } ] } @@ -2203,7 +2203,7 @@ "fileName": "function.ts", "line": 37, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L37" + "url": "typedoc://function.ts#L37" } ], "signatures": [ @@ -2304,7 +2304,7 @@ "fileName": "function.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/function.ts#L4" + "url": "typedoc://function.ts#L4" } ] }, @@ -2326,7 +2326,7 @@ "fileName": "generic-function.ts", "line": 18, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/generic-function.ts#L18" + "url": "typedoc://generic-function.ts#L18" } ], "signatures": [ @@ -2431,7 +2431,7 @@ "fileName": "generic-function.ts", "line": 29, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/generic-function.ts#L29" + "url": "typedoc://generic-function.ts#L29" } ], "signatures": [ @@ -2499,7 +2499,7 @@ "fileName": "generic-function.ts", "line": 7, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/generic-function.ts#L7" + "url": "typedoc://generic-function.ts#L7" } ], "signatures": [ @@ -2597,7 +2597,7 @@ "fileName": "generic-function.ts", "line": 7, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/generic-function.ts#L7" + "url": "typedoc://generic-function.ts#L7" } ] }, @@ -2626,7 +2626,7 @@ "fileName": "implicit-types.ts", "line": 3, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L3" + "url": "typedoc://implicit-types.ts#L3" } ], "type": { @@ -2645,7 +2645,7 @@ "fileName": "implicit-types.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L2" + "url": "typedoc://implicit-types.ts#L2" } ], "type": { @@ -2668,7 +2668,7 @@ "fileName": "implicit-types.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L1" + "url": "typedoc://implicit-types.ts#L1" } ] }, @@ -2683,7 +2683,7 @@ "fileName": "implicit-types.ts", "line": 14, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L14" + "url": "typedoc://implicit-types.ts#L14" } ], "signatures": [ @@ -2713,7 +2713,7 @@ "fileName": "implicit-types.ts", "line": 9, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L9" + "url": "typedoc://implicit-types.ts#L9" } ], "type": { @@ -2733,7 +2733,7 @@ "fileName": "implicit-types.ts", "line": 8, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L8" + "url": "typedoc://implicit-types.ts#L8" } ], "type": { @@ -2753,7 +2753,7 @@ "fileName": "implicit-types.ts", "line": 7, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L7" + "url": "typedoc://implicit-types.ts#L7" } ], "type": { @@ -2773,7 +2773,7 @@ "fileName": "implicit-types.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L10" + "url": "typedoc://implicit-types.ts#L10" } ], "type": { @@ -2793,7 +2793,7 @@ "fileName": "implicit-types.ts", "line": 11, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L11" + "url": "typedoc://implicit-types.ts#L11" } ], "type": { @@ -2820,7 +2820,7 @@ "fileName": "implicit-types.ts", "line": 6, "character": 18, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L6" + "url": "typedoc://implicit-types.ts#L6" } ] } @@ -2848,7 +2848,7 @@ "fileName": "implicit-types.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/function/implicit-types.ts#L1" + "url": "typedoc://implicit-types.ts#L1" } ] } diff --git a/src/test/converter/inherit-param-doc/specs.json b/src/test/converter/inherit-param-doc/specs.json index a3ee632ed..32c74075b 100644 --- a/src/test/converter/inherit-param-doc/specs.json +++ b/src/test/converter/inherit-param-doc/specs.json @@ -44,7 +44,7 @@ "fileName": "inherit-param-doc.ts", "line": 11, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L11" + "url": "typedoc://inherit-param-doc.ts#L11" } ], "signatures": [ @@ -131,7 +131,7 @@ "fileName": "inherit-param-doc.ts", "line": 9, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L9" + "url": "typedoc://inherit-param-doc.ts#L9" } ], "implementedTypes": [ @@ -181,7 +181,7 @@ "fileName": "inherit-param-doc.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L20" + "url": "typedoc://inherit-param-doc.ts#L20" } ], "signatures": [ @@ -268,7 +268,7 @@ "fileName": "inherit-param-doc.ts", "line": 14, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L14" + "url": "typedoc://inherit-param-doc.ts#L14" } ], "implementedTypes": [ @@ -318,7 +318,7 @@ "fileName": "inherit-param-doc.ts", "line": 29, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L29" + "url": "typedoc://inherit-param-doc.ts#L29" } ], "signatures": [ @@ -405,7 +405,7 @@ "fileName": "inherit-param-doc.ts", "line": 23, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L23" + "url": "typedoc://inherit-param-doc.ts#L23" } ], "implementedTypes": [ @@ -434,7 +434,7 @@ "fileName": "inherit-param-doc.ts", "line": 6, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L6" + "url": "typedoc://inherit-param-doc.ts#L6" } ], "signatures": [ @@ -505,7 +505,7 @@ "fileName": "inherit-param-doc.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L1" + "url": "typedoc://inherit-param-doc.ts#L1" } ], "implementedBy": [ @@ -548,7 +548,7 @@ "fileName": "inherit-param-doc.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inherit-param-doc/inherit-param-doc.ts#L1" + "url": "typedoc://inherit-param-doc.ts#L1" } ] } diff --git a/src/test/converter/inheritance/specs.json b/src/test/converter/inheritance/specs.json index 7cf03133f..115858b6c 100644 --- a/src/test/converter/inheritance/specs.json +++ b/src/test/converter/inheritance/specs.json @@ -57,7 +57,7 @@ "fileName": "inherit-doc.ts", "line": 12, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L12" + "url": "typedoc://inherit-doc.ts#L12" } ], "type": { @@ -77,7 +77,7 @@ "fileName": "inherit-doc.ts", "line": 19, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L19" + "url": "typedoc://inherit-doc.ts#L19" } ], "signatures": [ @@ -136,7 +136,7 @@ "fileName": "inherit-doc.ts", "line": 6, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L6" + "url": "typedoc://inherit-doc.ts#L6" } ], "typeParameters": [ @@ -191,7 +191,7 @@ "fileName": "inherit-doc.ts", "line": 30, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L30" + "url": "typedoc://inherit-doc.ts#L30" } ], "type": { @@ -211,7 +211,7 @@ "fileName": "inherit-doc.ts", "line": 37, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L37" + "url": "typedoc://inherit-doc.ts#L37" } ], "signatures": [ @@ -270,7 +270,7 @@ "fileName": "inherit-doc.ts", "line": 26, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L26" + "url": "typedoc://inherit-doc.ts#L26" } ], "typeParameters": [ @@ -302,7 +302,7 @@ "fileName": "inherit-doc.ts", "line": 58, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L58" + "url": "typedoc://inherit-doc.ts#L58" } ], "signatures": [ @@ -426,7 +426,7 @@ "fileName": "inherit-doc.ts", "line": 68, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L68" + "url": "typedoc://inherit-doc.ts#L68" } ], "signatures": [ @@ -464,7 +464,7 @@ "fileName": "inherit-doc.ts", "line": 85, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L85" + "url": "typedoc://inherit-doc.ts#L85" } ], "signatures": [ @@ -617,7 +617,7 @@ "fileName": "inherit-doc.ts", "line": 6, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/inherit-doc.ts#L6" + "url": "typedoc://inherit-doc.ts#L6" } ] }, @@ -646,7 +646,7 @@ "fileName": "mergable-class.ts", "line": 3, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L3" + "url": "typedoc://mergable-class.ts#L3" } ], "signatures": [ @@ -683,7 +683,7 @@ "fileName": "mergable-class.ts", "line": 7, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L7" + "url": "typedoc://mergable-class.ts#L7" } ], "type": { @@ -708,7 +708,7 @@ "fileName": "mergable-class.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L2" + "url": "typedoc://mergable-class.ts#L2" } ], "type": { @@ -741,7 +741,7 @@ "fileName": "mergable-class.ts", "line": 12, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L12" + "url": "typedoc://mergable-class.ts#L12" } ], "extendedTypes": [ @@ -770,7 +770,7 @@ "fileName": "mergable-class.ts", "line": 7, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L7" + "url": "typedoc://mergable-class.ts#L7" } ], "type": { @@ -792,13 +792,13 @@ "fileName": "mergable-class.ts", "line": 6, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L6" + "url": "typedoc://mergable-class.ts#L6" }, { "fileName": "mergable-class.ts", "line": 10, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L10" + "url": "typedoc://mergable-class.ts#L10" } ] }, @@ -820,7 +820,7 @@ "fileName": "mergable-class.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L1" + "url": "typedoc://mergable-class.ts#L1" } ], "signatures": [ @@ -849,7 +849,7 @@ "fileName": "mergable-class.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L2" + "url": "typedoc://mergable-class.ts#L2" } ], "type": { @@ -877,7 +877,7 @@ "fileName": "mergable-class.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L1" + "url": "typedoc://mergable-class.ts#L1" } ] }, @@ -892,13 +892,13 @@ "fileName": "mergable-class.ts", "line": 6, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L6" + "url": "typedoc://mergable-class.ts#L6" }, { "fileName": "mergable-class.ts", "line": 10, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L10" + "url": "typedoc://mergable-class.ts#L10" } ], "type": { @@ -941,7 +941,7 @@ "fileName": "mergable-class.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/inheritance/mergable-class.ts#L1" + "url": "typedoc://mergable-class.ts#L1" } ] } diff --git a/src/test/converter/interface/specs.json b/src/test/converter/interface/specs.json index 88f73abc0..1fe5803f6 100644 --- a/src/test/converter/interface/specs.json +++ b/src/test/converter/interface/specs.json @@ -29,7 +29,7 @@ "fileName": "constructor-type.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/constructor-type.ts#L1" + "url": "typedoc://constructor-type.ts#L1" } ], "signatures": [ @@ -156,7 +156,7 @@ "fileName": "constructor-type.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/constructor-type.ts#L1" + "url": "typedoc://constructor-type.ts#L1" } ] }, @@ -171,7 +171,7 @@ "fileName": "constructor-type.ts", "line": 12, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/constructor-type.ts#L12" + "url": "typedoc://constructor-type.ts#L12" } ] } @@ -190,7 +190,7 @@ "fileName": "constructor-type.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/constructor-type.ts#L1" + "url": "typedoc://constructor-type.ts#L1" } ] }, @@ -212,7 +212,7 @@ "fileName": "index-signature.ts", "line": 10, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/index-signature.ts#L10" + "url": "typedoc://index-signature.ts#L10" } ], "indexSignature": { @@ -250,7 +250,7 @@ "fileName": "index-signature.ts", "line": 5, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/index-signature.ts#L5" + "url": "typedoc://index-signature.ts#L5" } ], "indexSignature": { @@ -288,7 +288,7 @@ "fileName": "index-signature.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/index-signature.ts#L1" + "url": "typedoc://index-signature.ts#L1" } ], "indexSignature": { @@ -326,7 +326,7 @@ "fileName": "index-signature.ts", "line": 15, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/index-signature.ts#L15" + "url": "typedoc://index-signature.ts#L15" } ], "type": { @@ -342,7 +342,7 @@ "fileName": "index-signature.ts", "line": 15, "character": 24, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/index-signature.ts#L15" + "url": "typedoc://index-signature.ts#L15" } ], "indexSignature": { @@ -393,7 +393,7 @@ "fileName": "index-signature.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/index-signature.ts#L1" + "url": "typedoc://index-signature.ts#L1" } ] }, @@ -453,7 +453,7 @@ "fileName": "interface-empty.ts", "line": 10, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-empty.ts#L10" + "url": "typedoc://interface-empty.ts#L10" } ], "type": { @@ -474,7 +474,7 @@ "fileName": "interface-empty.ts", "line": 11, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-empty.ts#L11" + "url": "typedoc://interface-empty.ts#L11" } ], "signatures": [ @@ -517,7 +517,7 @@ "fileName": "interface-empty.ts", "line": 9, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-empty.ts#L9" + "url": "typedoc://interface-empty.ts#L9" } ], "implementedTypes": [ @@ -547,7 +547,7 @@ "fileName": "interface-empty.ts", "line": 4, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-empty.ts#L4" + "url": "typedoc://interface-empty.ts#L4" } ], "implementedBy": [ @@ -578,7 +578,7 @@ "fileName": "interface-empty.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-empty.ts#L4" + "url": "typedoc://interface-empty.ts#L4" } ] }, @@ -672,7 +672,7 @@ "fileName": "interface-implementation.ts", "line": 57, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L57" + "url": "typedoc://interface-implementation.ts#L57" } ], "type": { @@ -702,7 +702,7 @@ "fileName": "interface-implementation.ts", "line": 59, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L59" + "url": "typedoc://interface-implementation.ts#L59" } ], "signatures": [ @@ -793,7 +793,7 @@ "fileName": "interface-implementation.ts", "line": 73, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L73" + "url": "typedoc://interface-implementation.ts#L73" } ], "signatures": [ @@ -831,7 +831,7 @@ "fileName": "interface-implementation.ts", "line": 69, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L69" + "url": "typedoc://interface-implementation.ts#L69" } ], "signatures": [ @@ -883,7 +883,7 @@ "fileName": "interface-implementation.ts", "line": 75, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L75" + "url": "typedoc://interface-implementation.ts#L75" } ], "signatures": [ @@ -921,7 +921,7 @@ "fileName": "interface-implementation.ts", "line": 67, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L67" + "url": "typedoc://interface-implementation.ts#L67" } ], "signatures": [ @@ -999,7 +999,7 @@ "fileName": "interface-implementation.ts", "line": 56, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L56" + "url": "typedoc://interface-implementation.ts#L56" } ], "typeParameters": [ @@ -1052,7 +1052,7 @@ "fileName": "interface-implementation.ts", "line": 25, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L25" + "url": "typedoc://interface-implementation.ts#L25" } ], "signatures": [ @@ -1161,7 +1161,7 @@ "fileName": "interface-implementation.ts", "line": 29, "character": 19, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L29" + "url": "typedoc://interface-implementation.ts#L29" } ], "type": { @@ -1190,7 +1190,7 @@ "fileName": "interface-implementation.ts", "line": 27, "character": 19, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L27" + "url": "typedoc://interface-implementation.ts#L27" } ], "type": { @@ -1216,7 +1216,7 @@ "fileName": "interface-implementation.ts", "line": 26, "character": 19, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L26" + "url": "typedoc://interface-implementation.ts#L26" } ], "type": { @@ -1250,7 +1250,7 @@ "fileName": "interface-implementation.ts", "line": 28, "character": 19, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L28" + "url": "typedoc://interface-implementation.ts#L28" } ], "type": { @@ -1274,7 +1274,7 @@ "fileName": "interface-implementation.ts", "line": 32, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L32" + "url": "typedoc://interface-implementation.ts#L32" } ], "signatures": [ @@ -1338,7 +1338,7 @@ "fileName": "interface-implementation.ts", "line": 24, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L24" + "url": "typedoc://interface-implementation.ts#L24" } ], "typeParameters": [ @@ -1391,7 +1391,7 @@ "fileName": "interface-implementation.ts", "line": 41, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L41" + "url": "typedoc://interface-implementation.ts#L41" } ], "signatures": [ @@ -1474,7 +1474,7 @@ "fileName": "interface-implementation.ts", "line": 48, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L48" + "url": "typedoc://interface-implementation.ts#L48" } ], "signatures": [ @@ -1502,7 +1502,7 @@ "fileName": "interface-implementation.ts", "line": 47, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L47" + "url": "typedoc://interface-implementation.ts#L47" } ], "signatures": [ @@ -1544,7 +1544,7 @@ "fileName": "interface-implementation.ts", "line": 49, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L49" + "url": "typedoc://interface-implementation.ts#L49" } ], "signatures": [ @@ -1572,7 +1572,7 @@ "fileName": "interface-implementation.ts", "line": 46, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L46" + "url": "typedoc://interface-implementation.ts#L46" } ], "signatures": [ @@ -1628,7 +1628,7 @@ "fileName": "interface-implementation.ts", "line": 40, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L40" + "url": "typedoc://interface-implementation.ts#L40" } ], "typeParameters": [ @@ -1659,7 +1659,7 @@ "fileName": "interface-implementation.ts", "line": 5, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L5" + "url": "typedoc://interface-implementation.ts#L5" } ], "typeParameters": [ @@ -1733,7 +1733,7 @@ "fileName": "interface-implementation.ts", "line": 16, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L16" + "url": "typedoc://interface-implementation.ts#L16" } ], "type": { @@ -1752,7 +1752,7 @@ "fileName": "interface-implementation.ts", "line": 14, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L14" + "url": "typedoc://interface-implementation.ts#L14" } ], "type": { @@ -1779,7 +1779,7 @@ "fileName": "interface-implementation.ts", "line": 15, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L15" + "url": "typedoc://interface-implementation.ts#L15" } ], "type": { @@ -1798,7 +1798,7 @@ "fileName": "interface-implementation.ts", "line": 21, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L21" + "url": "typedoc://interface-implementation.ts#L21" } ], "signatures": [ @@ -1845,7 +1845,7 @@ "fileName": "interface-implementation.ts", "line": 13, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L13" + "url": "typedoc://interface-implementation.ts#L13" } ], "typeParameters": [ @@ -1888,7 +1888,7 @@ "fileName": "interface-implementation.ts", "line": 1, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L1" + "url": "typedoc://interface-implementation.ts#L1" } ] } @@ -1906,7 +1906,7 @@ "fileName": "interface-implementation.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/interface-implementation.ts#L1" + "url": "typedoc://interface-implementation.ts#L1" } ] }, @@ -1935,7 +1935,7 @@ "fileName": "merging.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L2" + "url": "typedoc://merging.ts#L2" } ], "type": { @@ -1957,7 +1957,7 @@ "fileName": "merging.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L1" + "url": "typedoc://merging.ts#L1" } ], "extendedBy": [ @@ -1991,7 +1991,7 @@ "fileName": "merging.ts", "line": 6, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L6" + "url": "typedoc://merging.ts#L6" } ], "type": { @@ -2013,7 +2013,7 @@ "fileName": "merging.ts", "line": 5, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L5" + "url": "typedoc://merging.ts#L5" } ], "extendedBy": [ @@ -2042,7 +2042,7 @@ "fileName": "merging.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L2" + "url": "typedoc://merging.ts#L2" } ], "type": { @@ -2066,7 +2066,7 @@ "fileName": "merging.ts", "line": 6, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L6" + "url": "typedoc://merging.ts#L6" } ], "type": { @@ -2090,7 +2090,7 @@ "fileName": "merging.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L10" + "url": "typedoc://merging.ts#L10" } ], "type": { @@ -2109,7 +2109,7 @@ "fileName": "merging.ts", "line": 15, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L15" + "url": "typedoc://merging.ts#L15" } ], "type": { @@ -2134,13 +2134,13 @@ "fileName": "merging.ts", "line": 9, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L9" + "url": "typedoc://merging.ts#L9" }, { "fileName": "merging.ts", "line": 14, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L14" + "url": "typedoc://merging.ts#L14" } ], "extendedTypes": [ @@ -2181,7 +2181,7 @@ "fileName": "merging.ts", "line": 2, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L2" + "url": "typedoc://merging.ts#L2" } ], "type": { @@ -2205,7 +2205,7 @@ "fileName": "merging.ts", "line": 6, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L6" + "url": "typedoc://merging.ts#L6" } ], "type": { @@ -2229,7 +2229,7 @@ "fileName": "merging.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L10" + "url": "typedoc://merging.ts#L10" } ], "type": { @@ -2253,7 +2253,7 @@ "fileName": "merging.ts", "line": 19, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L19" + "url": "typedoc://merging.ts#L19" } ], "type": { @@ -2272,7 +2272,7 @@ "fileName": "merging.ts", "line": 15, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L15" + "url": "typedoc://merging.ts#L15" } ], "type": { @@ -2303,7 +2303,7 @@ "fileName": "merging.ts", "line": 18, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L18" + "url": "typedoc://merging.ts#L18" } ], "extendedTypes": [ @@ -2336,7 +2336,7 @@ "fileName": "merging.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/interface/merging.ts#L1" + "url": "typedoc://merging.ts#L1" } ] } diff --git a/src/test/converter/js/specs.json b/src/test/converter/js/specs.json index d5ce36c11..3f1e08a45 100644 --- a/src/test/converter/js/specs.json +++ b/src/test/converter/js/specs.json @@ -22,7 +22,7 @@ "fileName": "export-eq-type.js", "line": 1, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/export-eq-type.js#L1" + "url": "typedoc://export-eq-type.js#L1" } ], "type": { @@ -41,7 +41,7 @@ "fileName": "export-eq-type.js", "line": 4, "character": 6, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/export-eq-type.js#L4" + "url": "typedoc://export-eq-type.js#L4" } ], "signatures": [ @@ -91,7 +91,7 @@ "fileName": "export-eq-type.js", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/export-eq-type.js#L4" + "url": "typedoc://export-eq-type.js#L4" } ] }, @@ -128,7 +128,7 @@ "fileName": "index.js", "line": 62, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L62" + "url": "typedoc://index.js#L62" } ], "type": { @@ -147,7 +147,7 @@ "fileName": "index.js", "line": 61, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L61" + "url": "typedoc://index.js#L61" } ], "type": { @@ -170,13 +170,13 @@ "fileName": "index.js", "line": 60, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L60" + "url": "typedoc://index.js#L60" }, { "fileName": "index.js", "line": 58, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L58" + "url": "typedoc://index.js#L58" } ] }, @@ -206,7 +206,7 @@ "fileName": "index.js", "line": 13, "character": 18, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L13" + "url": "typedoc://index.js#L13" } ], "type": { @@ -225,7 +225,7 @@ "fileName": "index.js", "line": 12, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L12" + "url": "typedoc://index.js#L12" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "index.js", "line": 11, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L11" + "url": "typedoc://index.js#L11" } ] }, @@ -270,7 +270,7 @@ "fileName": "index.js", "line": 6, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L6" + "url": "typedoc://index.js#L6" } ], "type": { @@ -292,7 +292,7 @@ "fileName": "index.js", "line": 5, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L5" + "url": "typedoc://index.js#L5" } ] }, @@ -307,7 +307,7 @@ "fileName": "index.js", "line": 49, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L49" + "url": "typedoc://index.js#L49" } ], "type": { @@ -323,7 +323,7 @@ "fileName": "index.js", "line": 49, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L49" + "url": "typedoc://index.js#L49" } ], "signatures": [ @@ -371,7 +371,7 @@ "fileName": "index.js", "line": 27, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L27" + "url": "typedoc://index.js#L27" } ], "type": { @@ -387,7 +387,7 @@ "fileName": "index.js", "line": 27, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L27" + "url": "typedoc://index.js#L27" } ], "signatures": [ @@ -425,7 +425,7 @@ "fileName": "index.js", "line": 45, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L45" + "url": "typedoc://index.js#L45" } ], "typeParameters": [ @@ -462,7 +462,7 @@ "fileName": "index.js", "line": 33, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L33" + "url": "typedoc://index.js#L33" } ], "typeParameters": [ @@ -487,7 +487,7 @@ "fileName": "index.js", "line": 33, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L33" + "url": "typedoc://index.js#L33" } ], "signatures": [ @@ -540,7 +540,7 @@ "fileName": "index.js", "line": 22, "character": 44, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L22" + "url": "typedoc://index.js#L22" } ], "type": { @@ -566,7 +566,7 @@ "fileName": "index.js", "line": 22, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L22" + "url": "typedoc://index.js#L22" } ], "type": { @@ -588,7 +588,7 @@ "fileName": "index.js", "line": 22, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L22" + "url": "typedoc://index.js#L22" } ] } @@ -613,7 +613,7 @@ "fileName": "index.js", "line": 22, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L22" + "url": "typedoc://index.js#L22" } ], "type": { @@ -635,7 +635,7 @@ "fileName": "index.js", "line": 22, "character": 29, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L22" + "url": "typedoc://index.js#L22" } ] } @@ -654,7 +654,7 @@ "fileName": "index.js", "line": 26, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L26" + "url": "typedoc://index.js#L26" } ], "type": { @@ -670,7 +670,7 @@ "fileName": "index.js", "line": 26, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L26" + "url": "typedoc://index.js#L26" } ], "signatures": [ @@ -716,7 +716,7 @@ "fileName": "index.js", "line": 17, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L17" + "url": "typedoc://index.js#L17" } ], "type": { @@ -737,7 +737,7 @@ "fileName": "index.js", "line": 39, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L39" + "url": "typedoc://index.js#L39" } ], "type": { @@ -753,7 +753,7 @@ "fileName": "index.js", "line": 39, "character": 3, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L39" + "url": "typedoc://index.js#L39" } ], "signatures": [ @@ -814,7 +814,7 @@ "fileName": "index.js", "line": 21, "character": 30, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L21" + "url": "typedoc://index.js#L21" } ], "type": { @@ -842,7 +842,7 @@ "fileName": "index.js", "line": 55, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L55" + "url": "typedoc://index.js#L55" } ], "signatures": [ @@ -918,7 +918,7 @@ "fileName": "index.js", "line": 55, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/js/index.js#L55" + "url": "typedoc://index.js#L55" } ] } diff --git a/src/test/converter/mixin/specs.json b/src/test/converter/mixin/specs.json index fb231f2b3..3072f8d4f 100644 --- a/src/test/converter/mixin/specs.json +++ b/src/test/converter/mixin/specs.json @@ -52,7 +52,7 @@ "fileName": "mixin.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L20" + "url": "typedoc://mixin.ts#L20" } ], "type": { @@ -72,7 +72,7 @@ "fileName": "mixin.ts", "line": 22, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L22" + "url": "typedoc://mixin.ts#L22" } ], "signatures": [ @@ -115,7 +115,7 @@ "fileName": "mixin.ts", "line": 19, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L19" + "url": "typedoc://mixin.ts#L19" } ] }, @@ -174,7 +174,7 @@ "fileName": "mixin.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L20" + "url": "typedoc://mixin.ts#L20" } ], "type": { @@ -198,7 +198,7 @@ "fileName": "mixin.ts", "line": 86, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L86" + "url": "typedoc://mixin.ts#L86" } ], "type": { @@ -218,7 +218,7 @@ "fileName": "mixin.ts", "line": 35, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L35" + "url": "typedoc://mixin.ts#L35" } ], "type": { @@ -242,7 +242,7 @@ "fileName": "mixin.ts", "line": 55, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L55" + "url": "typedoc://mixin.ts#L55" } ], "type": { @@ -266,7 +266,7 @@ "fileName": "mixin.ts", "line": 22, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L22" + "url": "typedoc://mixin.ts#L22" } ], "signatures": [ @@ -302,7 +302,7 @@ "fileName": "mixin.ts", "line": 88, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L88" + "url": "typedoc://mixin.ts#L88" } ], "signatures": [ @@ -330,7 +330,7 @@ "fileName": "mixin.ts", "line": 37, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L37" + "url": "typedoc://mixin.ts#L37" } ], "signatures": [ @@ -387,7 +387,7 @@ "fileName": "mixin.ts", "line": 57, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L57" + "url": "typedoc://mixin.ts#L57" } ], "signatures": [ @@ -459,7 +459,7 @@ "fileName": "mixin.ts", "line": 85, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L85" + "url": "typedoc://mixin.ts#L85" } ], "extendedTypes": [ @@ -514,7 +514,7 @@ "fileName": "mixin.ts", "line": 34, "character": 10, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L34" + "url": "typedoc://mixin.ts#L34" } ] } @@ -596,7 +596,7 @@ "fileName": "mixin.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L20" + "url": "typedoc://mixin.ts#L20" } ], "type": { @@ -620,7 +620,7 @@ "fileName": "mixin.ts", "line": 35, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L35" + "url": "typedoc://mixin.ts#L35" } ], "type": { @@ -644,7 +644,7 @@ "fileName": "mixin.ts", "line": 22, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L22" + "url": "typedoc://mixin.ts#L22" } ], "signatures": [ @@ -680,7 +680,7 @@ "fileName": "mixin.ts", "line": 37, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L37" + "url": "typedoc://mixin.ts#L37" } ], "signatures": [ @@ -748,7 +748,7 @@ "fileName": "mixin.ts", "line": 45, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L45" + "url": "typedoc://mixin.ts#L45" } ], "extendedTypes": [ @@ -795,7 +795,7 @@ "fileName": "mixin.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L20" + "url": "typedoc://mixin.ts#L20" } ], "type": { @@ -819,7 +819,7 @@ "fileName": "mixin.ts", "line": 35, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L35" + "url": "typedoc://mixin.ts#L35" } ], "type": { @@ -843,7 +843,7 @@ "fileName": "mixin.ts", "line": 55, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L55" + "url": "typedoc://mixin.ts#L55" } ], "type": { @@ -867,7 +867,7 @@ "fileName": "mixin.ts", "line": 22, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L22" + "url": "typedoc://mixin.ts#L22" } ], "signatures": [ @@ -903,7 +903,7 @@ "fileName": "mixin.ts", "line": 37, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L37" + "url": "typedoc://mixin.ts#L37" } ], "signatures": [ @@ -960,7 +960,7 @@ "fileName": "mixin.ts", "line": 57, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L57" + "url": "typedoc://mixin.ts#L57" } ], "signatures": [ @@ -1024,7 +1024,7 @@ "fileName": "mixin.ts", "line": 65, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L65" + "url": "typedoc://mixin.ts#L65" } ], "extendedTypes": [ @@ -1056,7 +1056,7 @@ "fileName": "mixin.ts", "line": 9, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L9" + "url": "typedoc://mixin.ts#L9" } ], "typeParameters": [ @@ -1085,7 +1085,7 @@ "fileName": "mixin.ts", "line": 9, "character": 41, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L9" + "url": "typedoc://mixin.ts#L9" } ], "signatures": [ @@ -1142,7 +1142,7 @@ "fileName": "mixin.ts", "line": 4, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L4" + "url": "typedoc://mixin.ts#L4" } ], "typeParameters": [ @@ -1171,7 +1171,7 @@ "fileName": "mixin.ts", "line": 4, "character": 35, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L4" + "url": "typedoc://mixin.ts#L4" } ], "signatures": [ @@ -1236,7 +1236,7 @@ "fileName": "mixin.ts", "line": 14, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L14" + "url": "typedoc://mixin.ts#L14" } ], "typeParameters": [ @@ -1306,13 +1306,13 @@ "fileName": "mixin.ts", "line": 70, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L70" + "url": "typedoc://mixin.ts#L70" }, { "fileName": "mixin.ts", "line": 80, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L80" + "url": "typedoc://mixin.ts#L80" } ], "type": { @@ -1342,7 +1342,7 @@ "fileName": "mixin.ts", "line": 30, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L30" + "url": "typedoc://mixin.ts#L30" } ], "signatures": [ @@ -1439,7 +1439,7 @@ "fileName": "mixin.ts", "line": 34, "character": 10, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L34" + "url": "typedoc://mixin.ts#L34" } ] } @@ -1465,7 +1465,7 @@ "fileName": "mixin.ts", "line": 50, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L50" + "url": "typedoc://mixin.ts#L50" } ], "signatures": [ @@ -1572,7 +1572,7 @@ "fileName": "mixin.ts", "line": 54, "character": 10, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L54" + "url": "typedoc://mixin.ts#L54" } ] } @@ -1598,13 +1598,13 @@ "fileName": "mixin.ts", "line": 70, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L70" + "url": "typedoc://mixin.ts#L70" }, { "fileName": "mixin.ts", "line": 80, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L80" + "url": "typedoc://mixin.ts#L80" } ], "signatures": [ @@ -1700,7 +1700,7 @@ "fileName": "mixin.ts", "line": 74, "character": 10, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L74" + "url": "typedoc://mixin.ts#L74" } ] } @@ -1754,7 +1754,7 @@ "fileName": "mixin.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/mixin/mixin.ts#L4" + "url": "typedoc://mixin.ts#L4" } ] } diff --git a/src/test/converter/react/specs.json b/src/test/converter/react/specs.json index 8a3d1b30c..c4e75e425 100644 --- a/src/test/converter/react/specs.json +++ b/src/test/converter/react/specs.json @@ -23,7 +23,7 @@ "fileName": "react.tsx", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L20" + "url": "typedoc://react.tsx#L20" } ], "signatures": [ @@ -68,7 +68,7 @@ "fileName": "react.tsx", "line": 18, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L18" + "url": "typedoc://react.tsx#L18" } ], "type": { @@ -87,7 +87,7 @@ "fileName": "react.tsx", "line": 25, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L25" + "url": "typedoc://react.tsx#L25" } ], "signatures": [ @@ -130,7 +130,7 @@ "fileName": "react.tsx", "line": 17, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L17" + "url": "typedoc://react.tsx#L17" } ] }, @@ -152,7 +152,7 @@ "fileName": "react.tsx", "line": 14, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L14" + "url": "typedoc://react.tsx#L14" } ], "type": { @@ -171,7 +171,7 @@ "fileName": "react.tsx", "line": 13, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L13" + "url": "typedoc://react.tsx#L13" } ], "type": { @@ -194,7 +194,7 @@ "fileName": "react.tsx", "line": 12, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L12" + "url": "typedoc://react.tsx#L12" } ] } @@ -218,7 +218,7 @@ "fileName": "react.tsx", "line": 2, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/react/react.tsx#L2" + "url": "typedoc://react.tsx#L2" } ] } diff --git a/src/test/converter/types/specs.json b/src/test/converter/types/specs.json index 33710b84c..55eac7510 100644 --- a/src/test/converter/types/specs.json +++ b/src/test/converter/types/specs.json @@ -22,7 +22,7 @@ "fileName": "general.ts", "line": 12, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L12" + "url": "typedoc://general.ts#L12" } ], "type": { @@ -41,7 +41,7 @@ "fileName": "general.ts", "line": 3, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L3" + "url": "typedoc://general.ts#L3" } ], "type": { @@ -63,7 +63,7 @@ "fileName": "general.ts", "line": 17, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L17" + "url": "typedoc://general.ts#L17" } ], "typeParameters": [ @@ -133,7 +133,7 @@ "fileName": "general.ts", "line": 6, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L6" + "url": "typedoc://general.ts#L6" } ], "type": { @@ -155,7 +155,7 @@ "fileName": "general.ts", "line": 14, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L14" + "url": "typedoc://general.ts#L14" } ], "type": { @@ -174,7 +174,7 @@ "fileName": "general.ts", "line": 9, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L9" + "url": "typedoc://general.ts#L9" } ], "type": { @@ -198,7 +198,7 @@ "fileName": "general.ts", "line": 4, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L4" + "url": "typedoc://general.ts#L4" } ], "type": { @@ -223,7 +223,7 @@ "fileName": "general.ts", "line": 7, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L7" + "url": "typedoc://general.ts#L7" } ], "type": { @@ -248,7 +248,7 @@ "fileName": "general.ts", "line": 15, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L15" + "url": "typedoc://general.ts#L15" } ], "type": { @@ -270,7 +270,7 @@ "fileName": "general.ts", "line": 10, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L10" + "url": "typedoc://general.ts#L10" } ], "type": { @@ -310,7 +310,7 @@ "fileName": "general.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/general.ts#L1" + "url": "typedoc://general.ts#L1" } ] }, @@ -332,7 +332,7 @@ "fileName": "index-signature.ts", "line": 5, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/index-signature.ts#L5" + "url": "typedoc://index-signature.ts#L5" } ], "indexSignature": { @@ -379,7 +379,7 @@ "fileName": "index-signature.ts", "line": 1, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/index-signature.ts#L1" + "url": "typedoc://index-signature.ts#L1" } ], "indexSignature": { @@ -417,7 +417,7 @@ "fileName": "index-signature.ts", "line": 9, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/index-signature.ts#L9" + "url": "typedoc://index-signature.ts#L9" } ], "indexSignature": { @@ -469,7 +469,7 @@ "fileName": "index-signature.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/index-signature.ts#L1" + "url": "typedoc://index-signature.ts#L1" } ] }, @@ -491,7 +491,7 @@ "fileName": "mapped.ts", "line": 7, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/mapped.ts#L7" + "url": "typedoc://mapped.ts#L7" } ], "typeParameters": [ @@ -569,7 +569,7 @@ "fileName": "mapped.ts", "line": 5, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/mapped.ts#L5" + "url": "typedoc://mapped.ts#L5" } ], "typeParameters": [ @@ -618,7 +618,7 @@ "fileName": "mapped.ts", "line": 9, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/mapped.ts#L9" + "url": "typedoc://mapped.ts#L9" } ], "signatures": [ @@ -705,7 +705,7 @@ "fileName": "mapped.ts", "line": 1, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/mapped.ts#L1" + "url": "typedoc://mapped.ts#L1" } ], "signatures": [ @@ -790,7 +790,7 @@ "fileName": "mapped.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/mapped.ts#L1" + "url": "typedoc://mapped.ts#L1" } ] }, @@ -812,7 +812,7 @@ "fileName": "parens.ts", "line": 3, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/parens.ts#L3" + "url": "typedoc://parens.ts#L3" } ], "type": { @@ -842,7 +842,7 @@ "fileName": "parens.ts", "line": 3, "character": 24, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/parens.ts#L3" + "url": "typedoc://parens.ts#L3" } ], "type": { @@ -864,7 +864,7 @@ "fileName": "parens.ts", "line": 3, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/parens.ts#L3" + "url": "typedoc://parens.ts#L3" } ] } @@ -886,7 +886,7 @@ "fileName": "parens.ts", "line": 3, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/parens.ts#L3" + "url": "typedoc://parens.ts#L3" } ] }, @@ -908,7 +908,7 @@ "fileName": "query.ts", "line": 3, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/query.ts#L3" + "url": "typedoc://query.ts#L3" } ], "type": { @@ -933,7 +933,7 @@ "fileName": "query.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/query.ts#L1" + "url": "typedoc://query.ts#L1" } ], "type": { @@ -962,7 +962,7 @@ "fileName": "query.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/query.ts#L1" + "url": "typedoc://query.ts#L1" } ] }, @@ -984,7 +984,7 @@ "fileName": "tuple.ts", "line": 14, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L14" + "url": "typedoc://tuple.ts#L14" } ], "type": { @@ -1018,7 +1018,7 @@ "fileName": "tuple.ts", "line": 1, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L1" + "url": "typedoc://tuple.ts#L1" } ], "type": { @@ -1056,7 +1056,7 @@ "fileName": "tuple.ts", "line": 11, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L11" + "url": "typedoc://tuple.ts#L11" } ], "type": { @@ -1094,7 +1094,7 @@ "fileName": "tuple.ts", "line": 5, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L5" + "url": "typedoc://tuple.ts#L5" } ], "type": { @@ -1128,7 +1128,7 @@ "fileName": "tuple.ts", "line": 8, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L8" + "url": "typedoc://tuple.ts#L8" } ], "type": { @@ -1171,7 +1171,7 @@ "fileName": "tuple.ts", "line": 16, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L16" + "url": "typedoc://tuple.ts#L16" } ], "type": { @@ -1208,7 +1208,7 @@ "fileName": "tuple.ts", "line": 3, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L3" + "url": "typedoc://tuple.ts#L3" } ], "type": { @@ -1249,7 +1249,7 @@ "fileName": "tuple.ts", "line": 12, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L12" + "url": "typedoc://tuple.ts#L12" } ], "type": { @@ -1290,7 +1290,7 @@ "fileName": "tuple.ts", "line": 6, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L6" + "url": "typedoc://tuple.ts#L6" } ], "type": { @@ -1327,7 +1327,7 @@ "fileName": "tuple.ts", "line": 9, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L9" + "url": "typedoc://tuple.ts#L9" } ], "type": { @@ -1389,7 +1389,7 @@ "fileName": "tuple.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/tuple.ts#L1" + "url": "typedoc://tuple.ts#L1" } ] }, @@ -1411,7 +1411,7 @@ "fileName": "type-operator.ts", "line": 2, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L2" + "url": "typedoc://type-operator.ts#L2" } ], "type": { @@ -1437,7 +1437,7 @@ "fileName": "type-operator.ts", "line": 3, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L3" + "url": "typedoc://type-operator.ts#L3" } ], "type": { @@ -1460,7 +1460,7 @@ "fileName": "type-operator.ts", "line": 4, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L4" + "url": "typedoc://type-operator.ts#L4" } ], "type": { @@ -1479,7 +1479,7 @@ "fileName": "type-operator.ts", "line": 5, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L5" + "url": "typedoc://type-operator.ts#L5" } ], "type": { @@ -1502,7 +1502,7 @@ "fileName": "type-operator.ts", "line": 3, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L3" + "url": "typedoc://type-operator.ts#L3" } ] } @@ -1519,7 +1519,7 @@ "fileName": "type-operator.ts", "line": 7, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L7" + "url": "typedoc://type-operator.ts#L7" } ], "type": { @@ -1545,7 +1545,7 @@ "fileName": "type-operator.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L1" + "url": "typedoc://type-operator.ts#L1" } ], "type": { @@ -1580,7 +1580,7 @@ "fileName": "type-operator.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/type-operator.ts#L1" + "url": "typedoc://type-operator.ts#L1" } ] }, @@ -1625,7 +1625,7 @@ "fileName": "union-or-intersection.ts", "line": 8, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L8" + "url": "typedoc://union-or-intersection.ts#L8" } ], "type": { @@ -1647,7 +1647,7 @@ "fileName": "union-or-intersection.ts", "line": 4, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L4" + "url": "typedoc://union-or-intersection.ts#L4" } ] }, @@ -1685,7 +1685,7 @@ "fileName": "union-or-intersection.ts", "line": 18, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L18" + "url": "typedoc://union-or-intersection.ts#L18" } ], "type": { @@ -1707,7 +1707,7 @@ "fileName": "union-or-intersection.ts", "line": 14, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L14" + "url": "typedoc://union-or-intersection.ts#L14" } ] }, @@ -1745,7 +1745,7 @@ "fileName": "union-or-intersection.ts", "line": 38, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L38" + "url": "typedoc://union-or-intersection.ts#L38" } ], "type": { @@ -1798,7 +1798,7 @@ "fileName": "union-or-intersection.ts", "line": 33, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L33" + "url": "typedoc://union-or-intersection.ts#L33" } ], "type": { @@ -1836,7 +1836,7 @@ "fileName": "union-or-intersection.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L28" + "url": "typedoc://union-or-intersection.ts#L28" } ], "type": { @@ -1871,7 +1871,7 @@ "fileName": "union-or-intersection.ts", "line": 24, "character": 17, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L24" + "url": "typedoc://union-or-intersection.ts#L24" } ] } @@ -1891,7 +1891,7 @@ "fileName": "union-or-intersection.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/types/union-or-intersection.ts#L4" + "url": "typedoc://union-or-intersection.ts#L4" } ] } diff --git a/src/test/converter/variables/specs.json b/src/test/converter/variables/specs.json index dcfc30e50..75e00ff0c 100644 --- a/src/test/converter/variables/specs.json +++ b/src/test/converter/variables/specs.json @@ -77,7 +77,7 @@ "fileName": "array.ts", "line": 4, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L4" + "url": "typedoc://array.ts#L4" } ], "typeParameters": [ @@ -147,7 +147,7 @@ "fileName": "array.ts", "line": 19, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L19" + "url": "typedoc://array.ts#L19" } ] }, @@ -211,7 +211,7 @@ "fileName": "array.ts", "line": 24, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L24" + "url": "typedoc://array.ts#L24" } ], "extendedTypes": [ @@ -250,7 +250,7 @@ "fileName": "array.ts", "line": 9, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L9" + "url": "typedoc://array.ts#L9" } ], "type": { @@ -320,7 +320,7 @@ "fileName": "array.ts", "line": 14, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L14" + "url": "typedoc://array.ts#L14" } ], "type": { @@ -359,7 +359,7 @@ "fileName": "array.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L4" + "url": "typedoc://array.ts#L4" } ] }, @@ -381,7 +381,7 @@ "fileName": "destructuring.ts", "line": 13, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L13" + "url": "typedoc://destructuring.ts#L13" } ], "type": { @@ -400,7 +400,7 @@ "fileName": "destructuring.ts", "line": 13, "character": 30, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L13" + "url": "typedoc://destructuring.ts#L13" } ], "type": { @@ -419,7 +419,7 @@ "fileName": "destructuring.ts", "line": 13, "character": 46, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L13" + "url": "typedoc://destructuring.ts#L13" } ], "type": { @@ -448,7 +448,7 @@ "fileName": "destructuring.ts", "line": 31, "character": 14, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L31" + "url": "typedoc://destructuring.ts#L31" } ], "type": { @@ -467,7 +467,7 @@ "fileName": "destructuring.ts", "line": 31, "character": 46, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L31" + "url": "typedoc://destructuring.ts#L31" } ], "type": { @@ -495,7 +495,7 @@ "fileName": "destructuring.ts", "line": 25, "character": 7, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L25" + "url": "typedoc://destructuring.ts#L25" } ], "type": { @@ -523,7 +523,7 @@ "fileName": "destructuring.ts", "line": 23, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L23" + "url": "typedoc://destructuring.ts#L23" } ], "type": { @@ -542,7 +542,7 @@ "fileName": "destructuring.ts", "line": 24, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L24" + "url": "typedoc://destructuring.ts#L24" } ], "type": { @@ -561,7 +561,7 @@ "fileName": "destructuring.ts", "line": 4, "character": 15, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L4" + "url": "typedoc://destructuring.ts#L4" } ], "type": { @@ -580,7 +580,7 @@ "fileName": "destructuring.ts", "line": 4, "character": 32, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L4" + "url": "typedoc://destructuring.ts#L4" } ], "type": { @@ -599,7 +599,7 @@ "fileName": "destructuring.ts", "line": 4, "character": 49, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L4" + "url": "typedoc://destructuring.ts#L4" } ], "type": { @@ -618,7 +618,7 @@ "fileName": "destructuring.ts", "line": 38, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L38" + "url": "typedoc://destructuring.ts#L38" } ], "signatures": [ @@ -686,7 +686,7 @@ "fileName": "destructuring.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L4" + "url": "typedoc://destructuring.ts#L4" } ] }, @@ -710,7 +710,7 @@ "fileName": "literal.ts", "line": 43, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L43" + "url": "typedoc://literal.ts#L43" } ], "type": { @@ -733,7 +733,7 @@ "fileName": "literal.ts", "line": 48, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L48" + "url": "typedoc://literal.ts#L48" } ], "type": { @@ -749,7 +749,7 @@ "fileName": "literal.ts", "line": 48, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L48" + "url": "typedoc://literal.ts#L48" } ], "signatures": [ @@ -779,7 +779,7 @@ "fileName": "literal.ts", "line": 48, "character": 27, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L48" + "url": "typedoc://literal.ts#L48" } ], "signatures": [ @@ -820,7 +820,7 @@ "fileName": "literal.ts", "line": 52, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L52" + "url": "typedoc://literal.ts#L52" } ], "type": { @@ -836,7 +836,7 @@ "fileName": "literal.ts", "line": 52, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L52" + "url": "typedoc://literal.ts#L52" } ], "signatures": [ @@ -866,7 +866,7 @@ "fileName": "literal.ts", "line": 52, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L52" + "url": "typedoc://literal.ts#L52" } ], "signatures": [ @@ -907,7 +907,7 @@ "fileName": "literal.ts", "line": 44, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L44" + "url": "typedoc://literal.ts#L44" } ], "type": { @@ -923,7 +923,7 @@ "fileName": "literal.ts", "line": 44, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L44" + "url": "typedoc://literal.ts#L44" } ], "signatures": [ @@ -953,7 +953,7 @@ "fileName": "literal.ts", "line": 44, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L44" + "url": "typedoc://literal.ts#L44" } ], "signatures": [ @@ -999,7 +999,7 @@ "fileName": "literal.ts", "line": 43, "character": 30, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L43" + "url": "typedoc://literal.ts#L43" } ] } @@ -1027,7 +1027,7 @@ "fileName": "literal.ts", "line": 5, "character": 6, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L5" + "url": "typedoc://literal.ts#L5" } ], "type": { @@ -1050,7 +1050,7 @@ "fileName": "literal.ts", "line": 19, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L19" + "url": "typedoc://literal.ts#L19" } ], "type": { @@ -1070,7 +1070,7 @@ "fileName": "literal.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L20" + "url": "typedoc://literal.ts#L20" } ], "type": { @@ -1090,7 +1090,7 @@ "fileName": "literal.ts", "line": 21, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L21" + "url": "typedoc://literal.ts#L21" } ], "type": { @@ -1110,7 +1110,7 @@ "fileName": "literal.ts", "line": 17, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L17" + "url": "typedoc://literal.ts#L17" } ], "type": { @@ -1130,7 +1130,7 @@ "fileName": "literal.ts", "line": 18, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L18" + "url": "typedoc://literal.ts#L18" } ], "type": { @@ -1150,7 +1150,7 @@ "fileName": "literal.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L10" + "url": "typedoc://literal.ts#L10" } ], "type": { @@ -1173,7 +1173,7 @@ "fileName": "literal.ts", "line": 15, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L15" + "url": "typedoc://literal.ts#L15" } ], "type": { @@ -1196,7 +1196,7 @@ "fileName": "literal.ts", "line": 12, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L12" + "url": "typedoc://literal.ts#L12" } ], "type": { @@ -1212,7 +1212,7 @@ "fileName": "literal.ts", "line": 12, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L12" + "url": "typedoc://literal.ts#L12" } ], "signatures": [ @@ -1255,7 +1255,7 @@ "fileName": "literal.ts", "line": 13, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L13" + "url": "typedoc://literal.ts#L13" } ], "type": { @@ -1275,7 +1275,7 @@ "fileName": "literal.ts", "line": 13, "character": 32, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L13" + "url": "typedoc://literal.ts#L13" } ], "type": { @@ -1299,7 +1299,7 @@ "fileName": "literal.ts", "line": 13, "character": 19, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L13" + "url": "typedoc://literal.ts#L13" } ] } @@ -1321,7 +1321,7 @@ "fileName": "literal.ts", "line": 11, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L11" + "url": "typedoc://literal.ts#L11" } ], "type": { @@ -1346,7 +1346,7 @@ "fileName": "literal.ts", "line": 10, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L10" + "url": "typedoc://literal.ts#L10" } ] } @@ -1364,7 +1364,7 @@ "fileName": "literal.ts", "line": 7, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L7" + "url": "typedoc://literal.ts#L7" } ], "type": { @@ -1380,7 +1380,7 @@ "fileName": "literal.ts", "line": 7, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L7" + "url": "typedoc://literal.ts#L7" } ], "signatures": [ @@ -1411,7 +1411,7 @@ "fileName": "literal.ts", "line": 6, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L6" + "url": "typedoc://literal.ts#L6" } ], "type": { @@ -1441,7 +1441,7 @@ "fileName": "literal.ts", "line": 5, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L5" + "url": "typedoc://literal.ts#L5" } ] } @@ -1467,7 +1467,7 @@ "fileName": "literal.ts", "line": 27, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L27" + "url": "typedoc://literal.ts#L27" } ], "type": { @@ -1492,7 +1492,7 @@ "fileName": "literal.ts", "line": 35, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L35" + "url": "typedoc://literal.ts#L35" } ], "type": { @@ -1513,7 +1513,7 @@ "fileName": "literal.ts", "line": 36, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L36" + "url": "typedoc://literal.ts#L36" } ], "type": { @@ -1532,7 +1532,7 @@ "fileName": "literal.ts", "line": 30, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L30" + "url": "typedoc://literal.ts#L30" } ], "type": { @@ -1555,7 +1555,7 @@ "fileName": "literal.ts", "line": 33, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L33" + "url": "typedoc://literal.ts#L33" } ], "type": { @@ -1577,7 +1577,7 @@ "fileName": "literal.ts", "line": 32, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "type": { @@ -1593,7 +1593,7 @@ "fileName": "literal.ts", "line": 32, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "signatures": [ @@ -1636,7 +1636,7 @@ "fileName": "literal.ts", "line": 32, "character": 33, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "type": { @@ -1655,7 +1655,7 @@ "fileName": "literal.ts", "line": 32, "character": 44, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "type": { @@ -1678,7 +1678,7 @@ "fileName": "literal.ts", "line": 32, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ] } @@ -1699,7 +1699,7 @@ "fileName": "literal.ts", "line": 31, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L31" + "url": "typedoc://literal.ts#L31" } ], "type": { @@ -1723,7 +1723,7 @@ "fileName": "literal.ts", "line": 30, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L30" + "url": "typedoc://literal.ts#L30" } ] } @@ -1740,7 +1740,7 @@ "fileName": "literal.ts", "line": 29, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L29" + "url": "typedoc://literal.ts#L29" } ], "type": { @@ -1756,7 +1756,7 @@ "fileName": "literal.ts", "line": 29, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L29" + "url": "typedoc://literal.ts#L29" } ], "signatures": [ @@ -1786,7 +1786,7 @@ "fileName": "literal.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L28" + "url": "typedoc://literal.ts#L28" } ], "type": { @@ -1812,7 +1812,7 @@ "fileName": "literal.ts", "line": 27, "character": 24, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L27" + "url": "typedoc://literal.ts#L27" } ] } @@ -1834,7 +1834,7 @@ "fileName": "literal.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L1" + "url": "typedoc://literal.ts#L1" } ] }, @@ -1858,7 +1858,7 @@ "fileName": "variable.ts", "line": 1, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L1" + "url": "typedoc://variable.ts#L1" } ], "type": { @@ -1878,7 +1878,7 @@ "fileName": "variable.ts", "line": 2, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L2" + "url": "typedoc://variable.ts#L2" } ], "type": { @@ -1898,7 +1898,7 @@ "fileName": "variable.ts", "line": 3, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L3" + "url": "typedoc://variable.ts#L3" } ], "type": { @@ -1918,7 +1918,7 @@ "fileName": "variable.ts", "line": 5, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L5" + "url": "typedoc://variable.ts#L5" } ], "type": { @@ -1937,7 +1937,7 @@ "fileName": "variable.ts", "line": 6, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L6" + "url": "typedoc://variable.ts#L6" } ], "type": { @@ -1964,7 +1964,7 @@ "fileName": "variable.ts", "line": 7, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L7" + "url": "typedoc://variable.ts#L7" } ], "type": { @@ -1999,7 +1999,7 @@ "fileName": "variable.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/variable.ts#L1" + "url": "typedoc://variable.ts#L1" } ] } diff --git a/src/test/converter/variables/specs.nodoc.json b/src/test/converter/variables/specs.nodoc.json index 423f4542a..34a994392 100644 --- a/src/test/converter/variables/specs.nodoc.json +++ b/src/test/converter/variables/specs.nodoc.json @@ -30,7 +30,7 @@ "fileName": "array.ts", "line": 4, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L4" + "url": "typedoc://array.ts#L4" } ], "typeParameters": [ @@ -69,7 +69,7 @@ "fileName": "array.ts", "line": 19, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L19" + "url": "typedoc://array.ts#L19" } ] }, @@ -92,7 +92,7 @@ "fileName": "array.ts", "line": 24, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L24" + "url": "typedoc://array.ts#L24" } ], "extendedTypes": [ @@ -131,7 +131,7 @@ "fileName": "array.ts", "line": 9, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L9" + "url": "typedoc://array.ts#L9" } ], "type": { @@ -201,7 +201,7 @@ "fileName": "array.ts", "line": 14, "character": 13, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L14" + "url": "typedoc://array.ts#L14" } ], "type": { @@ -240,7 +240,7 @@ "fileName": "array.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/array.ts#L4" + "url": "typedoc://array.ts#L4" } ] }, @@ -262,7 +262,7 @@ "fileName": "destructuring.ts", "line": 38, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L38" + "url": "typedoc://destructuring.ts#L38" } ], "signatures": [ @@ -314,7 +314,7 @@ "fileName": "destructuring.ts", "line": 4, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/destructuring.ts#L4" + "url": "typedoc://destructuring.ts#L4" } ] }, @@ -346,7 +346,7 @@ "fileName": "literal.ts", "line": 5, "character": 6, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L5" + "url": "typedoc://literal.ts#L5" } ], "type": { @@ -369,7 +369,7 @@ "fileName": "literal.ts", "line": 19, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L19" + "url": "typedoc://literal.ts#L19" } ], "type": { @@ -389,7 +389,7 @@ "fileName": "literal.ts", "line": 20, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L20" + "url": "typedoc://literal.ts#L20" } ], "type": { @@ -409,7 +409,7 @@ "fileName": "literal.ts", "line": 21, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L21" + "url": "typedoc://literal.ts#L21" } ], "type": { @@ -429,7 +429,7 @@ "fileName": "literal.ts", "line": 17, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L17" + "url": "typedoc://literal.ts#L17" } ], "type": { @@ -449,7 +449,7 @@ "fileName": "literal.ts", "line": 18, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L18" + "url": "typedoc://literal.ts#L18" } ], "type": { @@ -469,7 +469,7 @@ "fileName": "literal.ts", "line": 10, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L10" + "url": "typedoc://literal.ts#L10" } ], "type": { @@ -492,7 +492,7 @@ "fileName": "literal.ts", "line": 15, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L15" + "url": "typedoc://literal.ts#L15" } ], "type": { @@ -515,7 +515,7 @@ "fileName": "literal.ts", "line": 12, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L12" + "url": "typedoc://literal.ts#L12" } ], "type": { @@ -531,7 +531,7 @@ "fileName": "literal.ts", "line": 12, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L12" + "url": "typedoc://literal.ts#L12" } ], "signatures": [ @@ -574,7 +574,7 @@ "fileName": "literal.ts", "line": 13, "character": 21, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L13" + "url": "typedoc://literal.ts#L13" } ], "type": { @@ -594,7 +594,7 @@ "fileName": "literal.ts", "line": 13, "character": 32, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L13" + "url": "typedoc://literal.ts#L13" } ], "type": { @@ -618,7 +618,7 @@ "fileName": "literal.ts", "line": 13, "character": 19, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L13" + "url": "typedoc://literal.ts#L13" } ] } @@ -640,7 +640,7 @@ "fileName": "literal.ts", "line": 11, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L11" + "url": "typedoc://literal.ts#L11" } ], "type": { @@ -665,7 +665,7 @@ "fileName": "literal.ts", "line": 10, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L10" + "url": "typedoc://literal.ts#L10" } ] } @@ -683,7 +683,7 @@ "fileName": "literal.ts", "line": 7, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L7" + "url": "typedoc://literal.ts#L7" } ], "type": { @@ -699,7 +699,7 @@ "fileName": "literal.ts", "line": 7, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L7" + "url": "typedoc://literal.ts#L7" } ], "signatures": [ @@ -730,7 +730,7 @@ "fileName": "literal.ts", "line": 6, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L6" + "url": "typedoc://literal.ts#L6" } ], "type": { @@ -760,7 +760,7 @@ "fileName": "literal.ts", "line": 5, "character": 22, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L5" + "url": "typedoc://literal.ts#L5" } ] } @@ -786,7 +786,7 @@ "fileName": "literal.ts", "line": 27, "character": 11, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L27" + "url": "typedoc://literal.ts#L27" } ], "type": { @@ -811,7 +811,7 @@ "fileName": "literal.ts", "line": 35, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L35" + "url": "typedoc://literal.ts#L35" } ], "type": { @@ -832,7 +832,7 @@ "fileName": "literal.ts", "line": 36, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L36" + "url": "typedoc://literal.ts#L36" } ], "type": { @@ -851,7 +851,7 @@ "fileName": "literal.ts", "line": 30, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L30" + "url": "typedoc://literal.ts#L30" } ], "type": { @@ -874,7 +874,7 @@ "fileName": "literal.ts", "line": 33, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L33" + "url": "typedoc://literal.ts#L33" } ], "type": { @@ -896,7 +896,7 @@ "fileName": "literal.ts", "line": 32, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "type": { @@ -912,7 +912,7 @@ "fileName": "literal.ts", "line": 32, "character": 16, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "signatures": [ @@ -955,7 +955,7 @@ "fileName": "literal.ts", "line": 32, "character": 33, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "type": { @@ -974,7 +974,7 @@ "fileName": "literal.ts", "line": 32, "character": 44, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ], "type": { @@ -997,7 +997,7 @@ "fileName": "literal.ts", "line": 32, "character": 31, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L32" + "url": "typedoc://literal.ts#L32" } ] } @@ -1018,7 +1018,7 @@ "fileName": "literal.ts", "line": 31, "character": 8, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L31" + "url": "typedoc://literal.ts#L31" } ], "type": { @@ -1042,7 +1042,7 @@ "fileName": "literal.ts", "line": 30, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L30" + "url": "typedoc://literal.ts#L30" } ] } @@ -1059,7 +1059,7 @@ "fileName": "literal.ts", "line": 29, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L29" + "url": "typedoc://literal.ts#L29" } ], "type": { @@ -1075,7 +1075,7 @@ "fileName": "literal.ts", "line": 29, "character": 12, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L29" + "url": "typedoc://literal.ts#L29" } ], "signatures": [ @@ -1105,7 +1105,7 @@ "fileName": "literal.ts", "line": 28, "character": 4, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L28" + "url": "typedoc://literal.ts#L28" } ], "type": { @@ -1131,7 +1131,7 @@ "fileName": "literal.ts", "line": 27, "character": 24, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L27" + "url": "typedoc://literal.ts#L27" } ] } @@ -1152,7 +1152,7 @@ "fileName": "literal.ts", "line": 1, "character": 0, - "url": "https://github.com/TypeStrong/typedoc/blob/fake/src/test/converter/variables/literal.ts#L1" + "url": "typedoc://literal.ts#L1" } ] } diff --git a/src/test/programs.ts b/src/test/programs.ts index 639e5da07..1903430af 100644 --- a/src/test/programs.ts +++ b/src/test/programs.ts @@ -1,7 +1,13 @@ import { deepStrictEqual as equal } from "assert"; import { join } from "path"; import * as ts from "typescript"; -import { Application, EntryPointStrategy, TSConfigReader } from ".."; +import { + Application, + EntryPointStrategy, + SourceReference, + TSConfigReader, +} from ".."; +import type { ModelToObject } from "../lib/serialization/schema"; let converterApp: Application | undefined; let converterProgram: ts.Program | undefined; @@ -27,6 +33,25 @@ export function getConverterApp() { entryPointStrategy: EntryPointStrategy.Expand, gitRevision: "fake", }); + + converterApp.serializer.addSerializer({ + priority: -1, + supports(obj) { + return obj instanceof SourceReference; + }, + toObject( + ref: SourceReference, + obj: ModelToObject, + _serializer + ) { + if (obj.url) { + obj.url = `typedoc://${obj.url.substring( + obj.url.indexOf(ref.fileName) + )}`; + } + return obj; + }, + }); } return converterApp;