igniteui-react-core
Version:
Ignite UI React Core.
41 lines (40 loc) • 1.31 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { Base, NotSupportedException, markType } from "./type";
/**
* @hidden
*/
export let Capture = /*@__PURE__*/ (() => {
class Capture extends Base {
constructor(a, b, c) {
super();
this.a = 0;
this.c = 0;
this.f = null;
this.a = a;
this.c = b;
this.f = c;
}
get b() {
if (this.a < 0) {
throw new NotSupportedException(1, "Cannot get the index of regex groups");
}
return this.a;
}
get d() {
return this.c;
}
get g() {
return this.f;
}
toString() {
return this.f;
}
}
Capture.$t = /*@__PURE__*/ markType(Capture, 'Capture');
return Capture;
})();