Skip to content

Commit

Permalink
Declare local symbols as "export" instead "import" monikers
Browse files Browse the repository at this point in the history
  • Loading branch information
olafurpg committed May 18, 2021
1 parent e53a450 commit 8c6ab60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public ResultIds apply(String symbol) {
int resultSet = writer.emitResultSet();

// Moniker
int monikerId = writer.emitMonikerVertex(symbol, isExportedSymbol);
int monikerId = writer.emitMonikerVertex(symbol, hasDefinitionResult);
writer.emitMonikerEdge(resultSet, monikerId);
packages.writeImportedSymbol(symbol, monikerId);

Expand Down

0 comments on commit 8c6ab60

Please sign in to comment.