Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package com.stevesoft.pat

File SubMark.java

 

Coverage histogram

../../../img/srcFileCovDistChart8.png
20% of files have more coverage

Code metrics

2
6
2
1
32
20
3
0.5
3
2
1.5

Classes

Class Line # Actions
SubMark 11 6 3
0.880%
 

Contributing tests

This file is covered by 28 tests. .

Source view

1    //
2    // This software is now distributed according to
3    // the Lesser Gnu Public License. Please see
4    // http://www.gnu.org/copyleft/lesser.txt for
5    // the details.
6    // -- Happy Computing!
7    //
8    package com.stevesoft.pat;
9   
10    /** OrMark and SubMark together implement ( ... ) */
 
11    class SubMark extends Pattern
12    {
13    int end_pos, start_pos;
14   
15    OrMark om;
16   
 
17  0 toggle public String toString()
18    {
19  0 return "";
20    }
21   
 
22  43850 toggle public int matchInternal(int i, Pthings pt)
23    {
24  43850 pt.marks[om.id + pt.nMarks] = i;
25  43850 int ret = nextMatch(i, pt);
26  43850 if (ret < 0)
27    {
28  31546 pt.marks[om.id + pt.nMarks] = -1;
29    }
30  43850 return ret;
31    }
32    }