Clover icon

Coverage Report

  1. Project Clover database Thu Nov 7 2024 17:01:39 GMT
  2. Package com.stevesoft.pat

File SubMark.java

 

Coverage histogram

../../../img/srcFileCovDistChart0.png
0% 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.00%
 

Contributing tests

No tests hitting this source file were found.

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