Clover icon

Coverage Report

  1. Project Clover database Wed Dec 3 2025 13:28:34 GMT
  2. Package com.stevesoft.pat

File SubMark.java

 

Coverage histogram

../../../img/srcFileCovDistChart8.png
21% 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 55 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  55481 toggle public int matchInternal(int i, Pthings pt)
23    {
24  55481 pt.marks[om.id + pt.nMarks] = i;
25  55481 int ret = nextMatch(i, pt);
26  55481 if (ret < 0)
27    {
28  42436 pt.marks[om.id + pt.nMarks] = -1;
29    }
30  55481 return ret;
31    }
32    }