// Copyright (c) StellaOps. All rights reserved. // Licensed under BUSL-1.1. See LICENSE in the project root. using System.Text.RegularExpressions; namespace StellaOps.BinaryIndex.Decompiler; public sealed partial class DecompiledCodeParser { [GeneratedRegex(@"(?\w+)\s+(?\w+)\s*(?:=|;)", RegexOptions.Compiled)] private static partial Regex VariableDeclarationRegex(); [GeneratedRegex(@"(?\w+)\s*\(", RegexOptions.Compiled)] private static partial Regex FunctionCallRegex(); }