Clover icon

Coverage Report

  1. Project Clover database Thu Nov 7 2024 10:11:34 GMT
  2. Package com.stevesoft.pat

File LeftRule.java

 

Coverage histogram

../../../img/srcFileCovDistChart0.png
60% of files have more coverage

Code metrics

0
2
3
1
31
15
3
1.5
0.67
3
1

Classes

Class Line # Actions
LeftRule 16 2 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    /**
11    * The apply(StringBufferLike sb,RegRes res) method of this derivation of
12    * ReplaceRule appends the contents of res.left() to the StringBuffer sb.
13    *
14    * @see com.stevesoft.pat.ReplaceRule
15    */
 
16    public class LeftRule extends ReplaceRule
17    {
 
18  0 toggle public LeftRule()
19    {
20    }
21   
 
22  0 toggle public void apply(StringBufferLike sb, RegRes res)
23    {
24  0 sb.append(res.left());
25    }
26   
 
27  0 toggle public String toString1()
28    {
29  0 return "$`";
30    }
31    }