This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
namespace System.Text.RegularExpressions.Syntax
{
// Token: 0x020002DF RID: 735
internal class NonBacktrackingGroup : Group
{
// Token: 0x06001ABF RID: 6847 RVA: 0x00062B0C File Offset: 0x00060D0C
public override void Compile(ICompiler cmp, bool reverse)
{
LinkRef linkRef = cmp.NewLink();
cmp.EmitSub(linkRef);
base.Compile(cmp, reverse);
cmp.EmitTrue();
cmp.ResolveLink(linkRef);
}
// Token: 0x06001AC0 RID: 6848 RVA: 0x00062B3C File Offset: 0x00060D3C
public override bool IsComplex()
{
return true;
}
}
}