Files
codeql/java/ql/test/stubs/okhttp-4.9.3/kotlin/text/MatchGroup.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

20 lines
660 B
Java
Generated

// Generated automatically from kotlin.text.MatchGroup for testing purposes
package kotlin.text;
import kotlin.ranges.IntRange;
public class MatchGroup
{
protected MatchGroup() {}
public MatchGroup(String p0, IntRange p1){}
public String toString(){ return null; }
public boolean equals(Object p0){ return false; }
public final IntRange component2(){ return null; }
public final IntRange getRange(){ return null; }
public final MatchGroup copy(String p0, IntRange p1){ return null; }
public final String component1(){ return null; }
public final String getValue(){ return null; }
public int hashCode(){ return 0; }
}