diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2019-01-21 23:32:12 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2019-01-21 23:32:12 +0800 |
commit | e5c4390489b02f87a4d497095ea83d0737047afc (patch) | |
tree | 7dc58aed853a38a99a42d589802fba13b183ddea /packages/sol-tracing-utils/src/collect_coverage_entries.ts | |
parent | 61910f264c4671f057f774a415c673f10c09ddb1 (diff) | |
download | dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.tar dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.tar.gz dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.tar.bz2 dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.tar.lz dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.tar.xz dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.tar.zst dexon-0x-contracts-e5c4390489b02f87a4d497095ea83d0737047afc.zip |
Fix a bug when some parts of the profiling report were missing because of the coverage ignore lines
Diffstat (limited to 'packages/sol-tracing-utils/src/collect_coverage_entries.ts')
-rw-r--r-- | packages/sol-tracing-utils/src/collect_coverage_entries.ts | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/packages/sol-tracing-utils/src/collect_coverage_entries.ts b/packages/sol-tracing-utils/src/collect_coverage_entries.ts index 9e3591d74..964095b53 100644 --- a/packages/sol-tracing-utils/src/collect_coverage_entries.ts +++ b/packages/sol-tracing-utils/src/collect_coverage_entries.ts @@ -5,17 +5,17 @@ import * as parser from 'solidity-parser-antlr'; import { ASTVisitor, CoverageEntriesDescription } from './ast_visitor'; import { getOffsetToLocation } from './source_maps'; -const IGNORE_RE = /\/\*\s*solcov\s+ignore\s+next\s*\*\/\s*/gm; - // Parsing source code for each transaction/code is slow and therefore we cache it const sourceHashToCoverageEntries: { [sourceHash: string]: CoverageEntriesDescription } = {}; -export const collectCoverageEntries = (contractSource: string) => { +export const collectCoverageEntries = (contractSource: string, ignoreRegexp?: RegExp) => { const sourceHash = ethUtil.sha3(contractSource).toString('hex'); if (_.isUndefined(sourceHashToCoverageEntries[sourceHash]) && !_.isUndefined(contractSource)) { const ast = parser.parse(contractSource, { range: true }); const offsetToLocation = getOffsetToLocation(contractSource); - const ignoreRangesBegingingAt = gatherRangesToIgnore(contractSource); + const ignoreRangesBegingingAt = _.isUndefined(ignoreRegexp) + ? [] + : gatherRangesToIgnore(contractSource, ignoreRegexp as RegExp); const visitor = new ASTVisitor(offsetToLocation, ignoreRangesBegingingAt); parser.visit(ast, visitor); sourceHashToCoverageEntries[sourceHash] = visitor.getCollectedCoverageEntries(); @@ -25,12 +25,12 @@ export const collectCoverageEntries = (contractSource: string) => { }; // Gather the start index of all code blocks preceeded by "/* solcov ignore next */" -function gatherRangesToIgnore(contractSource: string): number[] { +function gatherRangesToIgnore(contractSource: string, ignoreRegexp: RegExp): number[] { const ignoreRangesStart = []; let match; do { - match = IGNORE_RE.exec(contractSource); + match = ignoreRegexp.exec(contractSource); if (match) { const matchLen = match[0].length; ignoreRangesStart.push(match.index + matchLen); |