Skip to content

Commit

Permalink
Merge pull request #222 from olafurpg/local-export
Browse files Browse the repository at this point in the history
Declare local symbols as "export" instead "import" monikers
  • Loading branch information
olafurpg authored May 19, 2021
2 parents c8a122a + 8c6ab60 commit ba89c92
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 ba89c92

Please sign in to comment.