Skip to content

Commit

Permalink
Turn on reference collecting by default
Browse files Browse the repository at this point in the history
Signed-off-by: worksofliam <[email protected]>
  • Loading branch information
worksofliam committed Dec 6, 2024
1 parent 80d99db commit 47ac094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion language/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export default class Parser {
}
}

async getDocs(workingUri: string, baseContent?: string, options: ParseOptions = {withIncludes: true, collectReferences: false}): Promise<Cache|undefined> {
async getDocs(workingUri: string, baseContent?: string, options: ParseOptions = {withIncludes: true, collectReferences: true}): Promise<Cache|undefined> {
const existingCache = this.getParsedCache(workingUri);
if (options.ignoreCache !== true && existingCache) {
return existingCache;
Expand Down

0 comments on commit 47ac094

Please sign in to comment.