View Javadoc
1   package com.puppycrawl.tools.checkstyle.grammar.antlr4;
2   
3   public class InputAntlr4AstRegressionConstructorCall {
4       private int f;
5   
6       public InputAntlr4AstRegressionConstructorCall(int i) {
7           f = i;
8       }
9   
10      public InputAntlr4AstRegressionConstructorCall(float f) {
11          this((int) f);
12      }
13  
14  }