Skip to content

Commit

Permalink
feat: add label syntax support (#173)
Browse files Browse the repository at this point in the history
Ensures that the CFG incorporates labels
Fixes bug with the instrument with prefix/suffix operators
Changes placeholder ids to use start-to-end instead of end-to-end
Fixes bug with instanceof operator in the branch distance visitor
Fixes failing tests of CFG
  • Loading branch information
dstallenberg authored Sep 13, 2023
1 parent c8672fd commit 6f53126
Show file tree
Hide file tree
Showing 29 changed files with 4,842 additions and 2,760 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,13 @@ jobs:
- libraries/ast-visitor-javascript
- libraries/instrumentation-javascript
- libraries/search-javascript
- plugins/plugin-javascript-event-listener-state-storage
- tools/javascript

steps:
# Cloning
- uses: actions/checkout@v3

# Download test results
- uses: actions/download-artifact@v3
with:
Expand All @@ -82,6 +86,7 @@ jobs:
# We collect all coverages in parallel
parallel: true
flag-name: ${{ matrix.package }}
base-path: ${{ matrix.package }}/
path-to-lcov: ${{ github.workspace }}/${{ matrix.package }}/coverage/lcov.info

# Indicate sending coverage to Coveralls is finished
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,13 @@ jobs:
- libraries/ast-visitor-javascript
- libraries/instrumentation-javascript
- libraries/search-javascript
- plugins/plugin-javascript-event-listener-state-storage
- tools/javascript

steps:
# Cloning
- uses: actions/checkout@v3

# Download test results
- uses: actions/download-artifact@v3
with:
Expand All @@ -117,6 +121,7 @@ jobs:
# We collect all coverages in parallel
parallel: true
flag-name: ${{ matrix.package }}
base-path: ${{ matrix.package }}/
path-to-lcov: ${{ github.workspace }}/${{ matrix.package }}/coverage/lcov.info

# Indicate sending coverage to Coveralls is finished
Expand Down
Loading

0 comments on commit 6f53126

Please sign in to comment.