Skip to content

Commit

Permalink
🔖 Release v0.5.10
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Apr 27, 2021
1 parent 90f405e commit 054d210
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.5.10] - 2021-04-27

### Fixed

- Corrected Identifier's code for Static Field Access

## [0.5.9] - 2021-04-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.9
0.5.10
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ class BaseCPGPass(private val g: BriefUnitGraph) {
.lineNumber(Option.apply(currentLine))
.columnNumber(Option.apply(currentCol))
.apply {
// LocalCache.getType(clazz.type.toQuotedString())?.let { t -> builder.addEdge(this, t, EVAL_TYPE) }
LocalCache.getType(clazz.type.toQuotedString())?.let { t -> builder.addEdge(this, t, EVAL_TYPE) }
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import io.shiftleft.codepropertygraph.generated.nodes.File as ODBFile
class BasicExtractorTest {
companion object {
private val driver = DriverFactory(GraphDatabase.OVERFLOWDB) as OverflowDbDriver
private val TEST_PATH = "extractor_tests/"
private const val TEST_PATH = "extractor_tests/"
private val sep = File.separator
private lateinit var extractor: Extractor
private lateinit var g: Graph
Expand Down

0 comments on commit 054d210

Please sign in to comment.