1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Update RegEx.cpp

This commit is contained in:
Sandu Liviu Catalin 2022-03-16 18:33:49 +02:00
parent 2b85b3a035
commit 1c7fee69ea

View File

@ -69,17 +69,17 @@ void Register_POCO_RegEx(HSQUIRRELVM vm, Table & ns)
// Member Methods
//.Func(_SC("Assign"), &PcRegEx::assign)
// Overloaded Member Methods
.Overload(_SC("MatchFirst"), &PcRegEx::MatchFirst)
.Overload(_SC("MatchFirst"), &PcRegEx::MatchFirst_)
.Overload(_SC("MatchFirstFrom"), &PcRegEx::MatchFirstFrom)
.Overload(_SC("MatchFirstFrom"), &PcRegEx::MatchFirstFrom_)
.Overload(_SC("Match"), &PcRegEx::Match)
.Overload(_SC("Match"), &PcRegEx::Match_)
.Overload(_SC("MatchFrom"), &PcRegEx::MatchFrom)
.Overload(_SC("MatchFrom"), &PcRegEx::MatchFrom_)
.Overload(_SC("Matches"), &PcRegEx::Matches)
.Overload(_SC("Matches"), &PcRegEx::Matches_)
.Overload(_SC("Matches"), &PcRegEx::MatchesEx)
.FmtFunc(_SC("MatchFirst"), &PcRegEx::MatchFirst)
.FmtFunc(_SC("MatchFirstEx"), &PcRegEx::MatchFirst_)
.FmtFunc(_SC("MatchFirstFrom"), &PcRegEx::MatchFirstFrom)
.FmtFunc(_SC("MatchFirstFromEx"), &PcRegEx::MatchFirstFrom_)
.FmtFunc(_SC("Match"), &PcRegEx::Match)
.FmtFunc(_SC("MatchEx"), &PcRegEx::Match_)
.FmtFunc(_SC("MatchFrom"), &PcRegEx::MatchFrom)
.FmtFunc(_SC("MatchFromEx"), &PcRegEx::MatchFrom_)
.FmtFunc(_SC("Matches"), &PcRegEx::Matches)
.FmtFunc(_SC("MatchesEx"), &PcRegEx::Matches_)
.FmtFunc(_SC("MatchesEx2"), &PcRegEx::MatchesEx)
);
// --------------------------------------------------------------------------------------------
ConstTable(vm).Enum(_SC("SqRegExOption"), Enumeration(vm)