Skip to content

Commit

Permalink
feat(c#): make container to use sample imports to ds
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Mar 25, 2022
1 parent 01ac839 commit 0171c89
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ open class CSharpAnalyserApp(var config: ChapiConfig = ChapiConfig(language = La

return codeContainer.Containers.flatMap { container ->
container.DataStructures.map {
it.FilePath = file.absolutePath
it
it.apply {
it.Imports = codeContainer.Imports
it.FilePath = file.absolutePath
}
}
}.toList()
}
Expand Down

0 comments on commit 0171c89

Please # to comment.