优化实践教程示例项目
您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

30733 行
1.4 MiB

#include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
template <typename T1>
struct VirtualActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename T1, typename T2, typename T3>
struct VirtualActionInvoker3
{
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct VirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct VirtualFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct VirtualFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct VirtualFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R>
struct GenericVirtualFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1>
struct InvokerFuncInvoker1;
template <typename R, typename T1>
struct InvokerFuncInvoker1<R, T1*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
{
R ret;
void* params[1] = { p1 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2;
template <typename R, typename T1, typename T2>
struct InvokerFuncInvoker2<R, T1*, T2*>
{
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
{
R ret;
void* params[2] = { p1, p2 };
method->invoker_method(methodPtr, method, obj, params, &ret);
return ret;
}
};
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28;
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>
struct Dictionary_2_t8B428D684ADA214F1A90B42123A1536ED34C1FF8;
// System.Func`1<System.Object>
struct Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4;
// System.Func`1<System.String>
struct Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C;
// System.Collections.Generic.IList`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>
struct IList_1_tA7136F55A983EF77C6584C851E69418ACB931BFF;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.EqualityAdapter>
struct IList_1_tBC0568E43AC9500DA0DE4498C0A2022B2F7CF5CE;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>
struct IList_1_tB225771DE5B3BFD4A7B48C9869AEDCC1AAD43D71;
// System.Lazy`1<System.Object>
struct Lazy_1_t904FA5CA043D1868CDD4220B007FAA2894327C93;
// System.Lazy`1<System.String>
struct Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB;
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>
struct List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299;
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.EqualityAdapter>
struct List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0;
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>
struct List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02;
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>
struct List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2;
// System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>
struct Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4;
// System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint>
struct Stack_1_t37425C539A9709EDA6949A2DC639156708273E04;
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67;
// System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>[]
struct KeyValuePair_2U5BU5D_t23B752451A087EEEB988DC37B0BD033B7797B2DC;
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
// NUnit.Framework.Constraints.ConstraintOperator[]
struct ConstraintOperatorU5BU5D_tFB9C683FBCD163969DAFC0560B0AF90B97380BA2;
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
// System.IO.DirectoryInfo[]
struct DirectoryInfoU5BU5D_t5D09D46C6EBC15480AF7C63C54276B57A4287953;
// NUnit.Framework.Constraints.EqualityAdapter[]
struct EqualityAdapterU5BU5D_t265E6EB7663B853760A9F9755B2122E09F4558BD;
// System.IO.FileInfo[]
struct FileInfoU5BU5D_tCB74DD125A9220ABCF5F48549F2C71B74BBCD7E6;
// NUnit.Framework.Constraints.IConstraint[]
struct IConstraintU5BU5D_tB406C99B82CD01D2707EA2AF74EEE2E2BADCC922;
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
// System.IntPtr[]
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep[]
struct OrderingStepU5BU5D_tCF94A2490DFEF90E628B5FF58F60313B1383F4B7;
// NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint[]
struct FailurePointU5BU5D_t3C213919C72C1D29C3DC170A8470963ABDBEC08E;
// NUnit.Framework.Constraints.AllItemsConstraint
struct AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB;
// NUnit.Framework.Constraints.AllOperator
struct AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059;
// NUnit.Framework.Constraints.AndConstraint
struct AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C;
// NUnit.Framework.Constraints.AndOperator
struct AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF;
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
// NUnit.Framework.Constraints.AssignableFromConstraint
struct AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0;
// NUnit.Framework.Constraints.AssignableToConstraint
struct AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D;
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA;
// NUnit.Framework.Constraints.AttributeConstraint
struct AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9;
// NUnit.Framework.Constraints.AttributeExistsConstraint
struct AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0;
// NUnit.Framework.Constraints.AttributeOperator
struct AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA;
// NUnit.Framework.Constraints.BinaryConstraint
struct BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04;
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F;
// NUnit.Framework.Constraints.BinaryOperator
struct BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4;
// System.IO.BinaryReader
struct BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158;
// NUnit.Framework.Constraints.BinarySerializableConstraint
struct BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723;
// System.Reflection.Binder
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
// System.Globalization.Calendar
struct Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B;
// NUnit.Framework.Constraints.CollectionConstraint
struct CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E;
// NUnit.Framework.Constraints.CollectionContainsConstraint
struct CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0;
// NUnit.Framework.Constraints.CollectionEquivalentConstraint
struct CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364;
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint
struct CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618;
// NUnit.Framework.Constraints.CollectionOperator
struct CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E;
// NUnit.Framework.Constraints.CollectionOrderedConstraint
struct CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1;
// NUnit.Framework.Constraints.CollectionSubsetConstraint
struct CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D;
// NUnit.Framework.Constraints.CollectionSupersetConstraint
struct CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74;
// NUnit.Framework.Constraints.CollectionTally
struct CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9;
// System.Globalization.CompareInfo
struct CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57;
// NUnit.Framework.Constraints.ComparisonAdapter
struct ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D;
// NUnit.Framework.Constraints.ComparisonConstraint
struct ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2;
// NUnit.Framework.Constraints.Constraint
struct Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09;
// NUnit.Framework.Constraints.ConstraintBuilder
struct ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8;
// NUnit.Framework.Constraints.ConstraintExpression
struct ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C;
// NUnit.Framework.Constraints.ConstraintFactory
struct ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4;
// NUnit.Framework.Constraints.ConstraintOperator
struct ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02;
// NUnit.Framework.Constraints.ConstraintResult
struct ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D;
// NUnit.Framework.Constraints.ContainsConstraint
struct ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F;
// System.Globalization.CultureData
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D;
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A;
// System.Text.Decoder
struct Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC;
// NUnit.Framework.Constraints.DelayedConstraint
struct DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
// NUnit.Framework.Constraints.DictionaryContainsKeyConstraint
struct DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2;
// System.IO.DirectoryInfo
struct DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2;
// NUnit.Framework.Constraints.EmptyCollectionConstraint
struct EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8;
// NUnit.Framework.Constraints.EmptyConstraint
struct EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C;
// NUnit.Framework.Constraints.EmptyDirectoryConstraint
struct EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2;
// NUnit.Framework.Constraints.EmptyStringConstraint
struct EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD;
// NUnit.Framework.Constraints.EndsWithConstraint
struct EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294;
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2;
// NUnit.Framework.Constraints.EqualConstraint
struct EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7;
// NUnit.Framework.Constraints.EqualConstraintResult
struct EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772;
// NUnit.Framework.Constraints.EqualityAdapter
struct EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C;
// NUnit.Framework.Constraints.ExactCountOperator
struct ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929;
// NUnit.Framework.Constraints.ExactTypeConstraint
struct ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D;
// System.Exception
struct Exception_t;
// NUnit.Framework.Constraints.ExceptionNotThrownConstraint
struct ExceptionNotThrownConstraint_tDFD1FC5D65A8903A325EF48B5E0760448A849835;
// NUnit.Framework.Constraints.FalseConstraint
struct FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2;
// NUnit.Framework.Constraints.FileExistsConstraint
struct FileExistsConstraint_tF638892F90C04CEC79D16AE54001FD837F4EB878;
// System.IO.FileInfo
struct FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C;
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint
struct FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE;
// System.IO.FileSystemInfo
struct FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9;
// NUnit.Framework.Constraints.FloatingPointNumerics
struct FloatingPointNumerics_tDB6D5E9FFB9031B3FB49579A97F37F9545472346;
// NUnit.Framework.Constraints.GreaterThanConstraint
struct GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F;
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint
struct GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848;
// System.IAsyncResult
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
// System.Collections.ICollection
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
// System.IComparable
struct IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21;
// System.Collections.IComparer
struct IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD;
// NUnit.Framework.Constraints.IConstraint
struct IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3;
// System.Collections.IDictionary
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
// System.Collections.IEnumerable
struct IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131;
// System.Collections.IEnumerator
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
// System.Collections.IEqualityComparer
struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
// System.IFormatProvider
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
// NUnit.Framework.Constraints.IResolveConstraint
struct IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE;
// System.Runtime.Serialization.ISurrogateSelector
struct ISurrogateSelector_t35CC72FCAD57FCB71968799C400627F09E81FB01;
// NUnit.Framework.Internal.ITestExecutionContext
struct ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112;
// NUnit.Framework.Constraints.InstanceOfTypeConstraint
struct InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F;
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
// NUnit.Framework.Constraints.LessThanConstraint
struct LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942;
// NUnit.Framework.Constraints.LessThanOrEqualConstraint
struct LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663;
// System.Reflection.MemberFilter
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
// System.IO.MemoryStream
struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2;
// NUnit.Framework.Constraints.MessageWriter
struct MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E;
// System.Reflection.MethodBase
struct MethodBase_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// NUnit.Framework.Constraints.NUnitComparer
struct NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03;
// NUnit.Framework.Constraints.NUnitEqualityComparer
struct NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746;
// NUnit.Framework.Constraints.NaNConstraint
struct NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63;
// NUnit.Framework.Constraints.NoItemConstraint
struct NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4;
// NUnit.Framework.Constraints.NoneOperator
struct NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F;
// NUnit.Framework.Constraints.NotConstraint
struct NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79;
// NUnit.Framework.Constraints.NotOperator
struct NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0;
// NUnit.Framework.Constraints.NullConstraint
struct NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472;
// NUnit.Framework.Constraints.Numerics
struct Numerics_tEE4729C3EE8975478415F49EA688D38834639957;
// NUnit.Framework.Constraints.OrConstraint
struct OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D;
// NUnit.Framework.Constraints.OrOperator
struct OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B;
// NUnit.Framework.Constraints.PathConstraint
struct PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96;
// NUnit.Framework.Constraints.PrefixConstraint
struct PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04;
// NUnit.Framework.Constraints.PrefixOperator
struct PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213;
// NUnit.Framework.Constraints.PropOperator
struct PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B;
// NUnit.Framework.Constraints.PropertyConstraint
struct PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57;
// NUnit.Framework.Constraints.PropertyExistsConstraint
struct PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60;
// System.Reflection.PropertyInfo
struct PropertyInfo_t;
// NUnit.Framework.Constraints.RangeConstraint
struct RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96;
// NUnit.Framework.Constraints.RegexConstraint
struct RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B;
// NUnit.Framework.Constraints.ResolvableConstraintExpression
struct ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09;
// NUnit.Framework.Constraints.ReusableConstraint
struct ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
// NUnit.Framework.Constraints.SameAsConstraint
struct SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606;
// NUnit.Framework.Constraints.SamePathConstraint
struct SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3;
// NUnit.Framework.Constraints.SamePathOrUnderConstraint
struct SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF;
// NUnit.Framework.Constraints.SelfResolvingOperator
struct SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
// System.Runtime.Serialization.SerializationBinder
struct SerializationBinder_tB959BF0F4EF3F8611E5891A7011DD99F9FD69E2A;
// NUnit.Framework.Constraints.SomeItemsConstraint
struct SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23;
// NUnit.Framework.Constraints.SomeOperator
struct SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93;
// NUnit.Framework.Constraints.StartsWithConstraint
struct StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D;
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE;
// System.String
struct String_t;
// System.Text.StringBuilder
struct StringBuilder_t;
// NUnit.Framework.Constraints.StringConstraint
struct StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C;
// System.IO.StringWriter
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D;
// NUnit.Framework.Constraints.SubPathConstraint
struct SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D;
// NUnit.Framework.Constraints.SubstringConstraint
struct SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB;
// NUnit.Framework.TestDelegate
struct TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89;
// System.Globalization.TextInfo
struct TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4;
// NUnit.Framework.Constraints.ThrowsConstraint
struct ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374;
// NUnit.Framework.Constraints.ThrowsExceptionConstraint
struct ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1;
// NUnit.Framework.Constraints.ThrowsOperator
struct ThrowsOperator_t801DD32B57E15D034CEBD381C73B3DCF7B2262F0;
// NUnit.Framework.Constraints.Tolerance
struct Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C;
// NUnit.Framework.Constraints.TrueConstraint
struct TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99;
// System.Type
struct Type_t;
// NUnit.Framework.Constraints.TypeConstraint
struct TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0;
// System.Text.UnicodeEncoding
struct UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0;
// NUnit.Framework.Constraints.UniqueItemsConstraint
struct UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7;
// NUnit.Framework.Constraints.ValueFormatter
struct ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6;
// NUnit.Framework.Constraints.ValueFormatterFactory
struct ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF;
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
// NUnit.Framework.Constraints.WithOperator
struct WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E;
// NUnit.Framework.Constraints.XmlSerializableConstraint
struct XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA;
// System.Xml.Serialization.XmlSerializer
struct XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B;
// NUnit.Framework.Constraints.AndConstraint/AndConstraintResult
struct AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep
struct OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD;
// NUnit.Framework.Constraints.ComparisonAdapter/ComparerAdapter
struct ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE;
// NUnit.Framework.Constraints.ComparisonAdapter/DefaultComparisonAdapter
struct DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725;
// NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack
struct ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970;
// NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack
struct OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD;
// NUnit.Framework.Constraints.EqualityAdapter/ComparerAdapter
struct ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D;
// NUnit.Framework.Constraints.EqualityAdapter/EqualityComparerAdapter
struct EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66;
// NUnit.Framework.Constraints.MsgUtils/<>c
struct U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_0
struct U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_1
struct U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_2
struct U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_3
struct U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_4
struct U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_5
struct U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_6
struct U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_7
struct U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_8
struct U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C;
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_9
struct U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD;
// NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint
struct FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
// NUnit.Framework.Constraints.ThrowsExceptionConstraint/ThrowsExceptionConstraintResult
struct ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B;
IL2CPP_EXTERN_C RuntimeClass* AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t0E49AD026B2C06381C0A0049B25C680E618ACACD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t445729BDB018BA7EE00800359194E88C078C5D0A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeArray_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t37425C539A9709EDA6949A2DC639156708273E04_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ToleranceMode_tFFCC8EB41DDF1C55B7EAA081CF30BCEF3F63780D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral00E28E1CC1B129B1AAD27F1C89B10A07EF10FC79;
IL2CPP_EXTERN_C String_t* _stringLiteral00FA03FC1126CE355452DC004D781DC4709BF296;
IL2CPP_EXTERN_C String_t* _stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4;
IL2CPP_EXTERN_C String_t* _stringLiteral01B12693BFC5A7CFA63FCEFECF8FECD546B1B469;
IL2CPP_EXTERN_C String_t* _stringLiteral020229CC208078649AA5D36B84690B9520CBA8A8;
IL2CPP_EXTERN_C String_t* _stringLiteral0382E62D766E74E90B7FC0511CF221B3EB6E7670;
IL2CPP_EXTERN_C String_t* _stringLiteral08DC2676C8B263DB8BF11206DC4DA6AA2CBA0128;
IL2CPP_EXTERN_C String_t* _stringLiteral090CA016944FD09E7DA1A2D7A2EA0B29EA18F6A6;
IL2CPP_EXTERN_C String_t* _stringLiteral09475EECDC9E2B8D8CCDF75701F0E0333BFA4693;
IL2CPP_EXTERN_C String_t* _stringLiteral0F284D6D02382536157FD45D0FDDEAFC42A2DFF1;
IL2CPP_EXTERN_C String_t* _stringLiteral104646D44BC2FEB950B08E7E9845672F8FF4E49F;
IL2CPP_EXTERN_C String_t* _stringLiteral1A93881F0E30A932321B06766E4718D4D13306A7;
IL2CPP_EXTERN_C String_t* _stringLiteral1E4CD365CFDF0CB418E16B327830A68928BE9721;
IL2CPP_EXTERN_C String_t* _stringLiteral1FE3805D799DCE1C98350D1E69D410CC014DAAA2;
IL2CPP_EXTERN_C String_t* _stringLiteral20F9F21180FB7CDF3A26405698DCAD680B3ADAB6;
IL2CPP_EXTERN_C String_t* _stringLiteral218A567F0EA72C0027036BC391D222CFF41E44EB;
IL2CPP_EXTERN_C String_t* _stringLiteral220E58C948EAE5ED02BF3DAD8CC848C2A26DA977;
IL2CPP_EXTERN_C String_t* _stringLiteral229BEE113FBCACF7F41DDC83AE77A478BC4B5823;
IL2CPP_EXTERN_C String_t* _stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94;
IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
IL2CPP_EXTERN_C String_t* _stringLiteral23BF8FD25A828F6DBCCA76378D92162A3DE223F2;
IL2CPP_EXTERN_C String_t* _stringLiteral24D3437800D750777051944C7198DC50028CA843;
IL2CPP_EXTERN_C String_t* _stringLiteral26DC9E6A16A2B862023CCDC29E42E5404E9ACD4F;
IL2CPP_EXTERN_C String_t* _stringLiteral27DDD10E73C080DBFFFB9B6A4F68EC68B04A44ED;
IL2CPP_EXTERN_C String_t* _stringLiteral29084A0A379C1935271C232E939FF9434A57D70E;
IL2CPP_EXTERN_C String_t* _stringLiteral29B064EA8495F9C70E9419758FFD9E876B7DEFA9;
IL2CPP_EXTERN_C String_t* _stringLiteral2A3F74BE29B363CFDDA715BD681B139FBDB4933A;
IL2CPP_EXTERN_C String_t* _stringLiteral2BFCF7ED0EA3D44A5A1C6D7208B616F685C65282;
IL2CPP_EXTERN_C String_t* _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0;
IL2CPP_EXTERN_C String_t* _stringLiteral2CE2D641DE49F4CC9153820EB4FB057A696E69C1;
IL2CPP_EXTERN_C String_t* _stringLiteral2D41ABFAD8BAD8ADA22188BB8864870AC96035AF;
IL2CPP_EXTERN_C String_t* _stringLiteral2FDB12CAF040DE0941DCA5DA173D724FBE249CE3;
IL2CPP_EXTERN_C String_t* _stringLiteral31E68E5C77267F19BCCBF1A3D58AF78AF5F7B4FE;
IL2CPP_EXTERN_C String_t* _stringLiteral32932CD0622D4BF906B96C626B129BD7EA1DDA7A;
IL2CPP_EXTERN_C String_t* _stringLiteral34DEA2F1E15C73EFC9DA87F592D77F647EBA389A;
IL2CPP_EXTERN_C String_t* _stringLiteral35DA906FBF5E2388981DFBE5D23807853F9B19B4;
IL2CPP_EXTERN_C String_t* _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C;
IL2CPP_EXTERN_C String_t* _stringLiteral38022E48CF63587E6E4373F79DA921B2B487C58D;
IL2CPP_EXTERN_C String_t* _stringLiteral38206010E8F35F8C22DA036C14C1DEDD0F734544;
IL2CPP_EXTERN_C String_t* _stringLiteral383A2EE875CCBAEA1D6ACB02687B7F26F7EA14F8;
IL2CPP_EXTERN_C String_t* _stringLiteral3944673117C4D1BFBEA93E49BD37F0E751D36108;
IL2CPP_EXTERN_C String_t* _stringLiteral3CE79F8D2D1B691668FA506A55EAE194562D04D2;
IL2CPP_EXTERN_C String_t* _stringLiteral3E37F88667FFD2C0260C46D0AC3074419926FDD6;
IL2CPP_EXTERN_C String_t* _stringLiteral3FDCF6EE50D26A5C047BC7CC94C7439A03E7986A;
IL2CPP_EXTERN_C String_t* _stringLiteral40B72F457B71BC04183F751EDAFC0E7163318E61;
IL2CPP_EXTERN_C String_t* _stringLiteral413E2DE175635C92EB33F23D6687D1CDF4616538;
IL2CPP_EXTERN_C String_t* _stringLiteral415EAF3689F7C5E7FD422602E3142306C5DFB338;
IL2CPP_EXTERN_C String_t* _stringLiteral4635C9CB95BD89873457215F33B5DFBF66FF7167;
IL2CPP_EXTERN_C String_t* _stringLiteral48C487E9F7E0D9475FEBBB1168A85C9D73CE9E55;
IL2CPP_EXTERN_C String_t* _stringLiteral49A5AAB83859C60FC692064F7CA72853E8B6B189;
IL2CPP_EXTERN_C String_t* _stringLiteral4C21454E82835B5ED9112FAD85F99E2DF0908A06;
IL2CPP_EXTERN_C String_t* _stringLiteral4CB000BD0CA7A5E5B376F0B8ED20F9DB2FC7565B;
IL2CPP_EXTERN_C String_t* _stringLiteral4F6C6A9C2C189BBF1B8EA231D8AB56C2E6536FD0;
IL2CPP_EXTERN_C String_t* _stringLiteral51839BF4AC3A03C0141086FE38D278B0B4192151;
IL2CPP_EXTERN_C String_t* _stringLiteral51DF01FA7B200363F1258BDB5D763179E643C6F9;
IL2CPP_EXTERN_C String_t* _stringLiteral5481F04F3657AFF9CE20AE264BBB8F8B099BDC84;
IL2CPP_EXTERN_C String_t* _stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318;
IL2CPP_EXTERN_C String_t* _stringLiteral555117A57EC907CF1C274F338FFE628883D08964;
IL2CPP_EXTERN_C String_t* _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9;
IL2CPP_EXTERN_C String_t* _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272;
IL2CPP_EXTERN_C String_t* _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6;
IL2CPP_EXTERN_C String_t* _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
IL2CPP_EXTERN_C String_t* _stringLiteral5DF610495CA0C9D54085C58F5281900D7AC04DB0;
IL2CPP_EXTERN_C String_t* _stringLiteral5E87D8C210A5501FB74159709DB488B5EF9D29D2;
IL2CPP_EXTERN_C String_t* _stringLiteral61632951487853AF714464C079AD72422121AF9D;
IL2CPP_EXTERN_C String_t* _stringLiteral63A81BF09BF6D663EE7A4CA8E2BF41ACB795C4BF;
IL2CPP_EXTERN_C String_t* _stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB;
IL2CPP_EXTERN_C String_t* _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361;
IL2CPP_EXTERN_C String_t* _stringLiteral692CFAB7F0E96FB317ECD81BE188FB45205CF29C;
IL2CPP_EXTERN_C String_t* _stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2;
IL2CPP_EXTERN_C String_t* _stringLiteral6E2A118D02EEC0264ECB711997DC50620920E7B0;
IL2CPP_EXTERN_C String_t* _stringLiteral6F34EB87CC853F2BABD8D6FF1807759DAE03B57D;
IL2CPP_EXTERN_C String_t* _stringLiteral705B2FB975EB4F1AB7CC1FD4400BA6F59449BFD3;
IL2CPP_EXTERN_C String_t* _stringLiteral705F223D15CECE6FD82ACC19F04AB1793EDD3C3D;
IL2CPP_EXTERN_C String_t* _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11;
IL2CPP_EXTERN_C String_t* _stringLiteral737BEB9BE9CEFC63A888D759629AC77296E6B129;
IL2CPP_EXTERN_C String_t* _stringLiteral741EA3111EF41130FF524F0911C55B5510DAACBF;
IL2CPP_EXTERN_C String_t* _stringLiteral748AB502831BF3F2BEFFFD19D7C039C6110ADF2F;
IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
IL2CPP_EXTERN_C String_t* _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51;
IL2CPP_EXTERN_C String_t* _stringLiteral7AD249FAD187FA6BDEE99AFFCECD6EE73595F7F2;
IL2CPP_EXTERN_C String_t* _stringLiteral7BD18D652B63753A6350BAEB937B759F70318792;
IL2CPP_EXTERN_C String_t* _stringLiteral7CA515047CD74299658D5F44D61290D4C47B2248;
IL2CPP_EXTERN_C String_t* _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462;
IL2CPP_EXTERN_C String_t* _stringLiteral80E45506581C5D717F5A34695C7F748F933761C5;
IL2CPP_EXTERN_C String_t* _stringLiteral81B5328648DAFD032CF499AAFFD77AAFC738A4E8;
IL2CPP_EXTERN_C String_t* _stringLiteral83078AF98C6069055A1C50A282E6E439FC320BAE;
IL2CPP_EXTERN_C String_t* _stringLiteral849CFCD5BCF79B0504739C9AE6A6D1B43B68D860;
IL2CPP_EXTERN_C String_t* _stringLiteral84F05EF3D32F6C094DA89EA10A37B802F4B9D906;
IL2CPP_EXTERN_C String_t* _stringLiteral85E7919FC838CD60F5317F3EF518BCDCD05B934A;
IL2CPP_EXTERN_C String_t* _stringLiteral86870062E522B77F88E08BEA5178676294A887F5;
IL2CPP_EXTERN_C String_t* _stringLiteral86C77BC5F295C703F35896206298746108FCABE8;
IL2CPP_EXTERN_C String_t* _stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3;
IL2CPP_EXTERN_C String_t* _stringLiteral8739227E8E687EF781DA0D923452C2686CFF10A2;
IL2CPP_EXTERN_C String_t* _stringLiteral8CC49CF7EBA8B1F28B92947F51A96914774BEB4F;
IL2CPP_EXTERN_C String_t* _stringLiteral8CE3D52F2D14F6E4C8D5F9559550192183B372FE;
IL2CPP_EXTERN_C String_t* _stringLiteral8E752B76D455A50FE476984D4B09A7CDBF2A753E;
IL2CPP_EXTERN_C String_t* _stringLiteral92073D72022064ECA0E2ACE6E9164444F1BCA2D5;
IL2CPP_EXTERN_C String_t* _stringLiteral930696953E9F2A610B1653CF9E1E9649044B9D8D;
IL2CPP_EXTERN_C String_t* _stringLiteral969C5D341AFE14D7687EB4F7994A52A8438726FE;
IL2CPP_EXTERN_C String_t* _stringLiteral96ACA358B7A4C86713EE6CB047D9D1531A642BB1;
IL2CPP_EXTERN_C String_t* _stringLiteral9B850A03952CDBCC170C393B2A85CCA5764E310C;
IL2CPP_EXTERN_C String_t* _stringLiteral9CA8C44D8001E19877B2F2B86EC61A60048AF615;
IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
IL2CPP_EXTERN_C String_t* _stringLiteralA0BC0DDE05F2C6C9622C6E5C5BB9B48E7B1915C1;
IL2CPP_EXTERN_C String_t* _stringLiteralA48E7B9B63F28D6A58CEEA113B488C4AF00F98B8;
IL2CPP_EXTERN_C String_t* _stringLiteralA64150E2CE3231F1B2C8ED8A8E3FD4075EB6F24F;
IL2CPP_EXTERN_C String_t* _stringLiteralA6EEFAD1685D8918E84D9A8AAA12A42858703534;
IL2CPP_EXTERN_C String_t* _stringLiteralA79ECAE3F0E6D764C6A8796C87D1817FFC8D283F;
IL2CPP_EXTERN_C String_t* _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122;
IL2CPP_EXTERN_C String_t* _stringLiteralA851E31651A2D0B1B2CB61676A144AB45DF71D1D;
IL2CPP_EXTERN_C String_t* _stringLiteralAA88C47E0CA742ED28830DC367F3C1DE8E582B00;
IL2CPP_EXTERN_C String_t* _stringLiteralABDB6F268B2879BDB5FCEEB313B2DB8C7F84D019;
IL2CPP_EXTERN_C String_t* _stringLiteralAC02149646451F67F7B59C4DC1C2EDA8BF8EC49D;
IL2CPP_EXTERN_C String_t* _stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74;
IL2CPP_EXTERN_C String_t* _stringLiteralB1269EF381A8D16986D4F342DA110B03FE9E59C5;
IL2CPP_EXTERN_C String_t* _stringLiteralB1E5119D36EC43B340C0A0DDC99F1156546EA9DF;
IL2CPP_EXTERN_C String_t* _stringLiteralB339D905726376F3A334344838DECFB8AD39826C;
IL2CPP_EXTERN_C String_t* _stringLiteralB5CC317EC6E1D9F1B86189B7952CFFBE59C69820;
IL2CPP_EXTERN_C String_t* _stringLiteralB659C16B8B4EE39ABF71D63900301FD4BD80E605;
IL2CPP_EXTERN_C String_t* _stringLiteralB6B9449F80C0026A5DD66BBA64B81E037161067A;
IL2CPP_EXTERN_C String_t* _stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07;
IL2CPP_EXTERN_C String_t* _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F;
IL2CPP_EXTERN_C String_t* _stringLiteralBC4CF8C3582484557E58916411466E046404CE49;
IL2CPP_EXTERN_C String_t* _stringLiteralC05CB04295EF034AEF559D9CDA6A7974A9844E00;
IL2CPP_EXTERN_C String_t* _stringLiteralC1771FD048FA0C5283A6D1085A6C3493F05C1302;
IL2CPP_EXTERN_C String_t* _stringLiteralC20AC50E89734C42CD9EC23B1B6690737E59AAFD;
IL2CPP_EXTERN_C String_t* _stringLiteralC6CEE10810A66F67F39CF39748CB9B0B409F9ADE;
IL2CPP_EXTERN_C String_t* _stringLiteralC7E65C52535CDD59777EEAAF7EFDE885FD987F3D;
IL2CPP_EXTERN_C String_t* _stringLiteralC9E5ADF4D6D9BEC67BFE05EB0C3C08FE8D85F140;
IL2CPP_EXTERN_C String_t* _stringLiteralCA1CD9D908534F1E8EC1305917F734BE9683734A;
IL2CPP_EXTERN_C String_t* _stringLiteralCCA28E049F7E6BAF5A9EBCD862D875431CD944EB;
IL2CPP_EXTERN_C String_t* _stringLiteralCCDF22F0BA1FC534FC6656104D7D41A8D396BCE5;
IL2CPP_EXTERN_C String_t* _stringLiteralCDA67E248A035B28E06099D5362E02822AA9A914;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralCE3E9A2716929F5CE1A6272AB56FE22CF24642AD;
IL2CPP_EXTERN_C String_t* _stringLiteralCF20B7FA0252D0EE5B17766552AD69D948EEF98A;
IL2CPP_EXTERN_C String_t* _stringLiteralD6433242E3AC0818A68685B6BD80954F4AAE48DC;
IL2CPP_EXTERN_C String_t* _stringLiteralD9816A6D140B35275DB7D0C09753D3B69D272492;
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
IL2CPP_EXTERN_C String_t* _stringLiteralDA7B88886FB24B3F19FA3221438C8E27A5F9DB25;
IL2CPP_EXTERN_C String_t* _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F;
IL2CPP_EXTERN_C String_t* _stringLiteralDD5F6E25C4083340CFA0E975B1129C890F7DEA74;
IL2CPP_EXTERN_C String_t* _stringLiteralDEDCF37206A03E4CE4438C517B164F328C678509;
IL2CPP_EXTERN_C String_t* _stringLiteralE09551B85A5715B9B75D585E3241773601E253E6;
IL2CPP_EXTERN_C String_t* _stringLiteralE24B2A3DD8A7AF2B8DA9EC0E4F18EBF4FB9578E6;
IL2CPP_EXTERN_C String_t* _stringLiteralE373004A1536E747D5BBE90ED2AA7529BD820326;
IL2CPP_EXTERN_C String_t* _stringLiteralE5F79458B7102EE7C57068E97315748EB1B2C82F;
IL2CPP_EXTERN_C String_t* _stringLiteralE786749916B75CCFF0830B325CD54FDF40F3B6B9;
IL2CPP_EXTERN_C String_t* _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5;
IL2CPP_EXTERN_C String_t* _stringLiteralEF9F6D154F515F1052E4BA985B9544D32325B81A;
IL2CPP_EXTERN_C String_t* _stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE;
IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
IL2CPP_EXTERN_C String_t* _stringLiteralF6C5A885B776A3A44FF20F2FAF5089F2C7C2E58D;
IL2CPP_EXTERN_C String_t* _stringLiteralFE885205DA2ED2F044021264F91527DF50C05E68;
IL2CPP_EXTERN_C String_t* _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A;
IL2CPP_EXTERN_C const RuntimeMethod* AllItemsConstraint_ApplyTo_m32D364B10DF48470AF13EA993A6D0542207F0446_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AttributeConstraint_ApplyTo_m13BB6142D37C0F9393AC4BC83540FDB998D1C7C5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AttributeConstraint__ctor_mD7EC35DA07C505F9FDF44DB414EEF462FB905BBC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* AttributeExistsConstraint__ctor_mF00CA21E7FB17774D6073E68B286563240D7C31D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* BinarySerializableConstraint_ApplyTo_m3EF5283FE31F86EF56168BDD3E7361CF41E12ABD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionConstraint_ApplyTo_mE9C3DB08DD17AA6B0F23BED9844940BBC071A910_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionOrderedConstraint_Matches_mFED20897F66A6353A4460925C7AD9AF5CE2BC3CF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionOrderedConstraint_Using_mC44DC9C1E83461383E48ECF9EC6F837BF24C96FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionOrderedConstraint_get_Ascending_mA5A1B3500C6E9C19674F816FA915BB0D2F218A25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* CollectionOrderedConstraint_get_Descending_mD6A8D6FC53F70B7FFBF9DB9DEB1299BE86D6C2CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ComparisonConstraint_ApplyTo_m2D407995E380F6B0F49E05EAAA40D70C457C436B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Constraint_U3C_ctorU3Eb__1_0_mC5C6EDF36239DBDE028449D0588BC9FAE3FF1CAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DelayedConstraint__ctor_mE85122D6222B1C8D526565D623F990134B70253B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DictionaryContainsKeyConstraint_Matches_m5C0C87D6E288E1A6E120CB83CE8C851BFA0B6EF3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyConstraint_ApplyTo_mB1EBC23FB27C53EBF1A2858CCBE69B5E970E9F9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EmptyDirectoryConstraint_ApplyTo_m02E858AD35D50811B3802F26E4DC33D33F160864_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m8334A72F9492DC38EAAE05EEBFB6A0B8D4634F4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m6AF6E20F8844E50C909620AD4AA5704F41672B9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mBC614A4CD4D47E71EA274FAB2F5E4A50790FE05A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* EqualConstraint_Within_m177EA4EFDC74F21C45E81EFABE9997790AD7CB94_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FileOrDirectoryExistsConstraint_ApplyTo_m50C4215173A9D32E43EFE235FA74993D9BF3C6F0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2__ctor_m3F7B62EE24E4D4D7C92ACEA0017D2391FC09BDA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_mF0112805A31528C27337365D8BCAF66893AB1043_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Lazy_1__ctor_m6267B3BFD3B5D9E5242B8519614EB03C2AACC7E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Lazy_1_get_Value_m0BDD31125DFBF93B6560F296B0998C21043C072E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m15208ACC5D7CF9CF4BA17492E1F8D204350316C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m4D70D2E18A8E3D8C03FFFCD6EAC9F6814C649174_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mD222163019328A154004E23FD2FFDB8AAED10C0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m602C3C555F0F9190329EDBCFAF9294E5FEE8FBEA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m723A9C79EDAB71B090B316E621F59716DB771ACD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA59BB9747605BD5A01B294B5C36E2C8FA628B757_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mB0D00F42652D83E1BF3080C2F9C5772E920F9AD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mDCC2E72ECDC759487B69BF608EC7FF466335558A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NUnitComparer_Compare_m5027057896703C0B69E76C29AD4C8514B44B8D25_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NUnitEqualityComparer__cctor_m050A390E5156EEE61977AEA2DBD74E34FF91FFDA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NoItemConstraint_ApplyTo_m2EB5340C3477EF877A40584705DCF6452A8BEC04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_m05A5DA797E5183199087C2D14FCE2FFF86E4E292_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_m4B6694B149D7E9771B05C9ABA02407D7E0B73642_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_m7F1A057D237DE9460841318B6C20A12E91E415DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_m89F3686BF058048EDD68F230EE5DDC2497B693E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_mA999B9742E931E4D646B3EBC8E5E23E1732669FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_mB8092D12CF79A63D0956228C98CFD75CBC9917BC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_mDF3E84AFD310790D52E9A0A783E0B805DBF7A882_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_AreEqual_mFBF6847028D84AA8C7B5D0084D21295F3C7B5756_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Numerics_Compare_mFE1EED2E4772977E3D7CD0986FC67AF6A5E8F1B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* PropertyConstraint_ApplyTo_mC079FA235E94B15CFF15581730522B5EE958851B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RangeConstraint_ApplyTo_mE7300E367872B527BA7D05670B928839838F847F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* SomeItemsConstraint_ApplyTo_mEDDD9019586D2C0EA9A0EFFCDDC103D76075CA7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Peek_mF52F0E49669CF420595F5F74F6B80FA5E8055CEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_m38909755BD9020E7D080FB5EA2FE9C6FA109342D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Pop_mA493AF1F6B7B1A262D1A33718DEE4722C25AD491_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m1BC905FC33ABA40AEF62852744CD07AE0D52821C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_Push_m8CCEEEEFF52093A0B8B1A826E12295719E5FD8D6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m417228ADA55AAA37AAEB76CE81CF1CB882D0A9E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m77D3EF7330A819878849329FC1E7FD2B014D56A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m759E43094D51CEEAC594F24C73E6A177ADE6F1F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1_get_Count_m7E137C56D50FB9A0908353B2137B66BC15CE9825_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* StringConstraint_ApplyTo_m873E6FA9CACF500FD473BC29CF8B2743FF93201B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThrowsExceptionConstraint_ApplyTo_m055DBC5C0B789B80A577E175ED3FDFE3A57558B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_0_mCFD0C6F92505AB88849A0AF76EBD5B8CF9B9BBDD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_10_mB78183EB9E63158E841DA1F7CE1E2800059F1819_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_1_mA8E1A38AFDEE95272AE2FBD0BC17D19B707A043C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_2_m46C1FFEDB404DAB2F81D487498F90BBE26734C4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_3_m875F69966DD4235BBFD546B51595167237F2D4B4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_4_m2779423DE5DC890D3E011D8EF8B95EDD7EB4FBAA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_5_m70CEF8F867B44941E967AE4323C8D725CE6B9560_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_6_m938146C15752CCAC602BF4FDBE409825C3020CEF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_7_mA476F1B31B1BE5B7E9723FE1BFF1196E6E4557E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_8_mEE0543AEFE88DAFBF16D562F01BE89F2C02BAC2F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__14_9_m82DBB36839F9CF2DAAD49F5B42E380D82E9CBAFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_0_U3C_cctorU3Eb__11_mF95D1B717506AED93B4A62AF90C000CEA1737AA0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_1_U3C_cctorU3Eb__12_m22EF00B9B9AFA8B1C1F40A08DA089273A6C93CD7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_2_U3C_cctorU3Eb__13_m359980E4694D64E28BA2914311939869850E7EF3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_3_U3C_cctorU3Eb__14_mCC0E9719C13D303C1546A1E3AF937BBBE2EEDDAF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_4_U3C_cctorU3Eb__15_mD6E0F3AF45B985AE05BA31A6AF4FE70021A50717_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_5_U3C_cctorU3Eb__16_m4E05DD34165BDF5F9B110A62B1E48290CAC65123_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_6_U3C_cctorU3Eb__17_m711732C06E8A9D704129A9D1258CD3D62673C4A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_7_U3C_cctorU3Eb__18_m7425ABEC11665051150CCCB76E2556821ED17445_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_8_U3C_cctorU3Eb__19_mD175821318C7E5AA698121FB9A7A785C9FB15954_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass14_9_U3C_cctorU3Eb__20_mD0849B7CD387D4D98B6FD8298FB05769955E9E5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* IEquatable_1_tFEFF3D0D9006789C86A917B9EE3BA20A6C63C82D_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* KeyValuePair_2_t6B67F15F63BF2F3C9BF0458C0AA16F217BE189F0_0_0_0_var;
IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com;
struct CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com;
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67;
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1;
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
struct DirectoryInfoU5BU5D_t5D09D46C6EBC15480AF7C63C54276B57A4287953;
struct FileInfoU5BU5D_tCB74DD125A9220ABCF5F48549F2C71B74BBCD7E6;
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>
struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>
struct List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
KeyValuePair_2U5BU5D_t23B752451A087EEEB988DC37B0BD033B7797B2DC* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
KeyValuePair_2U5BU5D_t23B752451A087EEEB988DC37B0BD033B7797B2DC* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.EqualityAdapter>
struct List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
EqualityAdapterU5BU5D_t265E6EB7663B853760A9F9755B2122E09F4558BD* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
EqualityAdapterU5BU5D_t265E6EB7663B853760A9F9755B2122E09F4558BD* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>
struct List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
OrderingStepU5BU5D_tCF94A2490DFEF90E628B5FF58F60313B1383F4B7* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
OrderingStepU5BU5D_tCF94A2490DFEF90E628B5FF58F60313B1383F4B7* ___s_emptyArray_5;
};
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>
struct List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2 : public RuntimeObject
{
// T[] System.Collections.Generic.List`1::_items
FailurePointU5BU5D_t3C213919C72C1D29C3DC170A8470963ABDBEC08E* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject* ____syncRoot_4;
};
struct List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2_StaticFields
{
// T[] System.Collections.Generic.List`1::s_emptyArray
FailurePointU5BU5D_t3C213919C72C1D29C3DC170A8470963ABDBEC08E* ___s_emptyArray_5;
};
// System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>
struct Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4 : public RuntimeObject
{
// T[] System.Collections.Generic.Stack`1::_array
ConstraintOperatorU5BU5D_tFB9C683FBCD163969DAFC0560B0AF90B97380BA2* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint>
struct Stack_1_t37425C539A9709EDA6949A2DC639156708273E04 : public RuntimeObject
{
// T[] System.Collections.Generic.Stack`1::_array
IConstraintU5BU5D_tB406C99B82CD01D2707EA2AF74EEE2E2BADCC922* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject* ____syncRoot_3;
};
// System.Collections.Generic.Stack`1<System.Object>
struct Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5 : public RuntimeObject
{
// T[] System.Collections.Generic.Stack`1::_array
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____array_0;
// System.Int32 System.Collections.Generic.Stack`1::_size
int32_t ____size_1;
// System.Int32 System.Collections.Generic.Stack`1::_version
int32_t ____version_2;
// System.Object System.Collections.Generic.Stack`1::_syncRoot
RuntimeObject* ____syncRoot_3;
};
struct Il2CppArrayBounds;
// System.Attribute
struct Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA : public RuntimeObject
{
};
// System.IO.BinaryReader
struct BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158 : public RuntimeObject
{
// System.IO.Stream System.IO.BinaryReader::m_stream
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___m_stream_0;
// System.Byte[] System.IO.BinaryReader::m_buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_buffer_1;
// System.Text.Decoder System.IO.BinaryReader::m_decoder
Decoder_tE16E789E38B25DD304004FC630EA8B21000ECBBC* ___m_decoder_2;
// System.Byte[] System.IO.BinaryReader::m_charBytes
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___m_charBytes_3;
// System.Char[] System.IO.BinaryReader::m_singleChar
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_singleChar_4;
// System.Char[] System.IO.BinaryReader::m_charBuffer
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_charBuffer_5;
// System.Int32 System.IO.BinaryReader::m_maxCharsSize
int32_t ___m_maxCharsSize_6;
// System.Boolean System.IO.BinaryReader::m_2BytesPerChar
bool ___m_2BytesPerChar_7;
// System.Boolean System.IO.BinaryReader::m_isMemoryStream
bool ___m_isMemoryStream_8;
// System.Boolean System.IO.BinaryReader::m_leaveOpen
bool ___m_leaveOpen_9;
};
// NUnit.Framework.Constraints.CollectionTally
struct CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9 : public RuntimeObject
{
// System.Collections.Generic.List`1<System.Object> NUnit.Framework.Constraints.CollectionTally::list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ___list_0;
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.CollectionTally::comparer
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ___comparer_1;
};
// NUnit.Framework.Constraints.ComparisonAdapter
struct ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D : public RuntimeObject
{
};
// NUnit.Framework.Constraints.Constraint
struct Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09 : public RuntimeObject
{
// System.Lazy`1<System.String> NUnit.Framework.Constraints.Constraint::_displayName
Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4* ____displayName_0;
// System.String NUnit.Framework.Constraints.Constraint::<Description>k__BackingField
String_t* ___U3CDescriptionU3Ek__BackingField_1;
// System.Object[] NUnit.Framework.Constraints.Constraint::<Arguments>k__BackingField
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___U3CArgumentsU3Ek__BackingField_2;
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.Constraint::<Builder>k__BackingField
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___U3CBuilderU3Ek__BackingField_3;
};
// NUnit.Framework.Constraints.ConstraintBuilder
struct ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8 : public RuntimeObject
{
// NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack NUnit.Framework.Constraints.ConstraintBuilder::ops
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* ___ops_0;
// NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack NUnit.Framework.Constraints.ConstraintBuilder::constraints
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* ___constraints_1;
// System.Object NUnit.Framework.Constraints.ConstraintBuilder::lastPushed
RuntimeObject* ___lastPushed_2;
};
// NUnit.Framework.Constraints.ConstraintExpression
struct ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C : public RuntimeObject
{
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.ConstraintExpression::builder
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder_0;
};
// NUnit.Framework.Constraints.ConstraintFactory
struct ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4 : public RuntimeObject
{
};
// NUnit.Framework.Constraints.ConstraintOperator
struct ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02 : public RuntimeObject
{
// System.Object NUnit.Framework.Constraints.ConstraintOperator::leftContext
RuntimeObject* ___leftContext_0;
// System.Object NUnit.Framework.Constraints.ConstraintOperator::rightContext
RuntimeObject* ___rightContext_1;
// System.Int32 NUnit.Framework.Constraints.ConstraintOperator::left_precedence
int32_t ___left_precedence_2;
// System.Int32 NUnit.Framework.Constraints.ConstraintOperator::right_precedence
int32_t ___right_precedence_3;
};
// System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0 : public RuntimeObject
{
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D* ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
};
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_StaticFields
{
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject* ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentUICulture_34;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_DefaultThreadCurrentCulture_35;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_t9FA6D82CAFC18769F7515BB51D1C56DAE09381C3* ___shared_by_number_36;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tE1603CE612C16451D1E56FF4D4859D4FE4087C28* ___shared_by_name_37;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::s_UserPreferredCultureInfoInAppX
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* ___s_UserPreferredCultureInfoInAppX_38;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_39;
};
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_t8E26808B202927FEBF9064FCFEEA4D6E076E6472* ___numInfo_10;
DateTimeFormatInfo_t0457520F9FA7B5C8EAAEB3AD50413B6AEEB7458A* ___dateTimeInfo_11;
TextInfo_tD3BAFCFD77418851E7D5CB8D2588F47019E414B4* ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_t1B1A6AC3486B570C76ABA52149C9BD4CD82F9E57* ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_t0A117CC7532A54C17188C2EFEA1F79DB20DF3A3B* ___calendar_24;
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27;
CultureData_tEEFDCF4ECA1BBF6C0C8C94EB3541657245598F9D_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// NUnit.Framework.Constraints.EqualityAdapter
struct EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C : public RuntimeObject
{
};
// NUnit.Framework.Constraints.FloatingPointNumerics
struct FloatingPointNumerics_tDB6D5E9FFB9031B3FB49579A97F37F9545472346 : public RuntimeObject
{
};
// NUnit.Framework.GlobalSettings
struct GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4 : public RuntimeObject
{
};
struct GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_StaticFields
{
// System.Double NUnit.Framework.GlobalSettings::DefaultFloatingPointTolerance
double ___DefaultFloatingPointTolerance_0;
};
// System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
{
// System.Object System.MarshalByRefObject::_identity
RuntimeObject* ____identity_0;
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
};
// NUnit.Framework.Constraints.MsgUtils
struct MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C : public RuntimeObject
{
};
struct MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields
{
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_Null
String_t* ___Fmt_Null_1;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_EmptyString
String_t* ___Fmt_EmptyString_2;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_EmptyCollection
String_t* ___Fmt_EmptyCollection_3;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_String
String_t* ___Fmt_String_4;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_Char
String_t* ___Fmt_Char_5;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_DateTime
String_t* ___Fmt_DateTime_6;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_DateTimeOffset
String_t* ___Fmt_DateTimeOffset_7;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_ValueType
String_t* ___Fmt_ValueType_8;
// System.String NUnit.Framework.Constraints.MsgUtils::Fmt_Default
String_t* ___Fmt_Default_9;
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils::<DefaultValueFormatter>k__BackingField
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___U3CDefaultValueFormatterU3Ek__BackingField_10;
};
// NUnit.Framework.Constraints.NUnitComparer
struct NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03 : public RuntimeObject
{
};
// NUnit.Framework.Constraints.NUnitEqualityComparer
struct NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746 : public RuntimeObject
{
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::caseInsensitive
bool ___caseInsensitive_0;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::compareAsCollection
bool ___compareAsCollection_1;
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.EqualityAdapter> NUnit.Framework.Constraints.NUnitEqualityComparer::externalComparers
List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* ___externalComparers_2;
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.NUnitEqualityComparer::failurePoints
List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* ___failurePoints_3;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::<WithSameOffset>k__BackingField
bool ___U3CWithSameOffsetU3Ek__BackingField_5;
};
struct NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields
{
// System.Int32 NUnit.Framework.Constraints.NUnitEqualityComparer::BUFFER_SIZE
int32_t ___BUFFER_SIZE_4;
// System.Type NUnit.Framework.Constraints.NUnitEqualityComparer::GameObjectType
Type_t* ___GameObjectType_6;
};
// NUnit.Framework.Constraints.Numerics
struct Numerics_tEE4729C3EE8975478415F49EA688D38834639957 : public RuntimeObject
{
};
// System.IO.Path
struct Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC : public RuntimeObject
{
};
struct Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields
{
// System.Char[] System.IO.Path::InvalidPathChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___InvalidPathChars_0;
// System.Char System.IO.Path::AltDirectorySeparatorChar
Il2CppChar ___AltDirectorySeparatorChar_1;
// System.Char System.IO.Path::DirectorySeparatorChar
Il2CppChar ___DirectorySeparatorChar_2;
// System.Char System.IO.Path::PathSeparator
Il2CppChar ___PathSeparator_3;
// System.String System.IO.Path::DirectorySeparatorStr
String_t* ___DirectorySeparatorStr_4;
// System.Char System.IO.Path::VolumeSeparatorChar
Il2CppChar ___VolumeSeparatorChar_5;
// System.Char[] System.IO.Path::PathSeparatorChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___PathSeparatorChars_6;
// System.Boolean System.IO.Path::dirEqualsVolume
bool ___dirEqualsVolume_7;
// System.Char[] System.IO.Path::trimEndCharsWindows
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimEndCharsWindows_8;
// System.Char[] System.IO.Path::trimEndCharsUnix
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___trimEndCharsUnix_9;
};
// NUnit.Framework.Constraints.ReusableConstraint
struct ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7 : public RuntimeObject
{
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ReusableConstraint::constraint
RuntimeObject* ___constraint_0;
};
// System.Diagnostics.Stopwatch
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043 : public RuntimeObject
{
// System.Int64 System.Diagnostics.Stopwatch::elapsed
int64_t ___elapsed_2;
// System.Int64 System.Diagnostics.Stopwatch::started
int64_t ___started_3;
// System.Boolean System.Diagnostics.Stopwatch::is_running
bool ___is_running_4;
};
struct Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields
{
// System.Int64 System.Diagnostics.Stopwatch::Frequency
int64_t ___Frequency_0;
// System.Boolean System.Diagnostics.Stopwatch::IsHighResolution
bool ___IsHighResolution_1;
};
// System.String
struct String_t : public RuntimeObject
{
// System.Int32 System.String::_stringLength
int32_t ____stringLength_4;
// System.Char System.String::_firstChar
Il2CppChar ____firstChar_5;
};
struct String_t_StaticFields
{
// System.String System.String::Empty
String_t* ___Empty_6;
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t* ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
};
// System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
{
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
{
};
// NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack
struct ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970 : public RuntimeObject
{
// System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint> NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::stack
Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* ___stack_0;
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::builder
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder_1;
};
// NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack
struct OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD : public RuntimeObject
{
// System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator> NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::stack
Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* ___stack_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c
struct U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6 : public RuntimeObject
{
};
struct U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields
{
// NUnit.Framework.Constraints.MsgUtils/<>c NUnit.Framework.Constraints.MsgUtils/<>c::<>9
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* ___U3CU3E9_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_0
struct U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_0::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_1
struct U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_1::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_2
struct U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9 : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_2::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_3
struct U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819 : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_3::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_4
struct U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_4::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_5
struct U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33 : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_5::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_6
struct U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0 : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_6::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_7
struct U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6 : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_7::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_8
struct U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_8::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_9
struct U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD : public RuntimeObject
{
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_9::next
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next_0;
};
// NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint
struct FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1 : public RuntimeObject
{
// System.Int64 NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::Position
int64_t ___Position_0;
// System.Object NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ExpectedValue
RuntimeObject* ___ExpectedValue_1;
// System.Object NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ActualValue
RuntimeObject* ___ActualValue_2;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ExpectedHasData
bool ___ExpectedHasData_3;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::ActualHasData
bool ___ActualHasData_4;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.EqualityAdapter>
struct Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
RuntimeObject* ____current_3;
};
// System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>
struct Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9
{
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* ____list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
int32_t ____index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
int32_t ____version_2;
// T System.Collections.Generic.List`1/Enumerator::_current
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* ____current_3;
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
{
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject* ___value_1;
};
// System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>
struct KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB
{
// TKey System.Collections.Generic.KeyValuePair`2::key
Type_t* ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
MethodInfo_t* ___value_1;
};
// NUnit.Framework.Constraints.AttributeExistsConstraint
struct AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Type NUnit.Framework.Constraints.AttributeExistsConstraint::expectedType
Type_t* ___expectedType_4;
};
// NUnit.Framework.Constraints.BinaryConstraint
struct BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.BinaryConstraint::Left
RuntimeObject* ___Left_4;
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.BinaryConstraint::Right
RuntimeObject* ___Right_5;
};
// NUnit.Framework.Constraints.BinaryOperator
struct BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4 : public ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02
{
};
// NUnit.Framework.Constraints.BinarySerializableConstraint
struct BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter NUnit.Framework.Constraints.BinarySerializableConstraint::serializer
BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* ___serializer_4;
};
// System.Boolean
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
{
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
};
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
{
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
};
// System.Byte
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
{
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
};
// System.Char
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
{
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
};
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
{
// System.Byte[] System.Char::s_categoryForLatin1
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
};
// NUnit.Framework.Constraints.CollectionConstraint
struct CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.ComparisonConstraint
struct ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.ComparisonConstraint::expected
RuntimeObject* ___expected_4;
// System.Boolean NUnit.Framework.Constraints.ComparisonConstraint::lessComparisonResult
bool ___lessComparisonResult_5;
// System.Boolean NUnit.Framework.Constraints.ComparisonConstraint::equalComparisonResult
bool ___equalComparisonResult_6;
// System.Boolean NUnit.Framework.Constraints.ComparisonConstraint::greaterComparisonResult
bool ___greaterComparisonResult_7;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.ComparisonConstraint::comparer
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___comparer_8;
};
// NUnit.Framework.Constraints.ContainsConstraint
struct ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.ContainsConstraint::_expected
RuntimeObject* ____expected_4;
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.ContainsConstraint::_realConstraint
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ____realConstraint_5;
// System.Boolean NUnit.Framework.Constraints.ContainsConstraint::_ignoreCase
bool ____ignoreCase_6;
};
// System.DateTime
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
{
// System.UInt64 System.DateTime::_dateData
uint64_t ____dateData_46;
};
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
{
// System.Int32[] System.DateTime::s_daysToMonth365
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365_30;
// System.Int32[] System.DateTime::s_daysToMonth366
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366_31;
// System.DateTime System.DateTime::MinValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue_32;
// System.DateTime System.DateTime::MaxValue
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue_33;
// System.DateTime System.DateTime::UnixEpoch
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch_34;
};
// System.Decimal
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Decimal::flags
int32_t ___flags_8;
};
#pragma pack(pop, tp)
struct
{
int32_t ___flags_8_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___hi_9_OffsetPadding[4];
// System.Int32 System.Decimal::hi
int32_t ___hi_9;
};
#pragma pack(pop, tp)
struct
{
char ___hi_9_OffsetPadding_forAlignmentOnly[4];
int32_t ___hi_9_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___lo_10_OffsetPadding[8];
// System.Int32 System.Decimal::lo
int32_t ___lo_10;
};
#pragma pack(pop, tp)
struct
{
char ___lo_10_OffsetPadding_forAlignmentOnly[8];
int32_t ___lo_10_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___mid_11_OffsetPadding[12];
// System.Int32 System.Decimal::mid
int32_t ___mid_11;
};
#pragma pack(pop, tp)
struct
{
char ___mid_11_OffsetPadding_forAlignmentOnly[12];
int32_t ___mid_11_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___ulomidLE_12_OffsetPadding[8];
// System.UInt64 System.Decimal::ulomidLE
uint64_t ___ulomidLE_12;
};
#pragma pack(pop, tp)
struct
{
char ___ulomidLE_12_OffsetPadding_forAlignmentOnly[8];
uint64_t ___ulomidLE_12_forAlignmentOnly;
};
};
};
struct Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields
{
// System.Decimal System.Decimal::Zero
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___Zero_3;
// System.Decimal System.Decimal::One
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___One_4;
// System.Decimal System.Decimal::MinusOne
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinusOne_5;
// System.Decimal System.Decimal::MaxValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MaxValue_6;
// System.Decimal System.Decimal::MinValue
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___MinValue_7;
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
{
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject* ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject* ____value_1;
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Double
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
{
// System.Double System.Double::m_value
double ___m_value_0;
};
// NUnit.Framework.Constraints.EmptyConstraint
struct EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.EmptyConstraint::realConstraint
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___realConstraint_4;
};
// NUnit.Framework.Constraints.EmptyDirectoryConstraint
struct EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Int32 NUnit.Framework.Constraints.EmptyDirectoryConstraint::files
int32_t ___files_4;
// System.Int32 NUnit.Framework.Constraints.EmptyDirectoryConstraint::subdirs
int32_t ___subdirs_5;
};
// System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
{
};
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_StaticFields
{
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___enumSeperatorCharArray_0;
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
{
};
// NUnit.Framework.Constraints.EqualConstraint
struct EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.EqualConstraint::_expected
RuntimeObject* ____expected_4;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.EqualConstraint::_tolerance
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ____tolerance_5;
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.EqualConstraint::_comparer
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ____comparer_6;
// System.Boolean NUnit.Framework.Constraints.EqualConstraint::<ClipStrings>k__BackingField
bool ___U3CClipStringsU3Ek__BackingField_7;
};
// NUnit.Framework.Constraints.ExceptionNotThrownConstraint
struct ExceptionNotThrownConstraint_tDFD1FC5D65A8903A325EF48B5E0760448A849835 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.FalseConstraint
struct FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint
struct FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Boolean NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::_ignoreDirectories
bool ____ignoreDirectories_4;
// System.Boolean NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::_ignoreFiles
bool ____ignoreFiles_5;
};
// System.Int16
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
{
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
};
// System.Int32
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
{
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
};
// System.Int64
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
{
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
};
// System.IntPtr
struct IntPtr_t
{
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
};
struct IntPtr_t_StaticFields
{
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
};
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
};
// NUnit.Framework.Constraints.NaNConstraint
struct NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.NullConstraint
struct NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.PrefixConstraint
struct PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.PrefixConstraint::<BaseConstraint>k__BackingField
RuntimeObject* ___U3CBaseConstraintU3Ek__BackingField_4;
// System.String NUnit.Framework.Constraints.PrefixConstraint::<DescriptionPrefix>k__BackingField
String_t* ___U3CDescriptionPrefixU3Ek__BackingField_5;
};
// NUnit.Framework.Constraints.PrefixOperator
struct PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213 : public ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02
{
};
// NUnit.Framework.Constraints.PropertyExistsConstraint
struct PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.String NUnit.Framework.Constraints.PropertyExistsConstraint::name
String_t* ___name_4;
// System.Type NUnit.Framework.Constraints.PropertyExistsConstraint::actualType
Type_t* ___actualType_5;
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
};
// NUnit.Framework.Constraints.RangeConstraint
struct RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.IComparable NUnit.Framework.Constraints.RangeConstraint::from
RuntimeObject* ___from_4;
// System.IComparable NUnit.Framework.Constraints.RangeConstraint::to
RuntimeObject* ___to_5;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.RangeConstraint::comparer
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___comparer_6;
};
// NUnit.Framework.Constraints.ResolvableConstraintExpression
struct ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09 : public ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C
{
};
// System.SByte
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
{
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
};
// NUnit.Framework.Constraints.SameAsConstraint
struct SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Object NUnit.Framework.Constraints.SameAsConstraint::expected
RuntimeObject* ___expected_4;
};
// NUnit.Framework.Constraints.SelfResolvingOperator
struct SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88 : public ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02
{
};
// System.Single
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
{
// System.Single System.Single::m_value
float ___m_value_0;
};
// System.IO.Stream
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3;
};
struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
{
// System.IO.Stream System.IO.Stream::Null
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
};
// NUnit.Framework.Constraints.StringConstraint
struct StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.String NUnit.Framework.Constraints.StringConstraint::expected
String_t* ___expected_4;
// System.Boolean NUnit.Framework.Constraints.StringConstraint::caseInsensitive
bool ___caseInsensitive_5;
// System.String NUnit.Framework.Constraints.StringConstraint::descriptionText
String_t* ___descriptionText_6;
};
// System.IO.TextWriter
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___CoreNewLine_3;
// System.String System.IO.TextWriter::CoreNewLineStr
String_t* ___CoreNewLineStr_4;
// System.IFormatProvider System.IO.TextWriter::_internalFormatProvider
RuntimeObject* ____internalFormatProvider_5;
};
struct TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3_StaticFields
{
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3* ___Null_1;
// System.Char[] System.IO.TextWriter::s_coreNewLine
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___s_coreNewLine_2;
};
// NUnit.Framework.Constraints.ThrowsExceptionConstraint
struct ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// System.TimeSpan
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
{
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_22;
};
struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_StaticFields
{
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___Zero_19;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MaxValue_20;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___MinValue_21;
};
// NUnit.Framework.Constraints.TrueConstraint
struct TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
};
// NUnit.Framework.Constraints.TypeConstraint
struct TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0 : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Type NUnit.Framework.Constraints.TypeConstraint::expectedType
Type_t* ___expectedType_4;
// System.Type NUnit.Framework.Constraints.TypeConstraint::actualType
Type_t* ___actualType_5;
};
// System.UInt16
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
{
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
};
// System.UInt32
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
{
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
};
// System.UInt64
struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
{
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
};
// System.Void
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
{
union
{
struct
{
};
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
};
};
// NUnit.Framework.Constraints.XmlSerializableConstraint
struct XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA : public Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09
{
// System.Xml.Serialization.XmlSerializer NUnit.Framework.Constraints.XmlSerializableConstraint::serializer
XmlSerializer_t08AD90724C0D9D82D4CC23611E5FBDEE50B2867B* ___serializer_4;
};
// NUnit.Framework.Constraints.ComparisonAdapter/ComparerAdapter
struct ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE : public ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D
{
// System.Collections.IComparer NUnit.Framework.Constraints.ComparisonAdapter/ComparerAdapter::comparer
RuntimeObject* ___comparer_0;
};
// NUnit.Framework.Constraints.EqualityAdapter/ComparerAdapter
struct ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D : public EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C
{
// System.Collections.IComparer NUnit.Framework.Constraints.EqualityAdapter/ComparerAdapter::comparer
RuntimeObject* ___comparer_0;
};
// NUnit.Framework.Constraints.EqualityAdapter/EqualityComparerAdapter
struct EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66 : public EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C
{
// System.Collections.IEqualityComparer NUnit.Framework.Constraints.EqualityAdapter/EqualityComparerAdapter::comparer
RuntimeObject* ___comparer_0;
};
// NUnit.Framework.Constraints.FloatingPointNumerics/DoubleLongUnion
struct DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Double NUnit.Framework.Constraints.FloatingPointNumerics/DoubleLongUnion::Double
double ___Double_0;
};
#pragma pack(pop, tp)
struct
{
double ___Double_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int64 NUnit.Framework.Constraints.FloatingPointNumerics/DoubleLongUnion::Long
int64_t ___Long_1;
};
#pragma pack(pop, tp)
struct
{
int64_t ___Long_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.UInt64 NUnit.Framework.Constraints.FloatingPointNumerics/DoubleLongUnion::ULong
uint64_t ___ULong_2;
};
#pragma pack(pop, tp)
struct
{
uint64_t ___ULong_2_forAlignmentOnly;
};
};
};
// NUnit.Framework.Constraints.FloatingPointNumerics/FloatIntUnion
struct FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Single NUnit.Framework.Constraints.FloatingPointNumerics/FloatIntUnion::Float
float ___Float_0;
};
#pragma pack(pop, tp)
struct
{
float ___Float_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 NUnit.Framework.Constraints.FloatingPointNumerics/FloatIntUnion::Int
int32_t ___Int_1;
};
#pragma pack(pop, tp)
struct
{
int32_t ___Int_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.UInt32 NUnit.Framework.Constraints.FloatingPointNumerics/FloatIntUnion::UInt
uint32_t ___UInt_2;
};
#pragma pack(pop, tp)
struct
{
uint32_t ___UInt_2_forAlignmentOnly;
};
};
};
// NUnit.Framework.Constraints.AllItemsConstraint
struct AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
};
// NUnit.Framework.Constraints.AndConstraint
struct AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C : public BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04
{
};
// NUnit.Framework.Constraints.AndOperator
struct AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF : public BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4
{
};
// NUnit.Framework.Constraints.AssignableFromConstraint
struct AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0 : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// NUnit.Framework.Constraints.AssignableToConstraint
struct AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// NUnit.Framework.Constraints.AttributeConstraint
struct AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
// System.Type NUnit.Framework.Constraints.AttributeConstraint::expectedType
Type_t* ___expectedType_6;
// System.Attribute NUnit.Framework.Constraints.AttributeConstraint::attrFound
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* ___attrFound_7;
};
// NUnit.Framework.Constraints.AttributeOperator
struct AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA : public SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88
{
// System.Type NUnit.Framework.Constraints.AttributeOperator::type
Type_t* ___type_4;
};
// System.Reflection.BindingFlags
struct BindingFlags_t5DC2835E4AE9C1862B3AD172EF35B6A5F4F1812C
{
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint
struct CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618 : public CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E
{
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.CollectionItemsEqualConstraint::comparer
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ___comparer_4;
};
// NUnit.Framework.Constraints.CollectionOperator
struct CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E : public PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213
{
};
// NUnit.Framework.Constraints.CollectionOrderedConstraint
struct CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1 : public CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E
{
// System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep> NUnit.Framework.Constraints.CollectionOrderedConstraint::_steps
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* ____steps_4;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep NUnit.Framework.Constraints.CollectionOrderedConstraint::_activeStep
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* ____activeStep_5;
};
// NUnit.Framework.Constraints.ConstraintStatus
struct ConstraintStatus_t893C929B7C59DC403C2DACF91383B02B56966887
{
// System.Int32 NUnit.Framework.Constraints.ConstraintStatus::value__
int32_t ___value___2;
};
// System.DateTimeOffset
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4
{
// System.DateTime System.DateTimeOffset::_dateTime
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ____dateTime_3;
// System.Int16 System.DateTimeOffset::_offsetMinutes
int16_t ____offsetMinutes_4;
};
struct DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_StaticFields
{
// System.DateTimeOffset System.DateTimeOffset::MinValue
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MinValue_0;
// System.DateTimeOffset System.DateTimeOffset::MaxValue
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___MaxValue_1;
// System.DateTimeOffset System.DateTimeOffset::UnixEpoch
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___UnixEpoch_2;
};
// NUnit.Framework.Constraints.DelayedConstraint
struct DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
// System.Int32 NUnit.Framework.Constraints.DelayedConstraint::delayInMilliseconds
int32_t ___delayInMilliseconds_6;
// System.Int32 NUnit.Framework.Constraints.DelayedConstraint::pollingInterval
int32_t ___pollingInterval_7;
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject* ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.IntPtr System.Delegate::interp_method
intptr_t ___interp_method_7;
// System.IntPtr System.Delegate::interp_invoke_impl
intptr_t ___interp_invoke_impl_8;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t* ___method_info_9;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t* ___original_method_info_10;
// System.DelegateData System.Delegate::data
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_12;
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
intptr_t ___interp_method_7;
intptr_t ___interp_invoke_impl_8;
MethodInfo_t* ___method_info_9;
MethodInfo_t* ___original_method_info_10;
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
int32_t ___method_is_virtual_12;
};
// NUnit.Framework.Constraints.EmptyCollectionConstraint
struct EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8 : public CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E
{
};
// NUnit.Framework.Constraints.EmptyStringConstraint
struct EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.Constraints.EndsWithConstraint
struct EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294 : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.Constraints.ExactTypeConstraint
struct ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// System.Exception
struct Exception_t : public RuntimeObject
{
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t* ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject* ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject* ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
// System.Int32 System.Exception::caught_in_unmanaged
int32_t ___caught_in_unmanaged_16;
};
struct Exception_t_StaticFields
{
// System.Object System.Exception::s_EDILock
RuntimeObject* ___s_EDILock_0;
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
int32_t ___caught_in_unmanaged_16;
};
// System.IO.FileAttributes
struct FileAttributes_t307E067EF44503B262F446FFD18E6230AF91AA5F
{
// System.Int32 System.IO.FileAttributes::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.FileExistsConstraint
struct FileExistsConstraint_tF638892F90C04CEC79D16AE54001FD837F4EB878 : public FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE
{
};
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle
struct FormatterAssemblyStyle_t4CCE312D5A245F25EB81559ED52F386ECA54F110
{
// System.Int32 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle::value__
int32_t ___value___2;
};
// System.Runtime.Serialization.Formatters.FormatterTypeStyle
struct FormatterTypeStyle_t03F7DA23A003A292EAFC6C7239A5FB10E67C9D05
{
// System.Int32 System.Runtime.Serialization.Formatters.FormatterTypeStyle::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.GreaterThanConstraint
struct GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint
struct GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848 : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.Constraints.InstanceOfTypeConstraint
struct InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F : public TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0
{
};
// System.Threading.LazyThreadSafetyMode
struct LazyThreadSafetyMode_tE448900A097FC7C34E7D3A88B9DD3F04E3FB946D
{
// System.Int32 System.Threading.LazyThreadSafetyMode::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.LessThanConstraint
struct LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942 : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// NUnit.Framework.Constraints.LessThanOrEqualConstraint
struct LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663 : public ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2
{
};
// System.IO.MemoryStream
struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
{
// System.Byte[] System.IO.MemoryStream::_buffer
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer_4;
// System.Int32 System.IO.MemoryStream::_origin
int32_t ____origin_5;
// System.Int32 System.IO.MemoryStream::_position
int32_t ____position_6;
// System.Int32 System.IO.MemoryStream::_length
int32_t ____length_7;
// System.Int32 System.IO.MemoryStream::_capacity
int32_t ____capacity_8;
// System.Boolean System.IO.MemoryStream::_expandable
bool ____expandable_9;
// System.Boolean System.IO.MemoryStream::_writable
bool ____writable_10;
// System.Boolean System.IO.MemoryStream::_exposable
bool ____exposable_11;
// System.Boolean System.IO.MemoryStream::_isOpen
bool ____isOpen_12;
// System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ____lastReadTask_13;
};
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
};
// NUnit.Framework.Constraints.NoItemConstraint
struct NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
};
// NUnit.Framework.Constraints.NotConstraint
struct NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
};
// NUnit.Framework.Constraints.NotOperator
struct NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0 : public PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213
{
};
// NUnit.Framework.Constraints.OrConstraint
struct OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D : public BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04
{
};
// NUnit.Framework.Constraints.OrOperator
struct OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B : public BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4
{
};
// NUnit.Framework.Constraints.PathConstraint
struct PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96 : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
struct PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_StaticFields
{
// System.Char[] NUnit.Framework.Constraints.PathConstraint::DirectorySeparatorChars
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___DirectorySeparatorChars_9;
};
// NUnit.Framework.Constraints.PropOperator
struct PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B : public SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88
{
// System.String NUnit.Framework.Constraints.PropOperator::name
String_t* ___name_4;
};
// NUnit.Framework.Constraints.PropertyConstraint
struct PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
// System.String NUnit.Framework.Constraints.PropertyConstraint::name
String_t* ___name_6;
// System.Object NUnit.Framework.Constraints.PropertyConstraint::propValue
RuntimeObject* ___propValue_7;
};
// NUnit.Framework.Constraints.RegexConstraint
struct RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// System.Text.RegularExpressions.RegexOptions
struct RegexOptions_tE9DA9C4DF8FB26DD1C7E0F8AA022C1164A423F6B
{
// System.Int32 System.Text.RegularExpressions.RegexOptions::value__
int32_t ___value___2;
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
{
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
};
// System.IO.SeekOrigin
struct SeekOrigin_t7EB9AD0EDF26368A40F48FA2098F02160B1E8000
{
// System.Int32 System.IO.SeekOrigin::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.SomeItemsConstraint
struct SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
};
// NUnit.Framework.Constraints.StartsWithConstraint
struct StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
{
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
};
// System.StringComparison
struct StringComparison_tE14A55CCFA001A5AC85D754179BF2888F45CC94D
{
// System.Int32 System.StringComparison::value__
int32_t ___value___2;
};
// System.StringSplitOptions
struct StringSplitOptions_t4DD892C76C70DD4800FC1B76054D69826F770062
{
// System.Int32 System.StringSplitOptions::value__
int32_t ___value___2;
};
// System.IO.StringWriter
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D : public TextWriter_tA9E5461506CF806E17B6BBBF2119359DEDA3F0F3
{
// System.Text.StringBuilder System.IO.StringWriter::_sb
StringBuilder_t* ____sb_7;
// System.Boolean System.IO.StringWriter::_isOpen
bool ____isOpen_8;
};
struct StringWriter_tF48052BE4F980E5C85403221E835768E4156267D_StaticFields
{
// System.Text.UnicodeEncoding modreq(System.Runtime.CompilerServices.IsVolatile) System.IO.StringWriter::m_encoding
UnicodeEncoding_t2C90D9E1E55C16081FACA57B229053C1EF05DAF0* ___m_encoding_6;
};
// NUnit.Framework.Constraints.SubstringConstraint
struct SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB : public StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C
{
};
// NUnit.Framework.Constraints.ThrowsConstraint
struct ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374 : public PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04
{
// System.Exception NUnit.Framework.Constraints.ThrowsConstraint::caughtException
Exception_t* ___caughtException_6;
};
// NUnit.Framework.Constraints.ThrowsOperator
struct ThrowsOperator_t801DD32B57E15D034CEBD381C73B3DCF7B2262F0 : public SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88
{
};
// NUnit.Framework.Constraints.ToleranceMode
struct ToleranceMode_tFFCC8EB41DDF1C55B7EAA081CF30BCEF3F63780D
{
// System.Int32 NUnit.Framework.Constraints.ToleranceMode::value__
int32_t ___value___2;
};
// System.Runtime.Serialization.Formatters.TypeFilterLevel
struct TypeFilterLevel_t4CFC812CEE96910D8935844A5F8FB7A437BFB711
{
// System.Int32 System.Runtime.Serialization.Formatters.TypeFilterLevel::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.WithOperator
struct WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E : public PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213
{
};
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection
struct OrderDirection_tA93422C7E951A0FEE22CC0FF7B0C3E7663A5EBD7
{
// System.Int32 NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection::value__
int32_t ___value___2;
};
// NUnit.Framework.Constraints.ComparisonAdapter/DefaultComparisonAdapter
struct DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725 : public ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE
{
};
// Interop/Sys/FileStatusFlags
struct FileStatusFlags_tB53E2B9A54305CDCEA49884DEEDB8C62C8ACC9C9
{
// System.Int32 Interop/Sys/FileStatusFlags::value__
int32_t ___value___2;
};
// System.Lazy`1<System.String>
struct Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4 : public RuntimeObject
{
// T System.Lazy`1::value
String_t* ___value_0;
// System.Func`1<T> System.Lazy`1::factory
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___factory_1;
// System.Object System.Lazy`1::monitor
RuntimeObject* ___monitor_2;
// System.Exception System.Lazy`1::exception
Exception_t* ___exception_3;
// System.Threading.LazyThreadSafetyMode System.Lazy`1::mode
int32_t ___mode_4;
// System.Boolean System.Lazy`1::inited
bool ___inited_5;
};
// NUnit.Framework.Constraints.AllOperator
struct AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059 : public CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E
{
};
// System.ApplicationException
struct ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A : public Exception_t
{
};
// NUnit.Framework.Constraints.CollectionContainsConstraint
struct CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Object NUnit.Framework.Constraints.CollectionContainsConstraint::<Expected>k__BackingField
RuntimeObject* ___U3CExpectedU3Ek__BackingField_5;
};
// NUnit.Framework.Constraints.CollectionEquivalentConstraint
struct CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Collections.IEnumerable NUnit.Framework.Constraints.CollectionEquivalentConstraint::_expected
RuntimeObject* ____expected_5;
};
// NUnit.Framework.Constraints.CollectionSubsetConstraint
struct CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Collections.IEnumerable NUnit.Framework.Constraints.CollectionSubsetConstraint::_expected
RuntimeObject* ____expected_5;
};
// NUnit.Framework.Constraints.CollectionSupersetConstraint
struct CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
// System.Collections.IEnumerable NUnit.Framework.Constraints.CollectionSupersetConstraint::_expected
RuntimeObject* ____expected_5;
};
// NUnit.Framework.Constraints.ConstraintResult
struct ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D : public RuntimeObject
{
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ConstraintResult::_constraint
RuntimeObject* ____constraint_0;
// System.Object NUnit.Framework.Constraints.ConstraintResult::<ActualValue>k__BackingField
RuntimeObject* ___U3CActualValueU3Ek__BackingField_1;
// NUnit.Framework.Constraints.ConstraintStatus NUnit.Framework.Constraints.ConstraintResult::<Status>k__BackingField
int32_t ___U3CStatusU3Ek__BackingField_2;
};
// NUnit.Framework.Constraints.ExactCountOperator
struct ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929 : public CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E
{
// System.Int32 NUnit.Framework.Constraints.ExactCountOperator::expectedCount
int32_t ___expectedCount_4;
};
// NUnit.Framework.Constraints.MessageWriter
struct MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E : public StringWriter_tF48052BE4F980E5C85403221E835768E4156267D
{
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_13;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_13;
};
// NUnit.Framework.Constraints.NoneOperator
struct NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F : public CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E
{
};
// NUnit.Framework.Constraints.SamePathConstraint
struct SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3 : public PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96
{
};
// NUnit.Framework.Constraints.SamePathOrUnderConstraint
struct SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF : public PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96
{
};
// NUnit.Framework.Constraints.SomeOperator
struct SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93 : public CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E
{
};
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
{
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject* ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
};
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// NUnit.Framework.Constraints.SubPathConstraint
struct SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D : public PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96
{
};
// System.SystemException
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
{
};
// NUnit.Framework.Constraints.Tolerance
struct Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C : public RuntimeObject
{
// NUnit.Framework.Constraints.ToleranceMode NUnit.Framework.Constraints.Tolerance::mode
int32_t ___mode_0;
// System.Object NUnit.Framework.Constraints.Tolerance::amount
RuntimeObject* ___amount_1;
};
// System.Type
struct Type_t : public MemberInfo_t
{
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl_8;
};
struct Type_t_StaticFields
{
// System.Reflection.Binder modreq(System.Runtime.CompilerServices.IsVolatile) System.Type::s_defaultBinder
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder_0;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_1;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes_2;
// System.Object System.Type::Missing
RuntimeObject* ___Missing_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase_6;
};
// NUnit.Framework.Constraints.UniqueItemsConstraint
struct UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7 : public CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618
{
};
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep
struct OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD : public RuntimeObject
{
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::<PropertyName>k__BackingField
String_t* ___U3CPropertyNameU3Ek__BackingField_0;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::<Direction>k__BackingField
int32_t ___U3CDirectionU3Ek__BackingField_1;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::<Comparer>k__BackingField
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___U3CComparerU3Ek__BackingField_2;
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::<ComparerName>k__BackingField
String_t* ___U3CComparerNameU3Ek__BackingField_3;
};
// Interop/Sys/FileStatus
struct FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2
{
// Interop/Sys/FileStatusFlags Interop/Sys/FileStatus::Flags
int32_t ___Flags_0;
// System.Int32 Interop/Sys/FileStatus::Mode
int32_t ___Mode_1;
// System.UInt32 Interop/Sys/FileStatus::Uid
uint32_t ___Uid_2;
// System.UInt32 Interop/Sys/FileStatus::Gid
uint32_t ___Gid_3;
// System.Int64 Interop/Sys/FileStatus::Size
int64_t ___Size_4;
// System.Int64 Interop/Sys/FileStatus::ATime
int64_t ___ATime_5;
// System.Int64 Interop/Sys/FileStatus::ATimeNsec
int64_t ___ATimeNsec_6;
// System.Int64 Interop/Sys/FileStatus::MTime
int64_t ___MTime_7;
// System.Int64 Interop/Sys/FileStatus::MTimeNsec
int64_t ___MTimeNsec_8;
// System.Int64 Interop/Sys/FileStatus::CTime
int64_t ___CTime_9;
// System.Int64 Interop/Sys/FileStatus::CTimeNsec
int64_t ___CTimeNsec_10;
// System.Int64 Interop/Sys/FileStatus::BirthTime
int64_t ___BirthTime_11;
// System.Int64 Interop/Sys/FileStatus::BirthTimeNsec
int64_t ___BirthTimeNsec_12;
// System.Int64 Interop/Sys/FileStatus::Dev
int64_t ___Dev_13;
// System.Int64 Interop/Sys/FileStatus::Ino
int64_t ___Ino_14;
// System.UInt32 Interop/Sys/FileStatus::UserFlags
uint32_t ___UserFlags_15;
};
// System.Func`1<System.String>
struct Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C : public MulticastDelegate_t
{
};
// System.ArgumentException
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
// System.String System.ArgumentException::_paramName
String_t* ____paramName_18;
};
// System.AsyncCallback
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C : public MulticastDelegate_t
{
};
// System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
struct BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F : public RuntimeObject
{
// System.Runtime.Serialization.ISurrogateSelector System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_surrogates
RuntimeObject* ___m_surrogates_0;
// System.Runtime.Serialization.StreamingContext System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_context
StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___m_context_1;
// System.Runtime.Serialization.SerializationBinder System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_binder
SerializationBinder_tB959BF0F4EF3F8611E5891A7011DD99F9FD69E2A* ___m_binder_2;
// System.Runtime.Serialization.Formatters.FormatterTypeStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_typeFormat
int32_t ___m_typeFormat_3;
// System.Runtime.Serialization.Formatters.FormatterAssemblyStyle System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_assemblyFormat
int32_t ___m_assemblyFormat_4;
// System.Runtime.Serialization.Formatters.TypeFilterLevel System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_securityLevel
int32_t ___m_securityLevel_5;
// System.Object[] System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::m_crossAppDomainArray
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_crossAppDomainArray_6;
};
struct BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F_StaticFields
{
// System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation> System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::typeNameCache
Dictionary_2_t8B428D684ADA214F1A90B42123A1536ED34C1FF8* ___typeNameCache_7;
};
// NUnit.Framework.Constraints.DictionaryContainsKeyConstraint
struct DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2 : public CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0
{
};
// NUnit.Framework.Constraints.EqualConstraintResult
struct EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772 : public ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D
{
// System.Object NUnit.Framework.Constraints.EqualConstraintResult::expectedValue
RuntimeObject* ___expectedValue_3;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.EqualConstraintResult::tolerance
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance_4;
// System.Boolean NUnit.Framework.Constraints.EqualConstraintResult::caseInsensitive
bool ___caseInsensitive_5;
// System.Boolean NUnit.Framework.Constraints.EqualConstraintResult::clipStrings
bool ___clipStrings_6;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.EqualConstraintResult::failurePoints
RuntimeObject* ___failurePoints_7;
};
struct EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_StaticFields
{
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StringsDiffer_1
String_t* ___StringsDiffer_1_8;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StringsDiffer_2
String_t* ___StringsDiffer_2_9;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StreamsDiffer_1
String_t* ___StreamsDiffer_1_10;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::StreamsDiffer_2
String_t* ___StreamsDiffer_2_11;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::CollectionType_1
String_t* ___CollectionType_1_12;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::CollectionType_2
String_t* ___CollectionType_2_13;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::ValuesDiffer_1
String_t* ___ValuesDiffer_1_14;
// System.String NUnit.Framework.Constraints.EqualConstraintResult::ValuesDiffer_2
String_t* ___ValuesDiffer_2_15;
};
// System.IO.FileStatus
struct FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5
{
// Interop/Sys/FileStatus System.IO.FileStatus::_fileStatus
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 ____fileStatus_0;
// System.Int32 System.IO.FileStatus::_fileStatusInitialized
int32_t ____fileStatusInitialized_1;
// System.Boolean System.IO.FileStatus::<InitiallyDirectory>k__BackingField
bool ___U3CInitiallyDirectoryU3Ek__BackingField_2;
// System.Boolean System.IO.FileStatus::_isDirectory
bool ____isDirectory_3;
// System.Boolean System.IO.FileStatus::_exists
bool ____exists_4;
};
// Native definition for P/Invoke marshalling of System.IO.FileStatus
struct FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5_marshaled_pinvoke
{
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 ____fileStatus_0;
int32_t ____fileStatusInitialized_1;
int32_t ___U3CInitiallyDirectoryU3Ek__BackingField_2;
int32_t ____isDirectory_3;
int32_t ____exists_4;
};
// Native definition for COM marshalling of System.IO.FileStatus
struct FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5_marshaled_com
{
FileStatus_tCB96EDE0D0F945F685B9BBED6DBF0731207458C2 ____fileStatus_0;
int32_t ____fileStatusInitialized_1;
int32_t ___U3CInitiallyDirectoryU3Ek__BackingField_2;
int32_t ____isDirectory_3;
int32_t ____exists_4;
};
// System.InvalidOperationException
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
// System.Runtime.Serialization.SerializationException
struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
{
};
struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_StaticFields
{
// System.String System.Runtime.Serialization.SerializationException::s_nullMessage
String_t* ___s_nullMessage_18;
};
// System.Reflection.TargetInvocationException
struct TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2 : public ApplicationException_tA744BED4E90266BD255285CD4CF909BAB3EE811A
{
};
// NUnit.Framework.TestDelegate
struct TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89 : public MulticastDelegate_t
{
};
// NUnit.Framework.Constraints.ValueFormatter
struct ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6 : public MulticastDelegate_t
{
};
// NUnit.Framework.Constraints.ValueFormatterFactory
struct ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF : public MulticastDelegate_t
{
};
// NUnit.Framework.Constraints.AndConstraint/AndConstraintResult
struct AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3 : public ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D
{
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.AndConstraint/AndConstraintResult::leftResult
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ___leftResult_3;
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.AndConstraint/AndConstraintResult::rightResult
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ___rightResult_4;
};
// NUnit.Framework.Constraints.ThrowsExceptionConstraint/ThrowsExceptionConstraintResult
struct ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B : public ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D
{
};
// System.ArgumentNullException
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
{
};
// System.IO.FileSystemInfo
struct FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9 : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
{
// System.IO.FileStatus System.IO.FileSystemInfo::_fileStatus
FileStatus_tABB5F252F1E597EC95E9041035DC424EF66712A5 ____fileStatus_1;
// System.String System.IO.FileSystemInfo::FullPath
String_t* ___FullPath_2;
// System.String System.IO.FileSystemInfo::OriginalPath
String_t* ___OriginalPath_3;
// System.String System.IO.FileSystemInfo::_name
String_t* ____name_4;
};
// System.IO.DirectoryInfo
struct DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2 : public FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9
{
};
// System.IO.FileInfo
struct FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C : public FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9
{
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
{
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Attribute[]
struct AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1 : public RuntimeArray
{
ALIGN_FIELD (8) Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* m_Items[1];
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.IO.FileInfo[]
struct FileInfoU5BU5D_tCB74DD125A9220ABCF5F48549F2C71B74BBCD7E6 : public RuntimeArray
{
ALIGN_FIELD (8) FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* m_Items[1];
inline FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.IO.DirectoryInfo[]
struct DirectoryInfoU5BU5D_t5D09D46C6EBC15480AF7C63C54276B57A4287953 : public RuntimeArray
{
ALIGN_FIELD (8) DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* m_Items[1];
inline DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
{
ALIGN_FIELD (8) Delegate_t* m_Items[1];
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Int32[]
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
{
ALIGN_FIELD (8) int32_t m_Items[1];
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.Type[]
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB : public RuntimeArray
{
ALIGN_FIELD (8) Type_t* m_Items[1];
inline Type_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Type_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Type_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Type_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Type_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Type_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Byte[]
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
{
ALIGN_FIELD (8) uint8_t m_Items[1];
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.String[]
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
{
ALIGN_FIELD (8) String_t* m_Items[1];
inline String_t* GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline String_t** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, String_t* value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Char[]
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
{
ALIGN_FIELD (8) Il2CppChar m_Items[1];
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67 : public RuntimeArray
{
ALIGN_FIELD (8) KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 m_Items[1];
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::CheckString<System.Object>(TActual)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412_gshared (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, RuntimeObject* ___actual0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared (Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void System.Lazy`1<System.Object>::.ctor(System.Func`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Lazy_1__ctor_mE55626DCDDEDB9168837CC351A8F10DB9A0972B4_gshared (Lazy_1_t904FA5CA043D1868CDD4220B007FAA2894327C93* __this, Func_1_tD5C081AE11746B200C711DD48DBEB00E3A9276D4* ___valueFactory0, const RuntimeMethod* method) ;
// T System.Lazy`1<System.Object>::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Lazy_1_get_Value_m80A9A8E00656C1301C6EC23B874F2C5B9EFE80BD_gshared (Lazy_1_t904FA5CA043D1868CDD4220B007FAA2894327C93* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Stack`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.Stack`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.Stack`1<System.Object>::Peek()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Peek_mF0ECF6A61726B66E6D9B33D8C4DEAA47E586E6E4_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Stack`1<System.Object>::Push(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, RuntimeObject* ___item0, const RuntimeMethod* method) ;
// T System.Collections.Generic.Stack`1<System.Object>::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraint::AdjustArgumentIfNeeded<System.Object>(T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_gshared (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject** ___arg0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::CheckGameObjectReference<System.Object>(T&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_gshared (RuntimeObject** ___value0, const RuntimeMethod* method) ;
// TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
// TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m192C3D32AF3678C97E6520292F2C32629E9A905B_gshared (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::.ctor(TKey,TValue)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, RuntimeObject* ___key0, RuntimeObject* ___value1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>::Add(T)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m8DDAFA7A565FBEEB8C312BF1E890AB978D3760AE_gshared_inline (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ___item0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, RuntimeObject* ___item1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, bool ___isSuccess2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.Constraint::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileOrDirectoryExistsConstraint__ctor_m1F60B8979E3E84285099ADBF0285DBF35FC6FE01 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, bool ___ignoreDirectories0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_ErrorSubstring()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileOrDirectoryExistsConstraint_get_ErrorSubstring_m0442E407CF7286730FB5A1E370F91196B18925B6 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::CheckString<System.Object>(TActual)
inline ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
return (( ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* (*) (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*, RuntimeObject*, const RuntimeMethod*))FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412_gshared)(__this, ___actual0, method);
}
// System.Void System.ArgumentException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, String_t* ___paramName1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AllItemsConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllItemsConstraint__ctor_mD99BB69560D4686A82AB937EB03B77902D8A4340 (AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB* __this, RuntimeObject* ___itemConstraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOperator__ctor_m71C252AF8ACAAD5E9BB659F4B801FA7891FC70B6 (CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NoItemConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoItemConstraint__ctor_m1E49F7E89D3F2AF5DB728152CFB3F03C7D0C3E04 (NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4* __this, RuntimeObject* ___itemConstraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SomeItemsConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SomeItemsConstraint__ctor_m7DB249F17B8983C2EC5FBAFDDA5A2B4BAA502A41 (SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23* __this, RuntimeObject* ___itemConstraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathConstraint__ctor_m6242998BDF8309B40C0B4D4E6D43E9A5A78FFFF8 (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497 (RuntimeObject* ___val0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.PathConstraint::Canonicalize(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8 (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, String_t* ___path0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.PathConstraint::IsSubPath(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PathConstraint_IsSubPath_m822A5D0E9EBDD075FAE704498E3A9629C4B2E04D (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, String_t* ___path10, String_t* ___path21, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.TestDelegate::Invoke()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_inline (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method) ;
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30 (String_t* ___format0, RuntimeObject* ___arg01, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ThrowsExceptionConstraint/ThrowsExceptionConstraintResult::.ctor(NUnit.Framework.Constraints.ThrowsExceptionConstraint,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsExceptionConstraintResult__ctor_mC2B278990D0D214E1E95B8FA13D4B5CB20022302 (ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B* __this, ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* ___constraint0, Exception_t* ___caughtException1, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintStatus NUnit.Framework.Constraints.ConstraintResult::get_Status()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConstraintResult_get_Status_mAEE12663BC9208C46E3A4F58F3D9F53C2B5361E1_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult_WriteActualValueTo_mE6F88F20312A3AA37B37E921DAE6C408E79820B1 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PrefixConstraint::.ctor(NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1 (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, RuntimeObject* ___baseConstraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PrefixConstraint::set_DescriptionPrefix(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, String_t* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.PrefixConstraint::get_BaseConstraint()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object,NUnit.Framework.Constraints.ConstraintStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, int32_t ___status2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.BinaryConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryConstraint__ctor_m7CF3098D259E649C7CA3A956D43B2EBB10C38FAA (BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method) ;
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_m715C169443DE08DA8C3F016926652D92EA22FB19 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AndConstraint/AndConstraintResult::.ctor(NUnit.Framework.Constraints.AndConstraint,System.Object,NUnit.Framework.Constraints.ConstraintResult,NUnit.Framework.Constraints.ConstraintResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndConstraintResult__ctor_mD5943D27B0060AC01D0524C027252CB91E54079E (AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* __this, AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* ___constraint0, RuntimeObject* ___actual1, ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ___leftResult2, ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ___rightResult3, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.TypeConstraint::.ctor(System.Type,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeConstraint__ctor_m2E90D1A14179614B327FA9909AFAB764D6461640 (TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0* __this, Type_t* ___type0, String_t* ___descriptionPrefix1, const RuntimeMethod* method) ;
// System.Type NUnit.Compatibility.TypeExtensions::GetTypeInfo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA (Type_t* ___type0, const RuntimeMethod* method) ;
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___handle0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Guard::ArgumentNotNull(System.Object,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987 (RuntimeObject* ___value0, String_t* ___name1, const RuntimeMethod* method) ;
// System.Attribute[] NUnit.Compatibility.AttributeHelper::GetCustomAttributes(System.Object,System.Type,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* AttributeHelper_GetCustomAttributes_m51204D122B5336C97F865E8464E760965BD0BA1E (RuntimeObject* ___actual0, Type_t* ___attributeType1, bool ___inherit2, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806 (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::set_Status(NUnit.Framework.Constraints.ConstraintStatus)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConstraintResult_set_Status_m76C630530199E02CCBC93BB748D8EB5F85F444CB_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___paramName0, const RuntimeMethod* method) ;
// System.Void System.IO.MemoryStream::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m8F3BAE0B48E65BAA13C52FB020E502B3EA22CA6B (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* __this, const RuntimeMethod* method) ;
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::Serialize(System.IO.Stream,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter_Serialize_mF365DA7FA76E03707336375616D757397CF2992E (BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___serializationStream0, RuntimeObject* ___graph1, const RuntimeMethod* method) ;
// System.Object System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::Deserialize(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BinaryFormatter_Deserialize_mFC50E75F230189EB3660C8F2FD1E786C0D11E1ED (BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___serializationStream0, const RuntimeMethod* method) ;
// System.Void System.Runtime.Serialization.Formatters.Binary.BinaryFormatter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryFormatter__ctor_m484DBB5D742624C3A8190921A85458BCECBB1705 (BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionItemsEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___arg0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionContainsConstraint::set_Expected(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CollectionContainsConstraint_set_Expected_mFB45EC4D54995420CA5C994D70690A73F27FDBC7_inline (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Constraints.CollectionContainsConstraint::get_Expected()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.CollectionItemsEqualConstraint::ItemsEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionItemsEqualConstraint_ItemsEqual_m4F5F65960841269FC2700BBE382D53200E196C2B (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionTally NUnit.Framework.Constraints.CollectionItemsEqualConstraint::Tally(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* CollectionItemsEqualConstraint_Tally_m011D3127C5D2409BE46E8AF17918C79BAF9D8E05 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___c0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.CollectionTally::TryRemove(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___c0, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Constraints.CollectionTally::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionTally_get_Count_mD6F314D427AE5132606A1B41120C502ABF3A4E0B (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.NUnitEqualityComparer::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* NUnitEqualityComparer_get_Default_m6A60DD26DF114A891ACD028E4ABD4AEBAB45BCB1 (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionConstraint__ctor_m2D6FCCB415B194F6D0ECFEDF51C3BCFF01E01B60 (CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionConstraint__ctor_m5996D49C6291DDE95CEE7DDF13A96B3825605D78 (CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E* __this, RuntimeObject* ___arg0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::set_IgnoreCase(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_IgnoreCase_mB429070FD90395F5F0E9A97E00CEE5D813294BE1 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.EqualityAdapter> NUnit.Framework.Constraints.NUnitEqualityComparer::get_ExternalComparers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EqualityAdapter NUnit.Framework.Constraints.EqualityAdapter::For(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* EqualityAdapter_For_m2A6B329527B85B4C0100BE9A102A910E0E17DFDC (RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EqualityAdapter NUnit.Framework.Constraints.EqualityAdapter::For(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* EqualityAdapter_For_m5ACE7BA09274D741298495A781ED2BC4A71FEA30 (RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Default_mBB92F23DF5219A7D3C7FAD65B67DE9162DAFF37A (const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionTally::.ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionTally__ctor_m21CFBFBBC15F27DA0008AE83A1C31DC41F2F8328 (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ___comparer0, RuntimeObject* ___c1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::.ctor()
inline void List_1__ctor_m602C3C555F0F9190329EDBCFAF9294E5FEE8FBEA (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint::CreateNextStep(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOrderedConstraint_CreateNextStep_mC66D6EF86D0C402BE11AB3E8C2D3538E2A9AC79E (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, String_t* ___propertyName0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_Direction()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method) ;
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_Direction(NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_Direction_m8B117F56733B7CFED1769A3EB3F1B51D1464852C_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_ComparerName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* OrderingStep_get_ComparerName_m5C6C54BD55587837E34BF10446C99494EC195E1D_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.ComparisonAdapter::For(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ComparisonAdapter_For_mCF28A0895277AB45BD066787BA8E470280153E5D (RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_Comparer(NUnit.Framework.Constraints.ComparisonAdapter)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_Comparer_mA788E45DD94E9302E455686AE00DE2E9E56ECEAD_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_ComparerName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_ComparerName_mE99C21A0DDDAEE2CCF1FB61120EBCD4D5C29F15B_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_PropertyName()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_PropertyName(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_PropertyName_mC92FC43DC299CBE9D9B4579077DCF6B5E3415F7D_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::GetEnumerator()
inline Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9 List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26 (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* __this, const RuntimeMethod* method)
{
return (( Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9 (*) (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::Dispose()
inline void Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92 (Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::get_Current()
inline OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_inline (Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9* __this, const RuntimeMethod* method)
{
return (( OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* (*) (Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::MoveNext()
inline bool Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39 (Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, const RuntimeMethod* method) ;
// T System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::get_Item(System.Int32)
inline OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37 (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* (*) (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D (Type_t* __this, String_t* ___name0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_Comparer()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* OrderingStep_get_Comparer_mBB95FA3DACD25E0CD86EAE342F551717B7350F82_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60 (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::get_Count()
inline int32_t List_1_get_Count_mDCC2E72ECDC759487B69BF608EC7FF466335558A_inline (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderingStep__ctor_m11228A1730BBB9F45FCE08134315E62565B072B8 (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___propertyName0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep>::Add(T)
inline void List_1_Add_m15208ACC5D7CF9CF4BA17492E1F8D204350316C7_inline (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* __this, OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02*, OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.ComparisonAdapter::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ComparisonAdapter_get_Default_m744091F5E4EC179D1781D7CD04C8E3B63C38526C (const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
inline void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
inline void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___item0, method);
}
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
inline int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
}
// T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
inline RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___index0, method);
}
// System.Boolean NUnit.Framework.Constraints.CollectionTally::ItemsEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_ItemsEqual_mF794AB66B071B9BCCA9B68CB0069FF29989267A8 (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<System.Object>::RemoveAt(System.Int32)
inline void List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___index0, const RuntimeMethod* method)
{
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, int32_t, const RuntimeMethod*))List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_gshared)(__this, ___index0, method);
}
// System.Boolean NUnit.Framework.Constraints.CollectionTally::TryRemove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_TryRemove_mC989A88312447354193CEEFDE394FCADD818D330 (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___o0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ComparisonAdapter/DefaultComparisonAdapter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultComparisonAdapter__ctor_m027FF740238502967EE2CEF688BF6C0CEBCD0888 (DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ComparisonAdapter/ComparerAdapter::.ctor(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparerAdapter__ctor_m40DCF674818ABC97F47860363828FDFF3C45A2FC (ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.NUnitComparer NUnit.Framework.Constraints.NUnitComparer::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* NUnitComparer_get_Default_m4D1974388FE381448C2B50580E53CD5EC443C85F (const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ComparisonAdapter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparisonAdapter__ctor_m6D6A0A33E6EEE78C748D61F1C367E7A6EC759BE0 (ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.Constraint::set_Arguments(System.Object[])
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Constraint_set_Arguments_m20BB02429362F1D7322001837C9751C4C8B772EC_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method) ;
// System.Void System.Func`1<System.String>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_m27A68E928C1D9158EAAD261086B9BC424339327B (Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_1__ctor_m663374A863E492A515BE9626B6F0E444991834E8_gshared)(__this, ___object0, ___method1, method);
}
// System.Void System.Lazy`1<System.String>::.ctor(System.Func`1<T>)
inline void Lazy_1__ctor_m6267B3BFD3B5D9E5242B8519614EB03C2AACC7E3 (Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4* __this, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* ___valueFactory0, const RuntimeMethod* method)
{
(( void (*) (Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4*, Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C*, const RuntimeMethod*))Lazy_1__ctor_mE55626DCDDEDB9168837CC351A8F10DB9A0972B4_gshared)(__this, ___valueFactory0, method);
}
// T System.Lazy`1<System.String>::get_Value()
inline String_t* Lazy_1_get_Value_m0BDD31125DFBF93B6560F296B0998C21043C072E (Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4* __this, const RuntimeMethod* method)
{
return (( String_t* (*) (Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4*, const RuntimeMethod*))Lazy_1_get_Value_m80A9A8E00656C1301C6EC23B874F2C5B9EFE80BD_gshared)(__this, method);
}
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.Constraint::get_Builder()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method) ;
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D (StringBuilder_t* __this, const RuntimeMethod* method) ;
// System.String System.String::ToLower()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD (String_t* __this, const RuntimeMethod* method) ;
// System.Object[] NUnit.Framework.Constraints.Constraint::get_Arguments()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.Constraint::_displayable(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint__displayable_mDFD74EB0BA73DEFE8014D98D56EC818081A2FEF1 (RuntimeObject* ___o0, const RuntimeMethod* method) ;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425 (const RuntimeMethod* method) ;
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mBFACD7FE8657957CE3D5DA54D519AB418AF421E7 (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AndConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndConstraint__ctor_m8F7D63F6B6CDED1C979E60A87A796F10BC663A91 (AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.OrConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrConstraint__ctor_m9F1EBB58248F30BF76A1022CEDBE0551A7C59F8F (OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NotConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* __this, RuntimeObject* ___baseConstraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder__ctor_m2C78200980B6F0C14493B50BA1C91827DBDAD429 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::Append(NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_Append_m3DD7FC6402710ADD58D6A21A546090FC71896589 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___constraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AndOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndOperator__ctor_m5B7DFD6B2B3E2CACC2B7CFE8B6CDE53C8F88E312 (AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::Append(NUnit.Framework.Constraints.ConstraintOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_Append_m4AEA43FC6CF6333A9B6501CA2E5871219346F061 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___op0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintExpression::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintExpression__ctor_m658096F29E59B967D5D410B0CF1A01AF6E296C2D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.Constraint::get_And()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Constraint_get_And_m37D234FCFAC82BFC14026FFEC0468CB0D4896967 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.OrOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrOperator__ctor_m970F375DFA2B6C2344A5FDDF071E52C41CDDD24F (OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ConstraintBuilder::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.DelayedConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayedConstraint__ctor_m66E2DE197A493879B38BD86D67F7943271E702D3 (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, RuntimeObject* ___baseConstraint0, int32_t ___delayInMilliseconds1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.DelayedConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayedConstraint__ctor_mE85122D6222B1C8D526565D623F990134B70253B (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, RuntimeObject* ___baseConstraint0, int32_t ___delayInMilliseconds1, int32_t ___pollingInterval2, const RuntimeMethod* method) ;
// System.Int32 System.String::get_Length()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method) ;
// System.Boolean System.String::EndsWith(System.String,System.StringComparison)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075 (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatorStack__ctor_m45A8C18E9F410702D166A9613BC0DD6563A7AC80 (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintStack__ctor_m012B864A0BC108F9100C8B5C1015ADBF41492680 (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintOperator::set_LeftContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintOperator_set_LeftContext_m1C80FAF18DD613F5EB0DB47BC3F1C50E878BD8D9 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::SetTopOperatorRightContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_SetTopOperatorRightContext_m021C6C966E1914EE2946B85891BF40CD1D5465BF (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, RuntimeObject* ___rightContext0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::ReduceOperatorStack(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_ReduceOperatorStack_m390144A03B03D0761638507303A8896F020F0C7E (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, int32_t ___targetPrecedence0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::Push(NUnit.Framework.Constraints.ConstraintOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatorStack_Push_m401FC500B438BE28558B02F1F48495CAD758DBFB (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___op0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::Push(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.Constraint::set_Builder(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Constraint_set_Builder_mFFC682286FD5B64F84D09B54FD1E85F4BD89C780_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintOperator NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::get_Top()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* OperatorStack_get_Top_mCDA04D143A9A3DADC7D1C46F2D05C4DF1205547E (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintOperator::set_RightContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintOperator_set_RightContext_m228AF815B16151EF8C21233DAF59B762C3EAB812 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintOperator NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* OperatorStack_Pop_mA9A5A055AB2D4FBA6537FA2AC4CBE4FABFA8803B (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OperatorStack_get_Empty_m2C9D88220796A44B5E4B56629C42D5E1436150D7 (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.ConstraintBuilder::get_IsResolvable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstraintBuilder_get_IsResolvable_m6B878CA522521D3D80CAFAAB244DA98DB8AC242A (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>::.ctor()
inline void Stack_1__ctor_m417228ADA55AAA37AAEB76CE81CF1CB882D0A9E0 (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* __this, const RuntimeMethod* method)
{
(( void (*) (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method);
}
// System.Int32 System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>::get_Count()
inline int32_t Stack_1_get_Count_m759E43094D51CEEAC594F24C73E6A177ADE6F1F8_inline (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method);
}
// T System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>::Peek()
inline ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* Stack_1_Peek_mF52F0E49669CF420595F5F74F6B80FA5E8055CEC (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* __this, const RuntimeMethod* method)
{
return (( ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* (*) (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4*, const RuntimeMethod*))Stack_1_Peek_mF0ECF6A61726B66E6D9B33D8C4DEAA47E586E6E4_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>::Push(T)
inline void Stack_1_Push_m1BC905FC33ABA40AEF62852744CD07AE0D52821C (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___item0, const RuntimeMethod* method)
{
(( void (*) (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4*, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___item0, method);
}
// T System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.ConstraintOperator>::Pop()
inline ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* Stack_1_Pop_mA493AF1F6B7B1A262D1A33718DEE4722C25AD491 (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* __this, const RuntimeMethod* method)
{
return (( ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* (*) (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method);
}
// System.Void System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint>::.ctor()
inline void Stack_1__ctor_m77D3EF7330A819878849329FC1E7FD2B014D56A2 (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* __this, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04*, const RuntimeMethod*))Stack_1__ctor_m70E8EDA96A608CE9BAB7FC8313B233AADA573BD4_gshared)(__this, method);
}
// System.Int32 System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint>::get_Count()
inline int32_t Stack_1_get_Count_m7E137C56D50FB9A0908353B2137B66BC15CE9825_inline (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04*, const RuntimeMethod*))Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint>::Push(T)
inline void Stack_1_Push_m8CCEEEEFF52093A0B8B1A826E12295719E5FD8D6 (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
(( void (*) (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04*, RuntimeObject*, const RuntimeMethod*))Stack_1_Push_m709DD11BC1291A905814182CF9A367DE7399A778_gshared)(__this, ___item0, method);
}
// T System.Collections.Generic.Stack`1<NUnit.Framework.Constraints.IConstraint>::Pop()
inline RuntimeObject* Stack_1_Pop_m38909755BD9020E7D080FB5EA2FE9C6FA109342D (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* __this, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04*, const RuntimeMethod*))Stack_1_Pop_m2AFF69249659372F07EE25817DBCAFE74E1CF778_gshared)(__this, method);
}
// System.Void NUnit.Framework.Constraints.ResolvableConstraintExpression::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResolvableConstraintExpression__ctor_mD39B1C0B4ABC4BBACF4950782670D3C970CE6D3C (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NotOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotOperator__ctor_m6980C91768CB5EE95C316E6A3DE4B262A7515022 (NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Append(NUnit.Framework.Constraints.ConstraintOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___op0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AllOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllOperator__ctor_m790A066BBF9419FBBF2BE1E9008B7231C4E9C2BB (AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SomeOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SomeOperator__ctor_mF2D31662A38F365C99421B395A5290129F7C8AE2 (SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NoneOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoneOperator__ctor_m758E804DCEE1A1C5CBAE6C819F7F14A36A00220D (NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ExactCountOperator::.ctor(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExactCountOperator__ctor_m2659ECF80F5C4A940C3B568DF7034B119D726512 (ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929* __this, int32_t ___expectedCount0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PropOperator::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropOperator__ctor_m89B8508B2FF861C3C678796EFFBACBFB0D78A77B (PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B* __this, String_t* ___name0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Append(NUnit.Framework.Constraints.SelfResolvingOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Append_mEF8C01DE3DF9C4C3C958B0819B6A3071C7C6B74E (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88* ___op0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AttributeOperator::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeOperator__ctor_mC68998E8278AB6C49DE355A1A6812A12A616C6FE (AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.WithOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WithOperator__ctor_m130FFC6BB99A088B1E4C28A5DA0B49F6119B9438 (WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.ConstraintExpression::Append(NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___constraint0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NullConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullConstraint__ctor_m084A6A709C33999A6383E8CC5C3B9148C4341131 (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.TrueConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TrueConstraint__ctor_m615A3F50B0BD2AB850269D871F4A1611A0CB8820 (TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.FalseConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FalseConstraint__ctor_m0121F61B79858E764F6DD524A2F160B148411CBB (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.GreaterThanConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7 (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.LessThanConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4 (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NaNConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NaNConstraint__ctor_mCF0216A5A4D40418C51169252EC5F885B512ABA7 (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EmptyConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyConstraint__ctor_mF27E8FC31786AC85F3EAA389D60487AABD433F34 (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.UniqueItemsConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UniqueItemsConstraint__ctor_m78ECE53E4FB2BBBC2AB4DB60F2E75B07F96E0C6C (UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.BinarySerializableConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinarySerializableConstraint__ctor_m66AA113234117D08C4B159482E37FDC679C80107 (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.XmlSerializableConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void XmlSerializableConstraint__ctor_mC2EA1EED125C540CC7AE74C1F08ABD5D405E2C12 (XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SameAsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SameAsConstraint__ctor_mF974E5795B715FF876CB1312619701D868627693 (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.GreaterThanOrEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4 (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.LessThanOrEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9 (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ExactTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExactTypeConstraint__ctor_m41662FFC2ED89CDF22FE3A9DD6663324860B7063 (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.InstanceOfTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3 (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AssignableFromConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssignableFromConstraint__ctor_mADCB5D13461F7A05826A2D0707529272F04A2071 (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AssignableToConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssignableToConstraint__ctor_m12574E6A94D0D1953D0108ADEC7599E785F155C1 (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionEquivalentConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionEquivalentConstraint__ctor_mC7C344C2B5E287FE77E75FECE7D5299FB5D666F6 (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionSubsetConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionSubsetConstraint__ctor_m74ABCECD2ED540CF212391A59D6A9BEA872C596A (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionSupersetConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionSupersetConstraint__ctor_m0F3E2113C4047E8BE128F7F01FF64096F2947FBB (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOrderedConstraint__ctor_m7299C19EDE7878E96A8E2A7577055AC4ACED7430 (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.CollectionContainsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ContainsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* __this, RuntimeObject* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SubstringConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638 (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.StartsWithConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15 (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EndsWithConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.RegexConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78 (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* __this, String_t* ___pattern0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SamePathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985 (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SubPathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubPathConstraint__ctor_m333BCBEC2AEFEDA73EB764D48DB71493D38F4B2F (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SamePathOrUnderConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SamePathOrUnderConstraint__ctor_m30350FC6FCAEADD0268E5E552D76E67462D8B98B (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.RangeConstraint::.ctor(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73 (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* __this, RuntimeObject* ___from0, RuntimeObject* ___to1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Is::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_No()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_No_m8DD4E72847088C180B1DF19F6592EE23A2EB68FA (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Is::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Is_get_All_m9A7B313366013C295E875350F14860B6916FAEF1 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_Some()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_Some_m6D86BA5108BC57429D2695B10BE9513DE738327D (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_get_None_mE9CE8D189422DE8B9EE2D84E4EB3B25955266D6E (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Has::Exactly(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Has_Exactly_m824C8FA6EEB4E3F1C7B3FE1D9BAE365078370C4A (int32_t ___expectedCount0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A (String_t* ___name0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_Length_m6A3A33A6332CCF601845BB2994B841AA4357F33F (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_Count_mCE28BC4C6045C0853E529E128E5F3F803265BED1 (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_Message_m3E3D3AC074AF2169101CC25ACCD906722624313D (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::get_InnerException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_get_InnerException_m1480FE57A66F1C1C6726AB40E090AAF7AF3A796D (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Has::Attribute(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* Has_Attribute_mAB34EC31F1D76EBABF0EA7E9F8FB82BC874A9DF4 (Type_t* ___expectedType0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintExpression::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Constraints.ConstraintExpression::ContainsSubstring(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* ConstraintExpression_ContainsSubstring_mE38773374CD01CF18A41B98E514345A150609CC9 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintExpression_StartsWith_mC792162F9C1CDEA5843AAA98AD8D9C8CFC1E2140 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintExpression_EndsWith_mD501BCB93994A8362839B2F7A09E99BB701E22A6 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintExpression::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintExpression_Matches_mAF7E18C5A00C39B0ABC4325C5FC5421C63EC8053 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___pattern0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.StringConstraint NUnit.Framework.Constraints.StringConstraint::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* StringConstraint_get_IgnoreCase_m5BE9F4C8B6E532A1C47BFA774BB35B3E2D2903BD (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, const RuntimeMethod* method) ;
// System.Int64 System.Diagnostics.Stopwatch::GetTimestamp()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F (const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromMilliseconds_m95DA1C64A7D3111F8451D932CD0F94D608B1EC54 (double ___value0, const RuntimeMethod* method) ;
// System.Int64 NUnit.Framework.Constraints.DelayedConstraint::TimestampOffset(System.Int64,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DelayedConstraint_TimestampOffset_m0D109DD80EDE50398A28DC48D59E1E1B5D43808E (int64_t ___timestamp0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method) ;
// System.TimeSpan NUnit.Framework.Constraints.DelayedConstraint::TimestampDiff(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DelayedConstraint_TimestampDiff_m436332BE8214FEFBFDC54674732AC7936CF916D1 (int64_t ___timestamp10, int64_t ___timestamp21, const RuntimeMethod* method) ;
// System.Double System.TimeSpan::get_TotalMilliseconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Void System.Threading.Thread::Sleep(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0 (int32_t ___millisecondsTimeout0, const RuntimeMethod* method) ;
// System.Double System.TimeSpan::get_TotalSeconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double TimeSpan_get_TotalSeconds_mED686E7CECE6A76A7DC38518698B9199DB8CDEA8 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::FromSeconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_FromSeconds_mE585CC8180040ED064DC8B6546E6C94A129BFFC5 (double ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.CollectionContainsConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionContainsConstraint_Matches_m24939090817C2373786A7A66BFB1098E6B1275A9 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___actual0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.CollectionConstraint::IsEmpty(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionConstraint_IsEmpty_m7E2DC6F3AE87231B8044A6576EE4043880B2E56D (RuntimeObject* ___enumerable0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EmptyStringConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyStringConstraint__ctor_mA4F96E0DA923AB02D26AEE03EC9D2C4F221B5177 (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EmptyDirectoryConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyDirectoryConstraint__ctor_m80FB59D781FE9F66CF6B39ED54321D09BBC63D1E (EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EmptyCollectionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* __this, const RuntimeMethod* method) ;
// System.IO.FileInfo[] System.IO.DirectoryInfo::GetFiles()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileInfoU5BU5D_tCB74DD125A9220ABCF5F48549F2C71B74BBCD7E6* DirectoryInfo_GetFiles_m998040748717954CDDCE273F61EEC0625069543F (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* __this, const RuntimeMethod* method) ;
// System.IO.DirectoryInfo[] System.IO.DirectoryInfo::GetDirectories()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DirectoryInfoU5BU5D_t5D09D46C6EBC15480AF7C63C54276B57A4287953* DirectoryInfo_GetDirectories_m2EC8498544C3A85EF92273330858E03B284C6901 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* __this, const RuntimeMethod* method) ;
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.StringConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConstraint__ctor_mDDBD2EF704249137AF218681D27539E0E69FB8E7 (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.StringConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConstraint__ctor_mBF764F38023531DF1A50A499825A325CEE869536 (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, String_t* ___expected0, const RuntimeMethod* method) ;
// System.Boolean System.String::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer__ctor_m1E29B6EEFCB7D99BB00E2EBA8E9B163C59B594B3 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraint::AdjustArgumentIfNeeded<System.Object>(T&)
inline void EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject** ___arg0, const RuntimeMethod* method)
{
(( void (*) (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*, RuntimeObject**, const RuntimeMethod*))EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_gshared)(__this, ___arg0, method);
}
// System.Void NUnit.Framework.Constraints.EqualConstraint::set_ClipStrings(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EqualConstraint_set_ClipStrings_m5C6287BE6C6215869F403E8BBDE74FE0AA4E918A_inline (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_get_IgnoreCase_m33A07E5605876DBE9B9371F0997F2F78540F2F93 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method) ;
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.NUnitEqualityComparer::get_FailurePoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NUnitEqualityComparer_get_FailurePoints_mA4C20C0343EEAB004033167743B550B43F23DF7B (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::set_CompareAsCollection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_CompareAsCollection_m856CD551970439567C00C69C7A359BB988A3B629 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Tolerance::get_IsUnsetOrDefault()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Tolerance_get_IsUnsetOrDefault_m0F6EF1B95CA3B71154801FA7457C30856908D129 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.Tolerance::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tolerance__ctor_m7D92C14E9EFF512F4F64AB89F82095FAC8F2BA07 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, RuntimeObject* ___amount0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::set_WithSameOffset(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_WithSameOffset_m8D1EE77C5254CF6379ACE66C6320AADC5AC4D966_inline (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Ulps()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Ulps_mC2705523C0188779886E45AA114456384079C561 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Percent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Percent_m1CC3185443DC6A20F13E11B5B9B4DDC43910EF07 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Days()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Days_m75008EC0A5527463A2289805B7A47BAECE588ED9 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Hours()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Hours_m40961A6141B520E0E30C4A114DDE287B27207674 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Minutes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Minutes_m069DAEF040F75781F0A0D26AEF1712A732C65B33 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Seconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Seconds_mC57F26FAB45280A7DECFC0ADFEC8212F46D4B0E0 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Milliseconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Milliseconds_m05D7C7836A76799463DB3995BA96A2258E468967 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Ticks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Ticks_mFC5B5AD111C918B933F2748E5856A4F1AE36DAAD (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualConstraintResult::.ctor(NUnit.Framework.Constraints.EqualConstraint,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraintResult__ctor_m04F30DFD92E8A513F2800A61BBF138EB23709838 (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* __this, EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ___constraint0, RuntimeObject* ___actual1, bool ___hasSucceeded2, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Constraints.Tolerance::get_Value()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2 (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ToleranceMode NUnit.Framework.Constraints.Tolerance::get_Mode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* __this, const RuntimeMethod* method) ;
// System.String System.Enum::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741 (RuntimeObject* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualityAdapter/ComparerAdapter::.ctor(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparerAdapter__ctor_m5A3312934A92E321631455CF2C0A44AA7EB3F99F (ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualityAdapter/EqualityComparerAdapter::.ctor(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparerAdapter__ctor_m998B46FBD3A29DEA18959065DBAAFFCDCBB80AD8 (EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.EqualityAdapter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityAdapter__ctor_m73A9D90647F74697417C22A653074A5E939B7DA7 (EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* __this, const RuntimeMethod* method) ;
// System.Boolean System.Boolean::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1 (bool* __this, RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ComparisonConstraint::.ctor(System.Object,System.Boolean,System.Boolean,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparisonConstraint__ctor_m2A4E6025F3219D86FA14532687F481C858722270 (ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* __this, RuntimeObject* ___value0, bool ___lessComparisonResult1, bool ___equalComparisonResult2, bool ___greaterComparisonResult3, String_t* ___predicate4, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintResult::set_ActualValue(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConstraintResult_set_ActualValue_m451F15612B5A16C44F559B8EE061B88F2B210016_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Constraints.ConstraintResult::get_ActualValue()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method) ;
// System.Void System.IO.StringWriter::.ctor(System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringWriter__ctor_mE3EE42D6B6B6CE4F81849022B19FFC1842FB3FCA (StringWriter_tF48052BE4F980E5C85403221E835768E4156267D* __this, RuntimeObject* ___formatProvider0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ValueFormatter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700 (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils::set_DefaultValueFormatter(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MsgUtils_set_DefaultValueFormatter_mA2259E77F04F1E9E859AA52CF805FFD0B9FA1170_inline (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ValueFormatterFactory::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils::AddFormatter(NUnit.Framework.Constraints.ValueFormatterFactory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* ___formatterFactory0, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils::get_DefaultValueFormatter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* MsgUtils_get_DefaultValueFormatter_mC953FE835D165642006E0F7497A39D244EAD59E4_inline (const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.ValueFormatterFactory::Invoke(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_inline (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method) ;
// NUnit.Framework.Internal.ITestExecutionContext NUnit.Framework.Internal.TestExecutionContext::get_CurrentContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5 (const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.ValueFormatter::Invoke(System.Object)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method) ;
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Int32 System.Array::GetLength(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935 (RuntimeArray* __this, int32_t ___dimension0, const RuntimeMethod* method) ;
// System.Collections.IEnumerator System.Array::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E (RuntimeArray* __this, const RuntimeMethod* method) ;
// System.Boolean System.Double::IsNaN(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline (double ___d0, const RuntimeMethod* method) ;
// System.Boolean System.Double::IsInfinity(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline (double ___d0, const RuntimeMethod* method) ;
// System.String System.Double::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339 (double* __this, const RuntimeMethod* method) ;
// System.String System.Double::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Double_ToString_m7E3930DDFB35B1919FE538A246A59C3FC62AF789 (double* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.Int32 System.String::IndexOf(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Single::IsNaN(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline (float ___f0, const RuntimeMethod* method) ;
// System.Boolean System.Single::IsInfinity(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsInfinity_m500DB7A91ADC75BE691663649FCA28485FA720AB_inline (float ___f0, const RuntimeMethod* method) ;
// System.String System.Single::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972 (float* __this, const RuntimeMethod* method) ;
// System.String System.Single::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE (float* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.String System.Decimal::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Decimal_ToString_m2600674D09D44940FA0AAA00A87858E741671F4E (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.String System.DateTime::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D* __this, String_t* ___format0, RuntimeObject* ___provider1, const RuntimeMethod* method) ;
// System.String System.DateTimeOffset::ToString(System.String,System.IFormatProvider)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, String_t* ___format0, RuntimeObject* ___formatProvider1, const RuntimeMethod* method) ;
// System.Boolean System.Type::get_IsArray()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673 (Type_t* __this, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___value0, const RuntimeMethod* method) ;
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA (StringBuilder_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Char System.String::get_Chars(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___index0, const RuntimeMethod* method) ;
// System.String System.String::Substring(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method) ;
// System.Int32 System.Math::Max(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::ClipString(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_ClipString_mDDF7A1EA555042A0AA1F717A9CA8E33D77B6A9DC (String_t* ___s0, int32_t ___maxStringLength1, int32_t ___clipStart2, const RuntimeMethod* method) ;
// System.Int32 System.Math::Min(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8 (int32_t ___val10, int32_t ___val21, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDateTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDateTime_m2C709C3C0F2B34EA0BD5222BB8282C324725438E (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dt0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDateTimeOffset(System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDateTimeOffset_m6432B128A05244CD2FEFBEC01621A111FD09D321 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___dto0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDecimal(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDecimal_m0EE6BF6258EAFD9D9918FCD39C3B12B52526DDEC (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatFloat(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatFloat_mE64D67A55E33CF9D90FED310C11DA0EE475F49A9 (float ___f0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDouble(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDouble_mAB5B2449DEB72A139C70FC681370680C877E27A0 (double ___d0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatCollection(System.Collections.IEnumerable,System.Int64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatCollection_m97DAC016B9B959E59DE2B51127BDD1D33A4F0A32 (RuntimeObject* ___collection0, int64_t ___start1, int32_t ___max2, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatString_mF8F46C837936DEDAD4FFDE9528700237AF17735D (String_t* ___s0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.MsgUtils::FormatArray(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatArray_m244613146251B6C84497DC592294FDB037184DED (RuntimeArray* ___array0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9D23035F18D45C67394B68B3C64D25BBD5F337AE (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_0__ctor_m6652447B72524AE9E524B39A333E9FD60CE022F3 (U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_1__ctor_mFE32F18A1FD7E3A0A2874219CAAE2B4BC0D27BBF (U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_2__ctor_m7FAE20A441FC2521160FCC1565BA4412D43245EF (U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_3::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_3__ctor_m3922BCDF487B7134620E6170F29BF649A8316091 (U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_4::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_4__ctor_mEA5DB75EB4C0C82553E12D7DD6295313C0866D30 (U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_5::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_5__ctor_m32BE54AC597E2702B7EC2CF487F5CFDC96600B90 (U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_6::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_6__ctor_mECCB0599937DE2BC0EFBC028C9E2E0B1B68426D0 (U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_7::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_7__ctor_m81683E54F55AF8A90FE7497FAAEEC32A69EF58DE (U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_8::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_8__ctor_mB19932011473FDB15172E943FF972EFF821FA074 (U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_9::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_9__ctor_m56AE15C0F4A1FE29BBCED5BC1AFE3B1328B4D704 (U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::CheckGameObjectReference<System.Object>(T&)
inline void NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12 (RuntimeObject** ___value0, const RuntimeMethod* method)
{
(( void (*) (RuntimeObject**, const RuntimeMethod*))NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_gshared)(___value0, method);
}
// System.Boolean NUnit.Framework.Constraints.Numerics::IsFloatingPointNumeric(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_IsFloatingPointNumeric_mDF55FE85A2163E179D54113E11A8C3513FE1E15A (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::IsFixedPointNumeric(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_IsFixedPointNumeric_m08E5184AF2BE58E94C73C16A82B83C19D6C33FAA (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Double System.Convert::ToDouble(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Double,System.Double,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mB8092D12CF79A63D0956228C98CFD75CBC9917BC (double ___expected0, double ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.Single System.Convert::ToSingle(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Convert_ToSingle_m65BB01710E72B9F3DF110EB46392D3AB36978D99 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Single,System.Single,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m7F1A057D237DE9460841318B6C20A12E91E415DD (float ___expected0, float ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.Decimal System.Convert::ToDecimal(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Decimal,System.Decimal,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mFBF6847028D84AA8C7B5D0084D21295F3C7B5756 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___expected0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method) ;
// System.UInt64 System.Convert::ToUInt64(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.UInt64,System.UInt64,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m89F3686BF058048EDD68F230EE5DDC2497B693E9 (uint64_t ___expected0, uint64_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method) ;
// System.Int64 System.Convert::ToInt64(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Int64,System.Int64,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m4B6694B149D7E9771B05C9ABA02407D7E0B73642 (int64_t ___expected0, int64_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method) ;
// System.UInt32 System.Convert::ToUInt32(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.UInt32,System.UInt32,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mA999B9742E931E4D646B3EBC8E5E23E1732669FB (uint32_t ___expected0, uint32_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method) ;
// System.Int32 System.Convert::ToInt32(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042 (RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Int32,System.Int32,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mDF3E84AFD310790D52E9A0A783E0B805DBF7A882 (int32_t ___expected0, int32_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method) ;
// System.Boolean System.Double::Equals(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138 (double* __this, double ___obj0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.FloatingPointNumerics::AreAlmostEqualUlps(System.Double,System.Double,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatingPointNumerics_AreAlmostEqualUlps_mA25D9D3E837549F74A37961999E8F7B73ED30381 (double ___left0, double ___right1, int64_t ___maxUlps2, const RuntimeMethod* method) ;
// System.Boolean System.Single::Equals(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_m97C79E2B80F39214DB3F7E714FF2BCA45A0A8BF9 (float* __this, float ___obj0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.FloatingPointNumerics::AreAlmostEqualUlps(System.Single,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatingPointNumerics_AreAlmostEqualUlps_m4BC63DAF0F848198E0BE5B094309BBFE77AAF60B (float ___left0, float ___right1, int32_t ___maxUlps2, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::Equals(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_Equals_m3CB5573B1905D94246A7CFB4B87586769F09F03A (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::op_GreaterThan(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_GreaterThan_m2C5A01FFBCF3858E8EF62C569D993EDC1CBC60FA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::op_Subtraction(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_op_Subtraction_m50F5DC718BD003A09A5BC62BAA3DECD0745AD3F1 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Decimal System.Math::Abs(System.Decimal)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Math_Abs_m92EB8C43121E759A8C6F1AB3BC1539419E8848A2_inline (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::op_LessThanOrEqual(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_LessThanOrEqual_m224D2D00F7A730482F0B29691C04A1C7177FAEAA (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Boolean System.Decimal::op_Equality(System.Decimal,System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_op_Equality_m48AE8B579CA29541C36D456B707AF9D8015C3558 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d10, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d21, const RuntimeMethod* method) ;
// System.Double System.Decimal::op_Explicit(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Decimal_op_Explicit_mD8E11417E7C50756B8243840D18275050ABABBC6 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.Boolean System.UInt64::Equals(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_Equals_mB642AC4A6A1261E0FB36D7F1F2D77940790FAA81 (uint64_t* __this, uint64_t ___obj0, const RuntimeMethod* method) ;
// System.UInt64 System.Math::Max(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Math_Max_m6E9AD3CAF9A3F56A3ECD1EA5FE3DBB71BC74CD70 (uint64_t ___val10, uint64_t ___val21, const RuntimeMethod* method) ;
// System.UInt64 System.Math::Min(System.UInt64,System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Math_Min_m78041E60789B49D08C39924B331E1E1E3F0651E9 (uint64_t ___val10, uint64_t ___val21, const RuntimeMethod* method) ;
// System.Boolean System.Int64::Equals(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_mBAEB8FFBE12F6A5876473B4B40E1BD316658873E (int64_t* __this, int64_t ___obj0, const RuntimeMethod* method) ;
// System.Boolean System.UInt32::Equals(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt32_Equals_m6BE590F34B71E27978E9146437F73A6448BA01A3 (uint32_t* __this, uint32_t ___obj0, const RuntimeMethod* method) ;
// System.UInt32 System.Math::Max(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Math_Max_mA38EFCCC7E58F8BEEDE1A9F63123302D634E001A (uint32_t ___val10, uint32_t ___val21, const RuntimeMethod* method) ;
// System.UInt32 System.Math::Min(System.UInt32,System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Math_Min_m1C7DD94B2E3BECC3C15A8B6899E88178DC539397 (uint32_t ___val10, uint32_t ___val21, const RuntimeMethod* method) ;
// System.Boolean System.Int32::Equals(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722 (int32_t* __this, int32_t ___obj0, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::IsNumericType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116 (RuntimeObject* ___obj0, const RuntimeMethod* method) ;
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___message0, const RuntimeMethod* method) ;
// System.Int32 System.Double::CompareTo(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC (double* __this, double ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Decimal::CompareTo(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Decimal_CompareTo_mBD487E0B30C25C43C80F8E7F04B24ECD271263BC (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* __this, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method) ;
// System.Int32 System.UInt64::CompareTo(System.UInt64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt64_CompareTo_m1292E47C1FE2A1FC5BC5E6E2EB9C1FCDCEFE7745 (uint64_t* __this, uint64_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Int64::CompareTo(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_CompareTo_m63A0BDA03C5B1DEB7387B1C53D6BFD961E4F5490 (int64_t* __this, int64_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.UInt32::CompareTo(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UInt32_CompareTo_mC96F15BE2B06C0268AD1D110D3251CE4DBA43907 (uint32_t* __this, uint32_t ___value0, const RuntimeMethod* method) ;
// System.Int32 System.Int32::CompareTo(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitComparer__ctor_mFECF1D18385AACEDE55C88E99F474BEC773F8362 (NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* __this, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Constraints.Numerics::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Numerics_Compare_mFE1EED2E4772977E3D7CD0986FC67AF6A5E8F1B1 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo System.Type::GetMethod(System.String,System.Type[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA (Type_t* __this, String_t* ___name0, TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___types1, const RuntimeMethod* method) ;
// System.Object System.Reflection.MethodBase::Invoke(System.Object,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826 (MethodBase_t* __this, RuntimeObject* ___obj0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___parameters1, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::.ctor()
inline void List_1__ctor_m723A9C79EDAB71B090B316E621F59716DB771ACD (List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// NUnit.Framework.Constraints.EqualityAdapter NUnit.Framework.Constraints.NUnitEqualityComparer::GetExternalComparer(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* NUnitEqualityComparer_GetExternalComparer_mC5FF4C401B0A8969EB08FCC88BCCE42BC9CE25D2 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::ArraysEqual(System.Array,System.Array,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_ArraysEqual_mC2EC880935DCFBB4B48D6D4F75433999D0DB5172 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeArray* ___x0, RuntimeArray* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::DictionariesEqual(System.Collections.IDictionary,System.Collections.IDictionary,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_DictionariesEqual_m8B00FF4AA0345AA1725CC3F6D221C4B3404E0FE0 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::DictionaryEntriesEqual(System.Collections.DictionaryEntry,System.Collections.DictionaryEntry,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_DictionaryEntriesEqual_mFC7643DD5BA8FA8C3E0DFC2B06EFA0D00D95A69D (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB ___x0, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.Tolerance::get_Exact()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* Tolerance_get_Exact_mCF02AD0D3468C736F6F7ECCB051756FB74C3BE07 (const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::StringsEqual(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_StringsEqual_m2CA67F0271EEFF95F3EB662CEA5EC47936EE17D2 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::StreamsEqual(System.IO.Stream,System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___x0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___y1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::CharsEqual(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_CharsEqual_mFA9C49BF88594AEC4FEB5AF1D909983A5F034CCC (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, Il2CppChar ___x0, Il2CppChar ___y1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_DirectoriesEqual_mA6213226D19C29A59A073F32ADC889AC47AD8991 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___x0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___y1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m05A5DA797E5183199087C2D14FCE2FFF86E4E292 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.TimeSpan System.DateTimeOffset::op_Subtraction(System.DateTimeOffset,System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeOffset_op_Subtraction_mAF7218EC4755BB73B6532FBF9DD9874A71BA2D3A (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___left0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___right1, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::Duration()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_Duration_mC2D681D5F4A015951F71863CEADD49EBAA932132 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A* __this, const RuntimeMethod* method) ;
// System.Boolean System.TimeSpan::op_LessThanOrEqual(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_LessThanOrEqual_m15A091041A6E53861348784744744319A33AA9EA (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.Boolean System.DateTimeOffset::op_Equality(System.DateTimeOffset,System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTimeOffset_op_Equality_m33318CE5D85584EA3D2A6EAAD0E522ED9C4D7A63 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___left0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___right1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::get_WithSameOffset()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_get_WithSameOffset_m033A4D8CB57EEBD8E366645F36EF110A158CE703_inline (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method) ;
// System.TimeSpan System.DateTimeOffset::get_Offset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4* __this, const RuntimeMethod* method) ;
// System.Boolean System.TimeSpan::op_Equality(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.TimeSpan System.DateTime::op_Subtraction(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.TimeSpan System.TimeSpan::op_Subtraction(System.TimeSpan,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8 (TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t10, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___t21, const RuntimeMethod* method) ;
// System.Reflection.MethodInfo NUnit.Framework.Constraints.NUnitEqualityComparer::FirstImplementsIEquatableOfSecond(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* NUnitEqualityComparer_FirstImplementsIEquatableOfSecond_m12B26578504022589EE5EB1824525B7D82568D73 (Type_t* ___first0, Type_t* ___second1, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::InvokeFirstIEquatableEqualsSecond(System.Object,System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_InvokeFirstIEquatableEqualsSecond_m65FE39AED1BFD210D6BFA1233D5903EE6805F814 (RuntimeObject* ___first0, RuntimeObject* ___second1, MethodInfo_t* ___equals2, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::EnumerablesEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_EnumerablesEqual_mD3AD62E938427C5548187D26B464E87D71C6C86B (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method) ;
// System.Collections.Generic.IList`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>> NUnit.Framework.Constraints.NUnitEqualityComparer::GetEquatableGenericArguments(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NUnitEqualityComparer_GetEquatableGenericArguments_mD66E53CA7E3ACD0A3369D7C9A700F21CE9D88329 (Type_t* ___type0, const RuntimeMethod* method) ;
// TKey System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>::get_Key()
inline Type_t* KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_inline (KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB* __this, const RuntimeMethod* method)
{
return (( Type_t* (*) (KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
}
// TValue System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>::get_Value()
inline MethodInfo_t* KeyValuePair_2_get_Value_mF0112805A31528C27337365D8BCAF66893AB1043_inline (KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB* __this, const RuntimeMethod* method)
{
return (( MethodInfo_t* (*) (KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>::.ctor()
inline void List_1__ctor_mB0D00F42652D83E1BF3080C2F9C5772E920F9AD8 (List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299*, const RuntimeMethod*))List_1__ctor_m192C3D32AF3678C97E6520292F2C32629E9A905B_gshared)(__this, method);
}
// System.Reflection.MethodInfo System.Type::GetMethod(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231 (Type_t* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>::.ctor(TKey,TValue)
inline void KeyValuePair_2__ctor_m3F7B62EE24E4D4D7C92ACEA0017D2391FC09BDA3 (KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB* __this, Type_t* ___key0, MethodInfo_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB*, Type_t*, MethodInfo_t*, const RuntimeMethod*))KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared)(__this, ___key0, ___value1, method);
}
// System.Void System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>::Add(T)
inline void List_1_Add_m4D70D2E18A8E3D8C03FFFCD6EAC9F6814C649174_inline (List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299* __this, KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299*, KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB, const RuntimeMethod*))List_1_Add_m8DDAFA7A565FBEEB8C312BF1E890AB978D3760AE_gshared_inline)(__this, ___item0, method);
}
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<NUnit.Framework.Constraints.EqualityAdapter>::GetEnumerator()
inline Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE List_1_GetEnumerator_mD222163019328A154004E23FD2FFDB8AAED10C0D (List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* __this, const RuntimeMethod* method)
{
return (( Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE (*) (List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0*, const RuntimeMethod*))List_1_GetEnumerator_mD8294A7FA2BEB1929487127D476F8EC1CDC23BFC_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.EqualityAdapter>::Dispose()
inline void Enumerator_Dispose_m8334A72F9492DC38EAAE05EEBFB6A0B8D4634F4D (Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE* __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE*, const RuntimeMethod*))Enumerator_Dispose_mD9DC3E3C3697830A4823047AB29A77DBBB5ED419_gshared)(__this, method);
}
// T System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.EqualityAdapter>::get_Current()
inline EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* Enumerator_get_Current_mBC614A4CD4D47E71EA274FAB2F5E4A50790FE05A_inline (Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE* __this, const RuntimeMethod* method)
{
return (( EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* (*) (Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE*, const RuntimeMethod*))Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline)(__this, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<NUnit.Framework.Constraints.EqualityAdapter>::MoveNext()
inline bool Enumerator_MoveNext_m6AF6E20F8844E50C909620AD4AA5704F41672B9D (Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE* __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE*, const RuntimeMethod*))Enumerator_MoveNext_mE921CC8F29FBBDE7CC3209A0ED0D921D58D00BCB_gshared)(__this, method);
}
// System.Object System.Collections.DictionaryEntry::get_Key()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
// System.Object System.Collections.DictionaryEntry::get_Value()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FailurePoint__ctor_m74E65C9481D77AA3E124A07A1CB8B0D97CBF9E1B (FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* __this, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint>::Insert(System.Int32,T)
inline void List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD (List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* __this, int32_t ___index0, FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* ___item1, const RuntimeMethod* method)
{
(( void (*) (List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2*, int32_t, FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*, const RuntimeMethod*))List_1_Insert_m9C9559248941FED50561DB029D55DF08DEF3B094_gshared)(__this, ___index0, ___item1, method);
}
// System.Boolean System.String::Equals(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Char System.Char::ToLower(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar Char_ToLower_m643675C4A50AD39A7BE3F5C3F40A1BFD547FF957 (Il2CppChar ___c0, const RuntimeMethod* method) ;
// System.IO.FileAttributes System.IO.FileSystemInfo::get_Attributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FileSystemInfo_get_Attributes_m38971A5B147214C5EE193CE9F60628EA834EF6DA (FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9* __this, const RuntimeMethod* method) ;
// System.DateTime System.IO.FileSystemInfo::get_CreationTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FileSystemInfo_get_CreationTime_mA78EF1799DC6825E70182125DD20BC6B37A850F4 (FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9* __this, const RuntimeMethod* method) ;
// System.Boolean System.DateTime::op_Inequality(System.DateTime,System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7 (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d10, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___d21, const RuntimeMethod* method) ;
// System.DateTime System.IO.FileSystemInfo::get_LastAccessTime()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D FileSystemInfo_get_LastAccessTime_mA514BB980D71BA1902E31F016578212754AF193D (FileSystemInfo_tE3063B9229F46B05A5F6D018C8C4CA510104E8E9* __this, const RuntimeMethod* method) ;
// System.Void System.IO.BinaryReader::.ctor(System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___input0, const RuntimeMethod* method) ;
// System.Void System.Collections.Generic.List`1<NUnit.Framework.Constraints.EqualityAdapter>::.ctor()
inline void List_1__ctor_mA59BB9747605BD5A01B294B5C36E2C8FA628B757 (List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* __this, const RuntimeMethod* method)
{
(( void (*) (List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
}
// System.Void NUnit.Framework.Constraints.BinaryOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryOperator__ctor_m125FC5D98AD32F411F5D2E6D2A40DF3D121F8607 (BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.SelfResolvingOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelfResolvingOperator__ctor_mB2FE9B663736D1A29BC270543458874476578926 (SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88* __this, const RuntimeMethod* method) ;
// System.Object NUnit.Framework.Constraints.ConstraintOperator::get_RightContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AttributeExistsConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeExistsConstraint__ctor_mF00CA21E7FB17774D6073E68B286563240D7C31D (AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0* __this, Type_t* ___type0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.AttributeConstraint::.ctor(System.Type,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeConstraint__ctor_mD7EC35DA07C505F9FDF44DB414EEF462FB905BBC (AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9* __this, Type_t* ___type0, RuntimeObject* ___baseConstraint1, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_LeftPrecedence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConstraintOperator_get_LeftPrecedence_mF4981116B78BE7232DCF95DE1B4261ABB1738273 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method) ;
// System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_RightPrecedence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConstraintOperator_get_RightPrecedence_mFDB9F744E8761D2FF1194EB86E9DBD6000436255 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ConstraintOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintOperator__ctor_mA29583514623715B03066977E3263B45E3825B66 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PrefixOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixOperator__ctor_m8E85321266A978C148BAAE256D4E2E960D75562D (PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PropertyExistsConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyExistsConstraint__ctor_m1CA761B0B5B71D04A98AA0244C86AF29521C3B7F (PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60* __this, String_t* ___name0, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PropertyConstraint::.ctor(System.String,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyConstraint__ctor_mEE1AE0D4F6570AA85C9455D9EB1E6D40DB648C4C (PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57* __this, String_t* ___name0, RuntimeObject* ___baseConstraint1, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ThrowsExceptionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsExceptionConstraint__ctor_m8AAAE0E81FA64C60260D4DE9D91AF11DE02C2832 (ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* __this, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ThrowsConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsConstraint__ctor_mA7B2A0D0263F18CC0ADABBA776F614B4D7188DB4 (ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374* __this, RuntimeObject* ___baseConstraint0, const RuntimeMethod* method) ;
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A (String_t* ___format0, RuntimeObject* ___arg01, RuntimeObject* ___arg12, RuntimeObject* ___arg23, const RuntimeMethod* method) ;
// System.String System.String::Replace(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF (String_t* __this, Il2CppChar ___oldChar0, Il2CppChar ___newChar1, const RuntimeMethod* method) ;
// System.String System.Char::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C (Il2CppChar* __this, const RuntimeMethod* method) ;
// System.String[] System.String::Split(System.Char[],System.StringSplitOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* String_Split_m6811F7CF4DE7C68019D76E9DC6D17B2293BA8B12 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___separator0, int32_t ___options1, const RuntimeMethod* method) ;
// System.String System.String::Join(System.String,System.String[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Join_m9FD21210E351374C67CD671692B866CA6B02E3EF (String_t* ___separator0, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method) ;
// System.Boolean NUnit.Framework.Internal.StringUtil::StringsEqual(System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StringUtil_StringsEqual_mDD0D7E0A881B18A64E6FC3F8FF3689C78AFDB7C8 (String_t* ___strA0, String_t* ___strB1, bool ___ignoreCase2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.PrefixConstraint::set_BaseConstraint(NUnit.Framework.Constraints.IConstraint)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PrefixConstraint_set_BaseConstraint_mAACC8E0FBDC69E98183BF056BF37858AC2484B0C_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, RuntimeObject* ___value0, const RuntimeMethod* method) ;
// System.String NUnit.Framework.Constraints.PrefixConstraint::get_DescriptionPrefix()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* PrefixConstraint_get_DescriptionPrefix_mE7FF5F0A9A0A37B1374634559303EBAE0AB9DE8D_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method) ;
// System.Reflection.PropertyInfo System.Type::GetProperty(System.String,System.Reflection.BindingFlags)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfo_t* Type_GetProperty_m6E63875E6098E89250149F4E76FAD40844708391 (Type_t* __this, String_t* ___name0, int32_t ___bindingAttr1, const RuntimeMethod* method) ;
// System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_mCCD41B2FBCF36A2329B7D174FD117C09205CFA62 (String_t* ___input0, String_t* ___pattern1, int32_t ___options2, const RuntimeMethod* method) ;
// System.Void NUnit.Framework.Constraints.ReusableConstraint::.ctor(NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableConstraint__ctor_m4661BF4F32334AB2A370A3B2B6EDB2A611BBAF7E (ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* __this, RuntimeObject* ___c0, const RuntimeMethod* method) ;
// System.Boolean System.String::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___value0, const RuntimeMethod* method) ;
// System.Int64 System.BitConverter::DoubleToInt64Bits(System.Double)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline (double ___value0, const RuntimeMethod* method) ;
// System.Int32 System.BitConverter::SingleToInt32Bits(System.Single)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mA1902D40966CA4C89A8974B10E5680A06E88566B_inline (float ___value0, const RuntimeMethod* method) ;
// System.Decimal System.Decimal::Abs(System.Decimal&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Decimal_Abs_m864469D9E20222B2896AF7B001BDEC87EC46535F (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F* ___d0, const RuntimeMethod* method) ;
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.ExceptionNotThrownConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ExceptionNotThrownConstraint_get_Description_mE430DC3842EE6112144051D511588384B7C01ED1 (ExceptionNotThrownConstraint_tDFD1FC5D65A8903A325EF48B5E0760448A849835* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF9F6D154F515F1052E4BA985B9544D32325B81A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralEF9F6D154F515F1052E4BA985B9544D32325B81A;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.ExceptionNotThrownConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ExceptionNotThrownConstraint_ApplyTo_m437D96E503D91FDC2314F16E8DBEC99E8C2744CA (ExceptionNotThrownConstraint_tDFD1FC5D65A8903A325EF48B5E0760448A849835* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Exception_t* V_0 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((Exception_t*)IsInstClass((RuntimeObject*)L_0, Exception_t_il2cpp_TypeInfo_var));
Exception_t* L_1 = V_0;
Exception_t* L_2 = V_0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_3 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_3);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_3, __this, L_1, (bool)((((RuntimeObject*)(Exception_t*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0), NULL);
V_1 = L_3;
goto IL_0016;
}
IL_0016:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_4 = V_1;
return L_4;
}
}
// System.Void NUnit.Framework.Constraints.ExceptionNotThrownConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionNotThrownConstraint__ctor_m0BF4255E17F8D149696655F410114AEDA78BA6C3 (ExceptionNotThrownConstraint_tDFD1FC5D65A8903A325EF48B5E0760448A849835* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.FileExistsConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileExistsConstraint__ctor_m0861694FBEA87C178643018B881EDC6FB3E89C84 (FileExistsConstraint_tF638892F90C04CEC79D16AE54001FD837F4EB878* __this, const RuntimeMethod* method)
{
{
FileOrDirectoryExistsConstraint__ctor_m1F60B8979E3E84285099ADBF0285DBF35FC6FE01(__this, (bool)1, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.FileExistsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileExistsConstraint_get_Description_m29DF6C8F2C1629C7DAC09510EF1B2989700F3A66 (FileExistsConstraint_tF638892F90C04CEC79D16AE54001FD837F4EB878* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24D3437800D750777051944C7198DC50028CA843);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral24D3437800D750777051944C7198DC50028CA843;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_IgnoreDirectories()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* FileOrDirectoryExistsConstraint_get_IgnoreDirectories_m02DE4815ABFF4A32979BFEF2D53F58AC9A420EBA (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method)
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* V_0 = NULL;
{
__this->____ignoreDirectories_4 = (bool)1;
V_0 = __this;
goto IL_000c;
}
IL_000c:
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_IgnoreFiles()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* FileOrDirectoryExistsConstraint_get_IgnoreFiles_mE59BA61AD134A0F9DE50BA7A0B19EF7D047B640B (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method)
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* V_0 = NULL;
{
__this->____ignoreFiles_5 = (bool)1;
V_0 = __this;
goto IL_000c;
}
IL_000c:
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_0 = V_0;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::.ctor(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FileOrDirectoryExistsConstraint__ctor_m1F60B8979E3E84285099ADBF0285DBF35FC6FE01 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, bool ___ignoreDirectories0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
bool L_1 = ___ignoreDirectories0;
__this->____ignoreDirectories_4 = L_1;
return;
}
}
// System.String NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileOrDirectoryExistsConstraint_get_Description_mCE4297F848C8E9BABF03E12ACB4E138084895066 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24D3437800D750777051944C7198DC50028CA843);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral748AB502831BF3F2BEFFFD19D7C039C6110ADF2F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE786749916B75CCFF0830B325CD54FDF40F3B6B9);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
bool V_2 = false;
{
bool L_0 = __this->____ignoreDirectories_4;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
V_1 = _stringLiteral24D3437800D750777051944C7198DC50028CA843;
goto IL_002f;
}
IL_0014:
{
bool L_2 = __this->____ignoreFiles_5;
V_2 = L_2;
bool L_3 = V_2;
if (!L_3)
{
goto IL_0027;
}
}
{
V_1 = _stringLiteral748AB502831BF3F2BEFFFD19D7C039C6110ADF2F;
goto IL_002f;
}
IL_0027:
{
V_1 = _stringLiteralE786749916B75CCFF0830B325CD54FDF40F3B6B9;
goto IL_002f;
}
IL_002f:
{
String_t* L_4 = V_1;
return L_4;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* FileOrDirectoryExistsConstraint_ApplyTo_m50C4215173A9D32E43EFE235FA74993D9BF3C6F0 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* V_0 = NULL;
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
int32_t G_B7_0 = 0;
int32_t G_B12_0 = 0;
{
RuntimeObject* L_0 = ___actual0;
V_2 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_0024;
}
}
{
String_t* L_2;
L_2 = FileOrDirectoryExistsConstraint_get_ErrorSubstring_m0442E407CF7286730FB5A1E370F91196B18925B6(__this, NULL);
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3944673117C4D1BFBEA93E49BD37F0E751D36108)), L_2, NULL);
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_4 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), L_3, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FileOrDirectoryExistsConstraint_ApplyTo_m50C4215173A9D32E43EFE235FA74993D9BF3C6F0_RuntimeMethod_var)));
}
IL_0024:
{
RuntimeObject* L_5 = ___actual0;
V_3 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_5, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_6 = V_3;
if (!L_6)
{
goto IL_003d;
}
}
{
RuntimeObject* L_7 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8;
L_8 = FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412(__this, L_7, FileOrDirectoryExistsConstraint_CheckString_TisRuntimeObject_m28BB5718339CA5BA0AA9756C3326C7902E813412_RuntimeMethod_var);
V_4 = L_8;
goto IL_00b4;
}
IL_003d:
{
RuntimeObject* L_9 = ___actual0;
V_0 = ((FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C*)IsInstSealed((RuntimeObject*)L_9, FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C_il2cpp_TypeInfo_var));
bool L_10 = __this->____ignoreFiles_5;
if (L_10)
{
goto IL_0052;
}
}
{
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_11 = V_0;
G_B7_0 = ((!(((RuntimeObject*)(FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0053;
}
IL_0052:
{
G_B7_0 = 0;
}
IL_0053:
{
V_5 = (bool)G_B7_0;
bool L_12 = V_5;
if (!L_12)
{
goto IL_006b;
}
}
{
RuntimeObject* L_13 = ___actual0;
FileInfo_t62782BBAFA832A78724E4CF2EE96548B8466AB1C* L_14 = V_0;
NullCheck(L_14);
bool L_15;
L_15 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.IO.FileSystemInfo::get_Exists() */, L_14);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_16);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_16, __this, L_13, L_15, NULL);
V_4 = L_16;
goto IL_00b4;
}
IL_006b:
{
RuntimeObject* L_17 = ___actual0;
V_1 = ((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)IsInstSealed((RuntimeObject*)L_17, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var));
bool L_18 = __this->____ignoreDirectories_4;
if (L_18)
{
goto IL_0080;
}
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_19 = V_1;
G_B12_0 = ((!(((RuntimeObject*)(DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)L_19) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0081;
}
IL_0080:
{
G_B12_0 = 0;
}
IL_0081:
{
V_6 = (bool)G_B12_0;
bool L_20 = V_6;
if (!L_20)
{
goto IL_0099;
}
}
{
RuntimeObject* L_21 = ___actual0;
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_22 = V_1;
NullCheck(L_22);
bool L_23;
L_23 = VirtualFuncInvoker0< bool >::Invoke(10 /* System.Boolean System.IO.FileSystemInfo::get_Exists() */, L_22);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_24 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_24);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_24, __this, L_21, L_23, NULL);
V_4 = L_24;
goto IL_00b4;
}
IL_0099:
{
String_t* L_25;
L_25 = FileOrDirectoryExistsConstraint_get_ErrorSubstring_m0442E407CF7286730FB5A1E370F91196B18925B6(__this, NULL);
String_t* L_26;
L_26 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE3E9A2716929F5CE1A6272AB56FE22CF24642AD)), L_25, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_27 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_27);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_27, L_26, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FileOrDirectoryExistsConstraint_ApplyTo_m50C4215173A9D32E43EFE235FA74993D9BF3C6F0_RuntimeMethod_var)));
}
IL_00b4:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_28 = V_4;
return L_28;
}
}
// System.String NUnit.Framework.Constraints.FileOrDirectoryExistsConstraint::get_ErrorSubstring()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* FileOrDirectoryExistsConstraint_get_ErrorSubstring_m0442E407CF7286730FB5A1E370F91196B18925B6 (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0382E62D766E74E90B7FC0511CF221B3EB6E7670);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BFCF7ED0EA3D44A5A1C6D7208B616F685C65282);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86C77BC5F295C703F35896206298746108FCABE8);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
bool V_2 = false;
{
bool L_0 = __this->____ignoreDirectories_4;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
V_1 = _stringLiteral2BFCF7ED0EA3D44A5A1C6D7208B616F685C65282;
goto IL_002f;
}
IL_0014:
{
bool L_2 = __this->____ignoreFiles_5;
V_2 = L_2;
bool L_3 = V_2;
if (!L_3)
{
goto IL_0027;
}
}
{
V_1 = _stringLiteral0382E62D766E74E90B7FC0511CF221B3EB6E7670;
goto IL_002f;
}
IL_0027:
{
V_1 = _stringLiteral86C77BC5F295C703F35896206298746108FCABE8;
goto IL_002f;
}
IL_002f:
{
String_t* L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.AllOperator::ApplyPrefix(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AllOperator_ApplyPrefix_mC823ECF1A98CD1C9AEA54A6F39BF06422F85DA4E (AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB* L_1 = (AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB*)il2cpp_codegen_object_new(AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB_il2cpp_TypeInfo_var);
NullCheck(L_1);
AllItemsConstraint__ctor_mD99BB69560D4686A82AB937EB03B77902D8A4340(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.AllOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllOperator__ctor_m790A066BBF9419FBBF2BE1E9008B7231C4E9C2BB (AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059* __this, const RuntimeMethod* method)
{
{
CollectionOperator__ctor_m71C252AF8ACAAD5E9BB659F4B801FA7891FC70B6(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.NoneOperator::ApplyPrefix(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NoneOperator_ApplyPrefix_m7C50DB043CF2DD8A69DEAF4C25CCEE63FD585CC1 (NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4* L_1 = (NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4*)il2cpp_codegen_object_new(NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4_il2cpp_TypeInfo_var);
NullCheck(L_1);
NoItemConstraint__ctor_m1E49F7E89D3F2AF5DB728152CFB3F03C7D0C3E04(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.NoneOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoneOperator__ctor_m758E804DCEE1A1C5CBAE6C819F7F14A36A00220D (NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F* __this, const RuntimeMethod* method)
{
{
CollectionOperator__ctor_m71C252AF8ACAAD5E9BB659F4B801FA7891FC70B6(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.SomeOperator::ApplyPrefix(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SomeOperator_ApplyPrefix_m09B5DC455B4A92E6985F526C861F38C014697CB8 (SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23* L_1 = (SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23*)il2cpp_codegen_object_new(SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23_il2cpp_TypeInfo_var);
NullCheck(L_1);
SomeItemsConstraint__ctor_m7DB249F17B8983C2EC5FBAFDDA5A2B4BAA502A41(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.SomeOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SomeOperator__ctor_mF2D31662A38F365C99421B395A5290129F7C8AE2 (SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93* __this, const RuntimeMethod* method)
{
{
CollectionOperator__ctor_m71C252AF8ACAAD5E9BB659F4B801FA7891FC70B6(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.SubPathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SubPathConstraint__ctor_m333BCBEC2AEFEDA73EB764D48DB71493D38F4B2F (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
PathConstraint__ctor_m6242998BDF8309B40C0B4D4E6D43E9A5A78FFFF8(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.SubPathConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SubPathConstraint_get_Description_m8D27452C5638BAD9F63524346143D364DB26B18C (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral34DEA2F1E15C73EFC9DA87F592D77F647EBA389A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral34DEA2F1E15C73EFC9DA87F592D77F647EBA389A, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.SubPathConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SubPathConstraint_Matches_m529DDEAE2B45D583EC492C64D669EE7C34AF710C (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* __this, String_t* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
String_t* L_0 = ___actual0;
if (!L_0)
{
goto IL_001f;
}
}
{
String_t* L_1 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
String_t* L_2;
L_2 = PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8(__this, L_1, NULL);
String_t* L_3 = ___actual0;
String_t* L_4;
L_4 = PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8(__this, L_3, NULL);
bool L_5;
L_5 = PathConstraint_IsSubPath_m822A5D0E9EBDD075FAE704498E3A9629C4B2E04D(__this, L_2, L_4, NULL);
G_B3_0 = ((int32_t)(L_5));
goto IL_0020;
}
IL_001f:
{
G_B3_0 = 0;
}
IL_0020:
{
V_0 = (bool)G_B3_0;
goto IL_0023;
}
IL_0023:
{
bool L_6 = V_0;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.ThrowsExceptionConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ThrowsExceptionConstraint_get_Description_m00CDE5303569F0A0462877878141C8D068E65CA8 (ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48C487E9F7E0D9475FEBBB1168A85C9D73CE9E55);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral48C487E9F7E0D9475FEBBB1168A85C9D73CE9E55;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.ThrowsExceptionConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ThrowsExceptionConstraint_ApplyTo_m055DBC5C0B789B80A577E175ED3FDFE3A57558B7 (ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* V_0 = NULL;
Exception_t* V_1 = NULL;
bool V_2 = false;
Exception_t* V_3 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89*)IsInstSealed((RuntimeObject*)L_0, TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89_il2cpp_TypeInfo_var));
V_1 = (Exception_t*)NULL;
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_1 = V_0;
V_2 = (bool)((!(((RuntimeObject*)(TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_2;
if (!L_2)
{
goto IL_0028;
}
}
{
}
try
{// begin try (depth: 1)
TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* L_3 = V_0;
NullCheck(L_3);
TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_inline(L_3, NULL);
goto IL_0025;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_001e;
}
throw e;
}
CATCH_001e:
{// begin catch(System.Exception)
V_3 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));
Exception_t* L_4 = V_3;
V_1 = L_4;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0025;
}// end catch (depth: 1)
IL_0025:
{
goto IL_0049;
}
IL_0028:
{
RuntimeObject* L_5 = ___actual0;
NullCheck(L_5);
Type_t* L_6;
L_6 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_5, NULL);
NullCheck(L_6);
String_t* L_7;
L_7 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_6);
String_t* L_8;
L_8 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE5F79458B7102EE7C57068E97315748EB1B2C82F)), L_7, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_9 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_9);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_9, L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThrowsExceptionConstraint_ApplyTo_m055DBC5C0B789B80A577E175ED3FDFE3A57558B7_RuntimeMethod_var)));
}
IL_0049:
{
Exception_t* L_10 = V_1;
ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B* L_11 = (ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B*)il2cpp_codegen_object_new(ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B_il2cpp_TypeInfo_var);
NullCheck(L_11);
ThrowsExceptionConstraintResult__ctor_mC2B278990D0D214E1E95B8FA13D4B5CB20022302(L_11, __this, L_10, NULL);
V_4 = L_11;
goto IL_0054;
}
IL_0054:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12 = V_4;
return L_12;
}
}
// System.Void NUnit.Framework.Constraints.ThrowsExceptionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsExceptionConstraint__ctor_m8AAAE0E81FA64C60260D4DE9D91AF11DE02C2832 (ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ThrowsExceptionConstraint/ThrowsExceptionConstraintResult::.ctor(NUnit.Framework.Constraints.ThrowsExceptionConstraint,System.Exception)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsExceptionConstraintResult__ctor_mC2B278990D0D214E1E95B8FA13D4B5CB20022302 (ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B* __this, ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* ___constraint0, Exception_t* ___caughtException1, const RuntimeMethod* method)
{
{
ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* L_0 = ___constraint0;
Exception_t* L_1 = ___caughtException1;
Exception_t* L_2 = ___caughtException1;
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(__this, L_0, L_1, (bool)((!(((RuntimeObject*)(Exception_t*)L_2) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.ThrowsExceptionConstraint/ThrowsExceptionConstraintResult::WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsExceptionConstraintResult_WriteActualValueTo_mAD900D6E2A080F904B8CFF28BD6711C35DEE6B5F (ThrowsExceptionConstraintResult_tFFE3D6D60FF9B3729F1CB15F3F8F52BE2D925E6B* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA1CD9D908534F1E8EC1305917F734BE9683734A);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
int32_t L_0;
L_0 = ConstraintResult_get_Status_mAEE12663BC9208C46E3A4F58F3D9F53C2B5361E1_inline(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)2))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_2 = ___writer0;
NullCheck(L_2);
VirtualActionInvoker1< String_t* >::Invoke(24 /* System.Void System.IO.TextWriter::Write(System.String) */, L_2, _stringLiteralCA1CD9D908534F1E8EC1305917F734BE9683734A);
goto IL_0024;
}
IL_001c:
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_3 = ___writer0;
ConstraintResult_WriteActualValueTo_mE6F88F20312A3AA37B37E921DAE6C408E79820B1(__this, L_3, NULL);
}
IL_0024:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AllItemsConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AllItemsConstraint__ctor_mD99BB69560D4686A82AB937EB03B77902D8A4340 (AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB* __this, RuntimeObject* ___itemConstraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral61632951487853AF714464C079AD72422121AF9D);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___itemConstraint0;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline(__this, _stringLiteral61632951487853AF714464C079AD72422121AF9D, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.AllItemsConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AllItemsConstraint_get_DisplayName_mBF6A027E8213F383AB19CAE13BD43D49393CFF37 (AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCDF22F0BA1FC534FC6656104D7D41A8D396BCE5);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralCCDF22F0BA1FC534FC6656104D7D41A8D396BCE5;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.AllItemsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* AllItemsConstraint_ApplyTo_m32D364B10DF48470AF13EA993A6D0542207F0446 (AllItemsConstraint_tC22B4C624928CC377FBBDE3954C883ED1278A9FB* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
RuntimeObject* V_5 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0021;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6433242E3AC0818A68685B6BD80954F4AAE48DC)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AllItemsConstraint_ApplyTo_m32D364B10DF48470AF13EA993A6D0542207F0446_RuntimeMethod_var)));
}
IL_0021:
{
RuntimeObject* L_3 = ___actual0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0065:
{// begin finally (depth: 1)
{
RuntimeObject* L_5 = V_1;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = V_5;
if (!L_6)
{
goto IL_0079;
}
}
{
RuntimeObject* L_7 = V_5;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0079:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_005b_1;
}
IL_0030_1:
{
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
V_2 = L_9;
RuntimeObject* L_10;
L_10 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_11 = V_2;
NullCheck(L_10);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12;
L_12 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_10, L_11);
NullCheck(L_12);
bool L_13;
L_13 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_12);
V_3 = (bool)((((int32_t)L_13) == ((int32_t)0))? 1 : 0);
bool L_14 = V_3;
if (!L_14)
{
goto IL_005b_1;
}
}
{
RuntimeObject* L_15 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_16);
ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE(L_16, __this, L_15, 2, NULL);
V_4 = L_16;
goto IL_0086;
}
IL_005b_1:
{
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
bool L_18;
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0030_1;
}
}
{
goto IL_007a;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_007a:
{
RuntimeObject* L_19 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_20 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_20);
ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE(L_20, __this, L_19, 1, NULL);
V_4 = L_20;
goto IL_0086;
}
IL_0086:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_21 = V_4;
return L_21;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AndConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndConstraint__ctor_m8F7D63F6B6CDED1C979E60A87A796F10BC663A91 (AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___left0;
RuntimeObject* L_1 = ___right1;
BinaryConstraint__ctor_m7CF3098D259E649C7CA3A956D43B2EBB10C38FAA(__this, L_0, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.AndConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndConstraint_get_Description_mA6F8CDEBC2D1038198B22585A32B99899283CEEA (AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6E2A118D02EEC0264ECB711997DC50620920E7B0);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Left_4;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0);
RuntimeObject* L_2 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Right_5;
NullCheck(L_2);
String_t* L_3;
L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_2);
String_t* L_4;
L_4 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_1, _stringLiteral6E2A118D02EEC0264ECB711997DC50620920E7B0, L_3, NULL);
V_0 = L_4;
goto IL_0024;
}
IL_0024:
{
String_t* L_5 = V_0;
return L_5;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.AndConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* AndConstraint_ApplyTo_m60A696C3E8C32FA6D3197DC21D3023BF4D6371BD (AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_0 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Left_4;
RuntimeObject* L_1 = ___actual0;
NullCheck(L_0);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_2;
L_2 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0, L_1);
V_0 = L_2;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_3 = V_0;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_3);
if (L_4)
{
goto IL_0024;
}
}
{
RuntimeObject* L_5 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Right_5;
RuntimeObject* L_6 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_7 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_7);
ConstraintResult__ctor_m715C169443DE08DA8C3F016926652D92EA22FB19(L_7, L_5, L_6, NULL);
G_B3_0 = L_7;
goto IL_0030;
}
IL_0024:
{
RuntimeObject* L_8 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Right_5;
RuntimeObject* L_9 = ___actual0;
NullCheck(L_8);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_10;
L_10 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_8, L_9);
G_B3_0 = L_10;
}
IL_0030:
{
V_1 = G_B3_0;
RuntimeObject* L_11 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12 = V_0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_13 = V_1;
AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* L_14 = (AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3*)il2cpp_codegen_object_new(AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3_il2cpp_TypeInfo_var);
NullCheck(L_14);
AndConstraintResult__ctor_mD5943D27B0060AC01D0524C027252CB91E54079E(L_14, __this, L_11, L_12, L_13, NULL);
V_2 = L_14;
goto IL_003d;
}
IL_003d:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_15 = V_2;
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AndConstraint/AndConstraintResult::.ctor(NUnit.Framework.Constraints.AndConstraint,System.Object,NUnit.Framework.Constraints.ConstraintResult,NUnit.Framework.Constraints.ConstraintResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndConstraintResult__ctor_mD5943D27B0060AC01D0524C027252CB91E54079E (AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* __this, AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* ___constraint0, RuntimeObject* ___actual1, ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ___leftResult2, ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ___rightResult3, const RuntimeMethod* method)
{
RuntimeObject* G_B2_0 = NULL;
AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* G_B2_1 = NULL;
AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* G_B2_2 = NULL;
RuntimeObject* G_B1_0 = NULL;
AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* G_B1_1 = NULL;
AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* G_B1_2 = NULL;
int32_t G_B3_0 = 0;
RuntimeObject* G_B3_1 = NULL;
AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* G_B3_2 = NULL;
AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* G_B3_3 = NULL;
{
AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* L_0 = ___constraint0;
RuntimeObject* L_1 = ___actual1;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_2 = ___leftResult2;
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_2);
G_B1_0 = L_1;
G_B1_1 = L_0;
G_B1_2 = __this;
if (!L_3)
{
G_B2_0 = L_1;
G_B2_1 = L_0;
G_B2_2 = __this;
goto IL_0014;
}
}
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_4 = ___rightResult3;
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_4);
G_B3_0 = ((int32_t)(L_5));
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_0015:
{
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(G_B3_3, G_B3_2, G_B3_1, (bool)G_B3_0, NULL);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_6 = ___leftResult2;
__this->___leftResult_3 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___leftResult_3), (void*)L_6);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_7 = ___rightResult3;
__this->___rightResult_4 = L_7;
Il2CppCodeGenWriteBarrier((void**)(&__this->___rightResult_4), (void*)L_7);
return;
}
}
// System.Void NUnit.Framework.Constraints.AndConstraint/AndConstraintResult::WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndConstraintResult_WriteActualValueTo_mCDABCB75F35922507B94CE6F490602623ECC7CC4 (AndConstraintResult_t2A31731F1BCF8CC69DC749CA5C4E05D81CDD5BA3* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
{
bool L_0;
L_0 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, __this);
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_0015;
}
}
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_2 = ___writer0;
ConstraintResult_WriteActualValueTo_mE6F88F20312A3AA37B37E921DAE6C408E79820B1(__this, L_2, NULL);
goto IL_0043;
}
IL_0015:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_3 = __this->___leftResult_3;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_3);
V_1 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0036;
}
}
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_6 = __this->___leftResult_3;
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_7 = ___writer0;
NullCheck(L_6);
VirtualActionInvoker1< MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* >::Invoke(6 /* System.Void NUnit.Framework.Constraints.ConstraintResult::WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter) */, L_6, L_7);
goto IL_0043;
}
IL_0036:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8 = __this->___rightResult_4;
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_9 = ___writer0;
NullCheck(L_8);
VirtualActionInvoker1< MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* >::Invoke(6 /* System.Void NUnit.Framework.Constraints.ConstraintResult::WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter) */, L_8, L_9);
}
IL_0043:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AssignableFromConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssignableFromConstraint__ctor_mADCB5D13461F7A05826A2D0707529272F04A2071 (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D41ABFAD8BAD8ADA22188BB8864870AC96035AF);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
TypeConstraint__ctor_m2E90D1A14179614B327FA9909AFAB764D6461640(__this, L_0, _stringLiteral2D41ABFAD8BAD8ADA22188BB8864870AC96035AF, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.AssignableFromConstraint::Matches(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AssignableFromConstraint_Matches_m1BB2D4D73D88A0DD260C38A3D9E744FAF0460B2A (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___actual0;
if (!L_0)
{
goto IL_0021;
}
}
{
RuntimeObject* L_1 = ___actual0;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
Type_t* L_3;
L_3 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_2, NULL);
Type_t* L_4 = ((TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0*)__this)->___expectedType_4;
Type_t* L_5;
L_5 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_4, NULL);
NullCheck(L_3);
bool L_6;
L_6 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_3, L_5);
G_B3_0 = ((int32_t)(L_6));
goto IL_0022;
}
IL_0021:
{
G_B3_0 = 0;
}
IL_0022:
{
V_0 = (bool)G_B3_0;
goto IL_0025;
}
IL_0025:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AssignableToConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssignableToConstraint__ctor_m12574E6A94D0D1953D0108ADEC7599E785F155C1 (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral020229CC208078649AA5D36B84690B9520CBA8A8);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
TypeConstraint__ctor_m2E90D1A14179614B327FA9909AFAB764D6461640(__this, L_0, _stringLiteral020229CC208078649AA5D36B84690B9520CBA8A8, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.AssignableToConstraint::Matches(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AssignableToConstraint_Matches_m14B323CB15B3871EA00460D8DC78EDA028D6760B (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B4_0 = 0;
{
Type_t* L_0 = ((TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0*)__this)->___expectedType_4;
if (!L_0)
{
goto IL_0029;
}
}
{
RuntimeObject* L_1 = ___actual0;
if (!L_1)
{
goto IL_0029;
}
}
{
Type_t* L_2 = ((TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0*)__this)->___expectedType_4;
Type_t* L_3;
L_3 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_2, NULL);
RuntimeObject* L_4 = ___actual0;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
Type_t* L_6;
L_6 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_5, NULL);
NullCheck(L_3);
bool L_7;
L_7 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_3, L_6);
G_B4_0 = ((int32_t)(L_7));
goto IL_002a;
}
IL_0029:
{
G_B4_0 = 0;
}
IL_002a:
{
V_0 = (bool)G_B4_0;
goto IL_002d;
}
IL_002d:
{
bool L_8 = V_0;
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AttributeConstraint::.ctor(System.Type,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeConstraint__ctor_mD7EC35DA07C505F9FDF44DB414EEF462FB905BBC (AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9* __this, Type_t* ___type0, RuntimeObject* ___baseConstraint1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8CC49CF7EBA8B1F28B92947F51A96914774BEB4F);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = ___baseConstraint1;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
Type_t* L_1 = ___type0;
__this->___expectedType_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___expectedType_6), (void*)L_1);
Type_t* L_2 = __this->___expectedType_6;
NullCheck(L_2);
String_t* L_3;
L_3 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_2);
String_t* L_4;
L_4 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral8CC49CF7EBA8B1F28B92947F51A96914774BEB4F, L_3, NULL);
PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline(__this, L_4, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_6;
L_6 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_5, NULL);
Type_t* L_7;
L_7 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_6, NULL);
Type_t* L_8 = __this->___expectedType_6;
Type_t* L_9;
L_9 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_8, NULL);
NullCheck(L_7);
bool L_10;
L_10 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_7, L_9);
V_0 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
bool L_11 = V_0;
if (!L_11)
{
goto IL_006d;
}
}
{
Type_t* L_12 = __this->___expectedType_6;
String_t* L_13;
L_13 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8CE3D52F2D14F6E4C8D5F9559550192183B372FE)), L_12, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_14);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_14, L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AttributeConstraint__ctor_mD7EC35DA07C505F9FDF44DB414EEF462FB905BBC_RuntimeMethod_var)));
}
IL_006d:
{
return;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.AttributeConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* AttributeConstraint_ApplyTo_m13BB6142D37C0F9393AC4BC83540FDB998D1C7C5 (AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272);
s_Il2CppMethodInitialized = true;
}
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* V_0 = NULL;
bool V_1 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
{
RuntimeObject* L_0 = ___actual0;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_0, _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272, NULL);
RuntimeObject* L_1 = ___actual0;
Type_t* L_2 = __this->___expectedType_6;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_3;
L_3 = AttributeHelper_GetCustomAttributes_m51204D122B5336C97F865E8464E760965BD0BA1E(L_1, L_2, (bool)1, NULL);
V_0 = L_3;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_4 = V_0;
NullCheck(L_4);
V_1 = (bool)((((int32_t)(((RuntimeArray*)L_4)->max_length)) == ((int32_t)0))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_003f;
}
}
{
Type_t* L_6 = __this->___expectedType_6;
String_t* L_7;
L_7 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38022E48CF63587E6E4373F79DA921B2B487C58D)), L_6, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AttributeConstraint_ApplyTo_m13BB6142D37C0F9393AC4BC83540FDB998D1C7C5_RuntimeMethod_var)));
}
IL_003f:
{
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_9 = V_0;
NullCheck(L_9);
int32_t L_10 = 0;
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_11 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
__this->___attrFound_7 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___attrFound_7), (void*)L_11);
RuntimeObject* L_12;
L_12 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA* L_13 = __this->___attrFound_7;
NullCheck(L_12);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_14;
L_14 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_12, L_13);
V_2 = L_14;
goto IL_005c;
}
IL_005c:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_15 = V_2;
return L_15;
}
}
// System.String NUnit.Framework.Constraints.AttributeConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttributeConstraint_GetStringRepresentation_m3F8A96C2F93B48CD38CFFD0EDE14A89CD5291EC1 (AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA48E7B9B63F28D6A58CEEA113B488C4AF00F98B8);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Type_t* L_0 = __this->___expectedType_6;
RuntimeObject* L_1;
L_1 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralA48E7B9B63F28D6A58CEEA113B488C4AF00F98B8, L_0, L_1, NULL);
V_0 = L_2;
goto IL_001a;
}
IL_001a:
{
String_t* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AttributeExistsConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeExistsConstraint__ctor_mF00CA21E7FB17774D6073E68B286563240D7C31D (AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
Type_t* L_2 = ___type0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
Type_t* L_3 = ___type0;
__this->___expectedType_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___expectedType_4), (void*)L_3);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (Attribute_tFDA8EFEFB0711976D22474794576DAF28F7440AA_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_5;
L_5 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_4, NULL);
Type_t* L_6;
L_6 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_5, NULL);
Type_t* L_7 = __this->___expectedType_4;
Type_t* L_8;
L_8 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_7, NULL);
NullCheck(L_6);
bool L_9;
L_9 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_6, L_8);
V_0 = (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
bool L_10 = V_0;
if (!L_10)
{
goto IL_005a;
}
}
{
Type_t* L_11 = __this->___expectedType_4;
String_t* L_12;
L_12 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8CE3D52F2D14F6E4C8D5F9559550192183B372FE)), L_11, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_13);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_13, L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&AttributeExistsConstraint__ctor_mF00CA21E7FB17774D6073E68B286563240D7C31D_RuntimeMethod_var)));
}
IL_005a:
{
return;
}
}
// System.String NUnit.Framework.Constraints.AttributeExistsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AttributeExistsConstraint_get_Description_mD105B6C08638686C68AC780A9347770FB8084478 (AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00E28E1CC1B129B1AAD27F1C89B10A07EF10FC79);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Type_t* L_0 = __this->___expectedType_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral00E28E1CC1B129B1AAD27F1C89B10A07EF10FC79, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.AttributeExistsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* AttributeExistsConstraint_ApplyTo_mE17E7FDAA67746B26E79C0D92DDC990264B1F17A (AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272);
s_Il2CppMethodInitialized = true;
}
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* V_0 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B2_0 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B3_1 = NULL;
{
RuntimeObject* L_0 = ___actual0;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_0, _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272, NULL);
RuntimeObject* L_1 = ___actual0;
Type_t* L_2 = __this->___expectedType_4;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_3;
L_3 = AttributeHelper_GetCustomAttributes_m51204D122B5336C97F865E8464E760965BD0BA1E(L_1, L_2, (bool)1, NULL);
V_0 = L_3;
RuntimeObject* L_4 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_5 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_5);
ConstraintResult__ctor_m715C169443DE08DA8C3F016926652D92EA22FB19(L_5, __this, L_4, NULL);
V_1 = L_5;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_6 = V_1;
AttributeU5BU5D_t0F73488E6F1249C889608E8DCC0BCC28A874E8F1* L_7 = V_0;
NullCheck(L_7);
G_B1_0 = L_6;
if ((((RuntimeArray*)L_7)->max_length))
{
G_B2_0 = L_6;
goto IL_002b;
}
}
{
G_B3_0 = 2;
G_B3_1 = G_B1_0;
goto IL_002c;
}
IL_002b:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_002c:
{
NullCheck(G_B3_1);
ConstraintResult_set_Status_m76C630530199E02CCBC93BB748D8EB5F85F444CB_inline(G_B3_1, G_B3_0, NULL);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8 = V_1;
V_2 = L_8;
goto IL_0036;
}
IL_0036:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_9 = V_2;
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.BinaryConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryConstraint__ctor_m7CF3098D259E649C7CA3A956D43B2EBB10C38FAA (BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8739227E8E687EF781DA0D923452C2686CFF10A2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1E5119D36EC43B340C0A0DDC99F1156546EA9DF);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___left0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_1;
RuntimeObject* L_4 = ___right1;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_4);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_3, NULL);
RuntimeObject* L_5 = ___left0;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_5, _stringLiteral8739227E8E687EF781DA0D923452C2686CFF10A2, NULL);
RuntimeObject* L_6 = ___left0;
__this->___Left_4 = L_6;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Left_4), (void*)L_6);
RuntimeObject* L_7 = ___right1;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_7, _stringLiteralB1E5119D36EC43B340C0A0DDC99F1156546EA9DF, NULL);
RuntimeObject* L_8 = ___right1;
__this->___Right_5 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->___Right_5), (void*)L_8);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.BinarySerializableConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BinarySerializableConstraint_get_Description_m274497E9A47EA6270BCD1EF67C19330724911396 (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86870062E522B77F88E08BEA5178676294A887F5);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral86870062E522B77F88E08BEA5178676294A887F5;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.BinarySerializableConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* BinarySerializableConstraint_ApplyTo_m3EF5283FE31F86EF56168BDD3E7361CF41E12ABD (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_3 = NULL;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
{
RuntimeObject* L_0 = ___actual0;
V_2 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&BinarySerializableConstraint_ApplyTo_m3EF5283FE31F86EF56168BDD3E7361CF41E12ABD_RuntimeMethod_var)));
}
IL_0014:
{
MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
NullCheck(L_3);
MemoryStream__ctor_m8F3BAE0B48E65BAA13C52FB020E502B3EA22CA6B(L_3, NULL);
V_0 = L_3;
V_1 = (bool)0;
}
try
{// begin try (depth: 1)
BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* L_4 = __this->___serializer_4;
MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_5 = V_0;
RuntimeObject* L_6 = ___actual0;
NullCheck(L_4);
BinaryFormatter_Serialize_mF365DA7FA76E03707336375616D757397CF2992E(L_4, L_5, L_6, NULL);
MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_7 = V_0;
NullCheck(L_7);
int64_t L_8;
L_8 = VirtualFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(30 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_7, ((int64_t)0), 0);
BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* L_9 = __this->___serializer_4;
MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_10 = V_0;
NullCheck(L_9);
RuntimeObject* L_11;
L_11 = BinaryFormatter_Deserialize_mFC50E75F230189EB3660C8F2FD1E786C0D11E1ED(L_9, L_10, NULL);
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_004d;
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0048;
}
throw e;
}
CATCH_0048:
{// begin catch(System.Runtime.Serialization.SerializationException)
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_004d;
}// end catch (depth: 1)
IL_004d:
{
RuntimeObject* L_12 = ___actual0;
NullCheck(L_12);
Type_t* L_13;
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
bool L_14 = V_1;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_15 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_15);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_15, __this, L_13, L_14, NULL);
V_3 = L_15;
goto IL_005d;
}
IL_005d:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = V_3;
return L_16;
}
}
// System.String NUnit.Framework.Constraints.BinarySerializableConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* BinarySerializableConstraint_GetStringRepresentation_m772EFBFD3AB05BE897D0A0C8D2CC355DF2919CDA (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20F9F21180FB7CDF3A26405698DCAD680B3ADAB6);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral20F9F21180FB7CDF3A26405698DCAD680B3ADAB6;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.BinarySerializableConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinarySerializableConstraint__ctor_m66AA113234117D08C4B159482E37FDC679C80107 (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F* L_0 = (BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F*)il2cpp_codegen_object_new(BinaryFormatter_t5A79B3E3328D1B8FDE8C57D1E17668AD47A4466F_il2cpp_TypeInfo_var);
NullCheck(L_0);
BinaryFormatter__ctor_m484DBB5D742624C3A8190921A85458BCECBB1705(L_0, NULL);
__this->___serializer_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___serializer_4), (void*)L_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionConstraint__ctor_m2D6FCCB415B194F6D0ECFEDF51C3BCFF01E01B60 (CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.CollectionConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionConstraint__ctor_m5996D49C6291DDE95CEE7DDF13A96B3825605D78 (CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___arg0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionConstraint::IsEmpty(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionConstraint_IsEmpty_m7E2DC6F3AE87231B8044A6576EE4043880B2E56D (RuntimeObject* ___enumerable0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
{
RuntimeObject* L_0 = ___enumerable0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_001c;
}
}
{
RuntimeObject* L_3 = V_0;
NullCheck(L_3);
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_3);
V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
goto IL_0055;
}
IL_001c:
{
RuntimeObject* L_5 = ___enumerable0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_5);
V_3 = L_6;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_003c:
{// begin finally (depth: 1)
{
RuntimeObject* L_7 = V_3;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_7, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_8 = V_5;
if (!L_8)
{
goto IL_0050;
}
}
{
RuntimeObject* L_9 = V_5;
NullCheck(L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
}
IL_0050:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0032_1;
}
IL_0026_1:
{
RuntimeObject* L_10 = V_3;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
V_4 = L_11;
V_2 = (bool)0;
goto IL_0055;
}
IL_0032_1:
{
RuntimeObject* L_12 = V_3;
NullCheck(L_12);
bool L_13;
L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_12);
if (L_13)
{
goto IL_0026_1;
}
}
{
goto IL_0051;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0051:
{
V_2 = (bool)1;
goto IL_0055;
}
IL_0055:
{
bool L_14 = V_2;
return L_14;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.CollectionConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* CollectionConstraint_ApplyTo_mE9C3DB08DD17AA6B0F23BED9844940BBC071A910 (CollectionConstraint_t848824A1826A6C97E8286C9AF9D71F5ECD1C6B5E* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0020;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6433242E3AC0818A68685B6BD80954F4AAE48DC)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionConstraint_ApplyTo_mE9C3DB08DD17AA6B0F23BED9844940BBC071A910_RuntimeMethod_var)));
}
IL_0020:
{
RuntimeObject* L_4 = ___actual0;
RuntimeObject* L_5 = V_0;
bool L_6;
L_6 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(21 /* System.Boolean NUnit.Framework.Constraints.CollectionConstraint::Matches(System.Collections.IEnumerable) */, __this, L_5);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_7 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_7);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_7, __this, L_4, L_6, NULL);
V_2 = L_7;
goto IL_0031;
}
IL_0031:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8 = V_2;
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionContainsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___expected0;
CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1(__this, L_0, NULL);
RuntimeObject* L_1 = ___expected0;
CollectionContainsConstraint_set_Expected_mFB45EC4D54995420CA5C994D70690A73F27FDBC7_inline(__this, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionContainsConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionContainsConstraint_get_DisplayName_m716C6870B4D49ADC55337E183CF6FCA0D0E19F80 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA7B88886FB24B3F19FA3221438C8E27A5F9DB25);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteralDA7B88886FB24B3F19FA3221438C8E27A5F9DB25;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.CollectionContainsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionContainsConstraint_get_Description_m5E2625A54B4E97FF6F040FC5F99385F594F9B232 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2A3F74BE29B363CFDDA715BD681B139FBDB4933A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral2A3F74BE29B363CFDDA715BD681B139FBDB4933A, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Object NUnit.Framework.Constraints.CollectionContainsConstraint::get_Expected()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CExpectedU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.CollectionContainsConstraint::set_Expected(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionContainsConstraint_set_Expected_mFB45EC4D54995420CA5C994D70690A73F27FDBC7 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CExpectedU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CExpectedU3Ek__BackingField_5), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionContainsConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionContainsConstraint_Matches_m24939090817C2373786A7A66BFB1098E6B1275A9 (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
{
RuntimeObject* L_0 = ___actual0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0031:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_3 = V_4;
if (!L_3)
{
goto IL_0045;
}
}
{
RuntimeObject* L_4 = V_4;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0045:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0027_1;
}
IL_000b_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
RuntimeObject* L_7 = V_1;
RuntimeObject* L_8;
L_8 = CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline(__this, NULL);
bool L_9;
L_9 = CollectionItemsEqualConstraint_ItemsEqual_m4F5F65960841269FC2700BBE382D53200E196C2B(__this, L_7, L_8, NULL);
V_2 = L_9;
bool L_10 = V_2;
if (!L_10)
{
goto IL_0027_1;
}
}
{
V_3 = (bool)1;
goto IL_004a;
}
IL_0027_1:
{
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
if (L_12)
{
goto IL_000b_1;
}
}
{
goto IL_0046;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0046:
{
V_3 = (bool)0;
goto IL_004a;
}
IL_004a:
{
bool L_13 = V_3;
return L_13;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionEquivalentConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionEquivalentConstraint__ctor_mC7C344C2B5E287FE77E75FECE7D5299FB5D666F6 (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___expected0;
CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1(__this, L_0, NULL);
RuntimeObject* L_1 = ___expected0;
__this->____expected_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expected_5), (void*)L_1);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionEquivalentConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionEquivalentConstraint_get_DisplayName_mFDCCDA317789124A68B4EB4ADC59889A5CB5A265 (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5481F04F3657AFF9CE20AE264BBB8F8B099BDC84);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral5481F04F3657AFF9CE20AE264BBB8F8B099BDC84;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.CollectionEquivalentConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionEquivalentConstraint_get_Description_mB9E14610017B3396352EE59A8C4EFD8B4EB9DF41 (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA79ECAE3F0E6D764C6A8796C87D1817FFC8D283F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____expected_5;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralA79ECAE3F0E6D764C6A8796C87D1817FFC8D283F, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionEquivalentConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionEquivalentConstraint_Matches_m124C3533DDA6B9B54560F390A7E7B5B669CB5889 (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
int32_t G_B3_0 = 0;
int32_t G_B9_0 = 0;
{
RuntimeObject* L_0 = __this->____expected_5;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_0, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)))
{
goto IL_0019;
}
}
{
RuntimeObject* L_1 = ___actual0;
G_B3_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_001a;
}
IL_0019:
{
G_B3_0 = 0;
}
IL_001a:
{
V_1 = (bool)G_B3_0;
bool L_2 = V_1;
if (!L_2)
{
goto IL_0046;
}
}
{
RuntimeObject* L_3 = ___actual0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_3, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
int32_t L_4;
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_3, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
RuntimeObject* L_5 = __this->____expected_5;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_5, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
int32_t L_6;
L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_5, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var)));
V_2 = (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)L_6))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_7 = V_2;
if (!L_7)
{
goto IL_0046;
}
}
{
V_3 = (bool)0;
goto IL_006b;
}
IL_0046:
{
RuntimeObject* L_8 = __this->____expected_5;
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_9;
L_9 = CollectionItemsEqualConstraint_Tally_m011D3127C5D2409BE46E8AF17918C79BAF9D8E05(__this, L_8, NULL);
V_0 = L_9;
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_10 = V_0;
RuntimeObject* L_11 = ___actual0;
NullCheck(L_10);
bool L_12;
L_12 = CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D(L_10, L_11, NULL);
if (!L_12)
{
goto IL_0067;
}
}
{
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_13 = V_0;
NullCheck(L_13);
int32_t L_14;
L_14 = CollectionTally_get_Count_mD6F314D427AE5132606A1B41120C502ABF3A4E0B(L_13, NULL);
G_B9_0 = ((((int32_t)L_14) == ((int32_t)0))? 1 : 0);
goto IL_0068;
}
IL_0067:
{
G_B9_0 = 0;
}
IL_0068:
{
V_3 = (bool)G_B9_0;
goto IL_006b;
}
IL_006b:
{
bool L_15 = V_3;
return L_15;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionItemsEqualConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemsEqualConstraint__ctor_m8EB3CEB304EAE1335FD0BC53A797F40EFA0E8AA5 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0;
L_0 = NUnitEqualityComparer_get_Default_m6A60DD26DF114A891ACD028E4ABD4AEBAB45BCB1(NULL);
__this->___comparer_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_4), (void*)L_0);
CollectionConstraint__ctor_m2D6FCCB415B194F6D0ECFEDF51C3BCFF01E01B60(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.CollectionItemsEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___arg0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0;
L_0 = NUnitEqualityComparer_get_Default_m6A60DD26DF114A891ACD028E4ABD4AEBAB45BCB1(NULL);
__this->___comparer_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_4), (void*)L_0);
RuntimeObject* L_1 = ___arg0;
CollectionConstraint__ctor_m5996D49C6291DDE95CEE7DDF13A96B3825605D78(__this, L_1, NULL);
return;
}
}
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint NUnit.Framework.Constraints.CollectionItemsEqualConstraint::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* CollectionItemsEqualConstraint_get_IgnoreCase_mD7F3CD0C61E23774CE6F8F99BFEFC9990B025FD6 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, const RuntimeMethod* method)
{
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->___comparer_4;
NullCheck(L_0);
NUnitEqualityComparer_set_IgnoreCase_mB429070FD90395F5F0E9A97E00CEE5D813294BE1(L_0, (bool)1, NULL);
V_0 = __this;
goto IL_0012;
}
IL_0012:
{
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint NUnit.Framework.Constraints.CollectionItemsEqualConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* CollectionItemsEqualConstraint_Using_m0C23256F27F08F02386975FD406CEB51A5691E15 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->___comparer_4;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB(L_0, NULL);
RuntimeObject* L_2 = ___comparer0;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_3;
L_3 = EqualityAdapter_For_m2A6B329527B85B4C0100BE9A102A910E0E17DFDC(L_2, NULL);
NullCheck(L_1);
InterfaceActionInvoker1< EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.EqualityAdapter>::Add(T) */, ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var, L_1, L_3);
V_0 = __this;
goto IL_001c;
}
IL_001c:
{
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint NUnit.Framework.Constraints.CollectionItemsEqualConstraint::Using(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* CollectionItemsEqualConstraint_Using_mEB07FB27ADD74C3D9EFE2E65F83CE68FFC598FB8 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->___comparer_4;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB(L_0, NULL);
RuntimeObject* L_2 = ___comparer0;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_3;
L_3 = EqualityAdapter_For_m5ACE7BA09274D741298495A781ED2BC4A71FEA30(L_2, NULL);
NullCheck(L_1);
InterfaceActionInvoker1< EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.EqualityAdapter>::Add(T) */, ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var, L_1, L_3);
V_0 = __this;
goto IL_001c;
}
IL_001c:
{
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.CollectionItemsEqualConstraint NUnit.Framework.Constraints.CollectionItemsEqualConstraint::Using(NUnit.Framework.Constraints.EqualityAdapter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* CollectionItemsEqualConstraint_Using_m6D1DE2B24290D59CBF048DF16B90A27C663B3020 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* ___adapter0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->___comparer_4;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB(L_0, NULL);
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_2 = ___adapter0;
NullCheck(L_1);
InterfaceActionInvoker1< EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.EqualityAdapter>::Add(T) */, ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var, L_1, L_2);
V_0 = __this;
goto IL_0017;
}
IL_0017:
{
CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionItemsEqualConstraint::ItemsEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionItemsEqualConstraint_ItemsEqual_m4F5F65960841269FC2700BBE382D53200E196C2B (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* V_0 = NULL;
bool V_1 = false;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0;
L_0 = Tolerance_get_Default_mBB92F23DF5219A7D3C7FAD65B67DE9162DAFF37A(NULL);
V_0 = L_0;
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_1 = __this->___comparer_4;
RuntimeObject* L_2 = ___x0;
RuntimeObject* L_3 = ___y1;
NullCheck(L_1);
bool L_4;
L_4 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(L_1, L_2, L_3, (&V_0), NULL);
V_1 = L_4;
goto IL_0019;
}
IL_0019:
{
bool L_5 = V_1;
return L_5;
}
}
// NUnit.Framework.Constraints.CollectionTally NUnit.Framework.Constraints.CollectionItemsEqualConstraint::Tally(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* CollectionItemsEqualConstraint_Tally_m011D3127C5D2409BE46E8AF17918C79BAF9D8E05 (CollectionItemsEqualConstraint_tA18058F1DDDBA731677B83DE1B8AA880451BE618* __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->___comparer_4;
RuntimeObject* L_1 = ___c0;
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_2 = (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9*)il2cpp_codegen_object_new(CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9_il2cpp_TypeInfo_var);
NullCheck(L_2);
CollectionTally__ctor_m21CFBFBBC15F27DA0008AE83A1C31DC41F2F8328(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOrderedConstraint__ctor_m7299C19EDE7878E96A8E2A7577055AC4ACED7430 (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m602C3C555F0F9190329EDBCFAF9294E5FEE8FBEA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CollectionConstraint__ctor_m2D6FCCB415B194F6D0ECFEDF51C3BCFF01E01B60(__this, NULL);
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_0 = (List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02*)il2cpp_codegen_object_new(List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m602C3C555F0F9190329EDBCFAF9294E5FEE8FBEA(L_0, List_1__ctor_m602C3C555F0F9190329EDBCFAF9294E5FEE8FBEA_RuntimeMethod_var);
__this->____steps_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____steps_4), (void*)L_0);
CollectionOrderedConstraint_CreateNextStep_mC66D6EF86D0C402BE11AB3E8C2D3538E2A9AC79E(__this, (String_t*)NULL, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionOrderedConstraint_get_DisplayName_m3BB1573E68CDC8B6C87C94AFA243A558D09FC8D2 (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3CE79F8D2D1B691668FA506A55EAE194562D04D2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral3CE79F8D2D1B691668FA506A55EAE194562D04D2;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.CollectionOrderedConstraint::get_Ascending()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* CollectionOrderedConstraint_get_Ascending_mA5A1B3500C6E9C19674F816FA915BB0D2F218A25 (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
bool V_0 = false;
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_1 = NULL;
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_0 = __this->____activeStep_5;
NullCheck(L_0);
int32_t L_1;
L_1 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_0, NULL);
V_0 = (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51839BF4AC3A03C0141086FE38D278B0B4192151)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionOrderedConstraint_get_Ascending_mA5A1B3500C6E9C19674F816FA915BB0D2F218A25_RuntimeMethod_var)));
}
IL_001e:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_4 = __this->____activeStep_5;
NullCheck(L_4);
OrderingStep_set_Direction_m8B117F56733B7CFED1769A3EB3F1B51D1464852C_inline(L_4, 1, NULL);
V_1 = __this;
goto IL_002f;
}
IL_002f:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_5 = V_1;
return L_5;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.CollectionOrderedConstraint::get_Descending()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* CollectionOrderedConstraint_get_Descending_mD6A8D6FC53F70B7FFBF9DB9DEB1299BE86D6C2CA (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
bool V_0 = false;
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_1 = NULL;
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_0 = __this->____activeStep_5;
NullCheck(L_0);
int32_t L_1;
L_1 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_0, NULL);
V_0 = (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51839BF4AC3A03C0141086FE38D278B0B4192151)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionOrderedConstraint_get_Descending_mD6A8D6FC53F70B7FFBF9DB9DEB1299BE86D6C2CA_RuntimeMethod_var)));
}
IL_001e:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_4 = __this->____activeStep_5;
NullCheck(L_4);
OrderingStep_set_Direction_m8B117F56733B7CFED1769A3EB3F1B51D1464852C_inline(L_4, 2, NULL);
V_1 = __this;
goto IL_002f;
}
IL_002f:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_5 = V_1;
return L_5;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.CollectionOrderedConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* CollectionOrderedConstraint_Using_mC44DC9C1E83461383E48ECF9EC6F837BF24C96FB (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
bool V_0 = false;
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_1 = NULL;
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_0 = __this->____activeStep_5;
NullCheck(L_0);
String_t* L_1;
L_1 = OrderingStep_get_ComparerName_m5C6C54BD55587837E34BF10446C99494EC195E1D_inline(L_0, NULL);
V_0 = (bool)((!(((RuntimeObject*)(String_t*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7AD249FAD187FA6BDEE99AFFCECD6EE73595F7F2)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionOrderedConstraint_Using_mC44DC9C1E83461383E48ECF9EC6F837BF24C96FB_RuntimeMethod_var)));
}
IL_001e:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_4 = __this->____activeStep_5;
RuntimeObject* L_5 = ___comparer0;
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_6;
L_6 = ComparisonAdapter_For_mCF28A0895277AB45BD066787BA8E470280153E5D(L_5, NULL);
NullCheck(L_4);
OrderingStep_set_Comparer_mA788E45DD94E9302E455686AE00DE2E9E56ECEAD_inline(L_4, L_6, NULL);
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_7 = __this->____activeStep_5;
RuntimeObject* L_8 = ___comparer0;
NullCheck(L_8);
Type_t* L_9;
L_9 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_8, NULL);
NullCheck(L_9);
String_t* L_10;
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_9);
NullCheck(L_7);
OrderingStep_set_ComparerName_mE99C21A0DDDAEE2CCF1FB61120EBCD4D5C29F15B_inline(L_7, L_10, NULL);
V_1 = __this;
goto IL_004b;
}
IL_004b:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_11 = V_1;
return L_11;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.CollectionOrderedConstraint::By(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* CollectionOrderedConstraint_By_mE501E44CA521E7889442923E3A6EC60CFFE543BE (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
bool V_0 = false;
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_1 = NULL;
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_0 = __this->____activeStep_5;
NullCheck(L_0);
String_t* L_1;
L_1 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_0, NULL);
V_0 = (bool)((((RuntimeObject*)(String_t*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0022;
}
}
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_3 = __this->____activeStep_5;
String_t* L_4 = ___propertyName0;
NullCheck(L_3);
OrderingStep_set_PropertyName_mC92FC43DC299CBE9D9B4579077DCF6B5E3415F7D_inline(L_3, L_4, NULL);
goto IL_002a;
}
IL_0022:
{
String_t* L_5 = ___propertyName0;
CollectionOrderedConstraint_CreateNextStep_mC66D6EF86D0C402BE11AB3E8C2D3538E2A9AC79E(__this, L_5, NULL);
}
IL_002a:
{
V_1 = __this;
goto IL_002e;
}
IL_002e:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_6 = V_1;
return L_6;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.CollectionOrderedConstraint::get_Then()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* CollectionOrderedConstraint_get_Then_m232E4FE2F19EAF59547A3AB02A448FB923D0F897 (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_0 = NULL;
{
CollectionOrderedConstraint_CreateNextStep_mC66D6EF86D0C402BE11AB3E8C2D3538E2A9AC79E(__this, (String_t*)NULL, NULL);
V_0 = __this;
goto IL_000d;
}
IL_000d:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionOrderedConstraint_get_Description_mECD15593A3C94BDC366228988591CA08F45DDDAE (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral01B12693BFC5A7CFA63FCEFECF8FECD546B1B469);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral81B5328648DAFD032CF499AAFFD77AAFC738A4E8);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB5CC317EC6E1D9F1B86189B7952CFFBE59C69820);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF20B7FA0252D0EE5B17766552AD69D948EEF98A);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9 V_2;
memset((&V_2), 0, sizeof(V_2));
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
String_t* V_7 = NULL;
{
V_0 = _stringLiteral81B5328648DAFD032CF499AAFFD77AAFC738A4E8;
V_1 = 0;
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_0 = __this->____steps_4;
NullCheck(L_0);
Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9 L_1;
L_1 = List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26(L_0, List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26_RuntimeMethod_var);
V_2 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0088:
{// begin finally (depth: 1)
Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92((&V_2), Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_007d_1;
}
IL_0018_1:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_2;
L_2 = Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_inline((&V_2), Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_RuntimeMethod_var);
V_3 = L_2;
int32_t L_3 = V_1;
int32_t L_4 = L_3;
V_1 = ((int32_t)il2cpp_codegen_add(L_4, 1));
V_4 = (bool)((!(((uint32_t)L_4) <= ((uint32_t)0)))? 1 : 0);
bool L_5 = V_4;
if (!L_5)
{
goto IL_003b_1;
}
}
{
String_t* L_6 = V_0;
String_t* L_7;
L_7 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_6, _stringLiteral01B12693BFC5A7CFA63FCEFECF8FECD546B1B469, NULL);
V_0 = L_7;
}
IL_003b_1:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_8 = V_3;
NullCheck(L_8);
String_t* L_9;
L_9 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_8, NULL);
V_5 = (bool)((!(((RuntimeObject*)(String_t*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_10 = V_5;
if (!L_10)
{
goto IL_0061_1;
}
}
{
String_t* L_11 = V_0;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_12 = V_3;
NullCheck(L_12);
String_t* L_13;
L_13 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_12, NULL);
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_14;
L_14 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_13, NULL);
String_t* L_15;
L_15 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_11, _stringLiteralCF20B7FA0252D0EE5B17766552AD69D948EEF98A, L_14, NULL);
V_0 = L_15;
}
IL_0061_1:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_16 = V_3;
NullCheck(L_16);
int32_t L_17;
L_17 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_16, NULL);
V_6 = (bool)((((int32_t)L_17) == ((int32_t)2))? 1 : 0);
bool L_18 = V_6;
if (!L_18)
{
goto IL_007c_1;
}
}
{
String_t* L_19 = V_0;
String_t* L_20;
L_20 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_19, _stringLiteralB5CC317EC6E1D9F1B86189B7952CFFBE59C69820, NULL);
V_0 = L_20;
}
IL_007c_1:
{
}
IL_007d_1:
{
bool L_21;
L_21 = Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39((&V_2), Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39_RuntimeMethod_var);
if (L_21)
{
goto IL_0018_1;
}
}
{
goto IL_0097;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0097:
{
String_t* L_22 = V_0;
V_7 = L_22;
goto IL_009c;
}
IL_009c:
{
String_t* L_23 = V_7;
return L_23;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionOrderedConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionOrderedConstraint_Matches_mFED20897F66A6353A4460925C7AD9AF5CE2BC3CF (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
int32_t V_1 = 0;
RuntimeObject* V_2 = NULL;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9 V_7;
memset((&V_7), 0, sizeof(V_7));
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* V_8 = NULL;
String_t* V_9 = NULL;
PropertyInfo_t* V_10 = NULL;
PropertyInfo_t* V_11 = NULL;
RuntimeObject* V_12 = NULL;
RuntimeObject* V_13 = NULL;
int32_t V_14 = 0;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
bool V_18 = false;
bool V_19 = false;
bool V_20 = false;
int32_t V_21 = 0;
bool V_22 = false;
bool V_23 = false;
RuntimeObject* V_24 = NULL;
int32_t G_B26_0 = 0;
int32_t G_B31_0 = 0;
{
V_0 = NULL;
V_1 = 0;
RuntimeObject* L_0 = ___actual0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_0);
V_2 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01da:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_2;
V_24 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_3 = V_24;
if (!L_3)
{
goto IL_01ee;
}
}
{
RuntimeObject* L_4 = V_24;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_01ee:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_01cd_1;
}
IL_0012_1:
{
RuntimeObject* L_5 = V_2;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5);
V_3 = L_6;
RuntimeObject* L_7 = V_3;
V_4 = (bool)((((RuntimeObject*)(RuntimeObject*)L_7) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_8 = V_4;
if (!L_8)
{
goto IL_0040_1;
}
}
{
String_t* L_9;
L_9 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
String_t* L_10;
L_10 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3FDCF6EE50D26A5C047BC7CC94C7439A03E7986A)), L_9, NULL);
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_11 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), L_10, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionOrderedConstraint_Matches_mFED20897F66A6353A4460925C7AD9AF5CE2BC3CF_RuntimeMethod_var)));
}
IL_0040_1:
{
RuntimeObject* L_12 = V_0;
V_5 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_13 = V_5;
if (!L_13)
{
goto IL_01c6_1;
}
}
{
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_14 = __this->____steps_4;
NullCheck(L_14);
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_15;
L_15 = List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37(L_14, 0, List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37_RuntimeMethod_var);
NullCheck(L_15);
String_t* L_16;
L_16 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_15, NULL);
V_6 = (bool)((!(((RuntimeObject*)(String_t*)L_16) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_17 = V_6;
if (!L_17)
{
goto IL_016d_1;
}
}
{
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_18 = __this->____steps_4;
NullCheck(L_18);
Enumerator_tDB9EFC06590A0359E9D9AD474900C7E7F514EAB9 L_19;
L_19 = List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26(L_18, List_1_GetEnumerator_mDCDC49DACE2ABEDD24DEDDC55EBDC586DF168A26_RuntimeMethod_var);
V_7 = L_19;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_015b_1:
{// begin finally (depth: 2)
Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92((&V_7), Enumerator_Dispose_mD588E0C57FEDDFA14C33031BDD37404EED9A2D92_RuntimeMethod_var);
return;
}// end finally (depth: 2)
});
try
{// begin try (depth: 2)
{
goto IL_014d_2;
}
IL_007f_2:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_20;
L_20 = Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_inline((&V_7), Enumerator_get_Current_mA917023C814207B4067BD10AF03054EC4098F84E_RuntimeMethod_var);
V_8 = L_20;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_21 = V_8;
NullCheck(L_21);
String_t* L_22;
L_22 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_21, NULL);
V_9 = L_22;
RuntimeObject* L_23 = V_0;
NullCheck(L_23);
Type_t* L_24;
L_24 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_23, NULL);
String_t* L_25 = V_9;
NullCheck(L_24);
PropertyInfo_t* L_26;
L_26 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_24, L_25, NULL);
V_10 = L_26;
RuntimeObject* L_27 = V_3;
NullCheck(L_27);
Type_t* L_28;
L_28 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_27, NULL);
String_t* L_29 = V_9;
NullCheck(L_28);
PropertyInfo_t* L_30;
L_30 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_28, L_29, NULL);
V_11 = L_30;
PropertyInfo_t* L_31 = V_10;
RuntimeObject* L_32 = V_0;
NullCheck(L_31);
RuntimeObject* L_33;
L_33 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_31, L_32, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_12 = L_33;
PropertyInfo_t* L_34 = V_11;
RuntimeObject* L_35 = V_3;
NullCheck(L_34);
RuntimeObject* L_36;
L_36 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_34, L_35, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_13 = L_36;
RuntimeObject* L_37 = V_13;
V_15 = (bool)((((RuntimeObject*)(RuntimeObject*)L_37) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_38 = V_15;
if (!L_38)
{
goto IL_00ed_2;
}
}
{
String_t* L_39;
L_39 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_1), NULL);
String_t* L_40;
L_40 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1FE3805D799DCE1C98350D1E69D410CC014DAAA2)), L_39, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_41 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_41);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_41, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), L_40, NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_41, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CollectionOrderedConstraint_Matches_mFED20897F66A6353A4460925C7AD9AF5CE2BC3CF_RuntimeMethod_var)));
}
IL_00ed_2:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_42 = V_8;
NullCheck(L_42);
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_43;
L_43 = OrderingStep_get_Comparer_mBB95FA3DACD25E0CD86EAE342F551717B7350F82_inline(L_42, NULL);
RuntimeObject* L_44 = V_12;
RuntimeObject* L_45 = V_13;
NullCheck(L_43);
int32_t L_46;
L_46 = VirtualFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ComparisonAdapter::Compare(System.Object,System.Object) */, L_43, L_44, L_45);
V_14 = L_46;
int32_t L_47 = V_14;
V_16 = (bool)((((int32_t)L_47) < ((int32_t)0))? 1 : 0);
bool L_48 = V_16;
if (!L_48)
{
goto IL_0124_2;
}
}
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_49 = V_8;
NullCheck(L_49);
int32_t L_50;
L_50 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_49, NULL);
V_17 = (bool)((((int32_t)L_50) == ((int32_t)2))? 1 : 0);
bool L_51 = V_17;
if (!L_51)
{
goto IL_0122_2;
}
}
{
V_18 = (bool)0;
goto IL_01f4;
}
IL_0122_2:
{
goto IL_0159_2;
}
IL_0124_2:
{
int32_t L_52 = V_14;
V_19 = (bool)((((int32_t)L_52) > ((int32_t)0))? 1 : 0);
bool L_53 = V_19;
if (!L_53)
{
goto IL_014c_2;
}
}
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_54 = V_8;
NullCheck(L_54);
int32_t L_55;
L_55 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_54, NULL);
V_20 = (bool)((((int32_t)((((int32_t)L_55) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_56 = V_20;
if (!L_56)
{
goto IL_014a_2;
}
}
{
V_18 = (bool)0;
goto IL_01f4;
}
IL_014a_2:
{
goto IL_0159_2;
}
IL_014c_2:
{
}
IL_014d_2:
{
bool L_57;
L_57 = Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39((&V_7), Enumerator_MoveNext_m54A006463735F818D09BD9596C13D63EA0AD8C39_RuntimeMethod_var);
if (L_57)
{
goto IL_007f_2;
}
}
IL_0159_2:
{
goto IL_016a_1;
}
}// end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_016a_1:
{
goto IL_01c5_1;
}
IL_016d_1:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_58 = __this->____activeStep_5;
NullCheck(L_58);
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_59;
L_59 = OrderingStep_get_Comparer_mBB95FA3DACD25E0CD86EAE342F551717B7350F82_inline(L_58, NULL);
RuntimeObject* L_60 = V_0;
RuntimeObject* L_61 = V_3;
NullCheck(L_59);
int32_t L_62;
L_62 = VirtualFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ComparisonAdapter::Compare(System.Object,System.Object) */, L_59, L_60, L_61);
V_21 = L_62;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_63 = __this->____activeStep_5;
NullCheck(L_63);
int32_t L_64;
L_64 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_63, NULL);
if ((!(((uint32_t)L_64) == ((uint32_t)2))))
{
goto IL_0197_1;
}
}
{
int32_t L_65 = V_21;
G_B26_0 = ((((int32_t)L_65) < ((int32_t)0))? 1 : 0);
goto IL_0198_1;
}
IL_0197_1:
{
G_B26_0 = 0;
}
IL_0198_1:
{
V_22 = (bool)G_B26_0;
bool L_66 = V_22;
if (!L_66)
{
goto IL_01a3_1;
}
}
{
V_18 = (bool)0;
goto IL_01f4;
}
IL_01a3_1:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_67 = __this->____activeStep_5;
NullCheck(L_67);
int32_t L_68;
L_68 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_67, NULL);
if ((((int32_t)L_68) == ((int32_t)2)))
{
goto IL_01b8_1;
}
}
{
int32_t L_69 = V_21;
G_B31_0 = ((((int32_t)L_69) > ((int32_t)0))? 1 : 0);
goto IL_01b9_1;
}
IL_01b8_1:
{
G_B31_0 = 0;
}
IL_01b9_1:
{
V_23 = (bool)G_B31_0;
bool L_70 = V_23;
if (!L_70)
{
goto IL_01c4_1;
}
}
{
V_18 = (bool)0;
goto IL_01f4;
}
IL_01c4_1:
{
}
IL_01c5_1:
{
}
IL_01c6_1:
{
RuntimeObject* L_71 = V_3;
V_0 = L_71;
int32_t L_72 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_72, 1));
}
IL_01cd_1:
{
RuntimeObject* L_73 = V_2;
NullCheck(L_73);
bool L_74;
L_74 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_73);
if (L_74)
{
goto IL_0012_1;
}
}
{
goto IL_01ef;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01ef:
{
V_18 = (bool)1;
goto IL_01f4;
}
IL_01f4:
{
bool L_75 = V_18;
return L_75;
}
}
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionOrderedConstraint_GetStringRepresentation_m018DCC953355B063EB869ED56D662FC1C82E941F (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mDCC2E72ECDC759487B69BF608EC7FF466335558A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral218A567F0EA72C0027036BC391D222CFF41E44EB);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralABDB6F268B2879BDB5FCEEB313B2DB8C7F84D019);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC9E5ADF4D6D9BEC67BFE05EB0C3C08FE8D85F140);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
bool V_1 = false;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* V_2 = NULL;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
String_t* V_6 = NULL;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_0, _stringLiteral218A567F0EA72C0027036BC391D222CFF41E44EB, NULL);
V_0 = L_0;
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_1 = __this->____steps_4;
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_mDCC2E72ECDC759487B69BF608EC7FF466335558A_inline(L_1, List_1_get_Count_mDCC2E72ECDC759487B69BF608EC7FF466335558A_RuntimeMethod_var);
V_1 = (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0092;
}
}
{
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_4 = __this->____steps_4;
NullCheck(L_4);
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_5;
L_5 = List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37(L_4, 0, List_1_get_Item_mF9D9E01B2F4633EF5F49B0A5B3E4272E30229B37_RuntimeMethod_var);
V_2 = L_5;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_6 = V_2;
NullCheck(L_6);
String_t* L_7;
L_7 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_6, NULL);
V_3 = (bool)((!(((RuntimeObject*)(String_t*)L_7) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_8 = V_3;
if (!L_8)
{
goto IL_0050;
}
}
{
StringBuilder_t* L_9 = V_0;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_10 = V_2;
NullCheck(L_10);
String_t* L_11;
L_11 = OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline(L_10, NULL);
String_t* L_12;
L_12 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralC9E5ADF4D6D9BEC67BFE05EB0C3C08FE8D85F140, L_11, NULL);
NullCheck(L_9);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_9, L_12, NULL);
}
IL_0050:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_14 = V_2;
NullCheck(L_14);
int32_t L_15;
L_15 = OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline(L_14, NULL);
V_4 = (bool)((((int32_t)L_15) == ((int32_t)2))? 1 : 0);
bool L_16 = V_4;
if (!L_16)
{
goto IL_006b;
}
}
{
StringBuilder_t* L_17 = V_0;
NullCheck(L_17);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteralABDB6F268B2879BDB5FCEEB313B2DB8C7F84D019, NULL);
}
IL_006b:
{
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_19 = V_2;
NullCheck(L_19);
String_t* L_20;
L_20 = OrderingStep_get_ComparerName_m5C6C54BD55587837E34BF10446C99494EC195E1D_inline(L_19, NULL);
V_5 = (bool)((!(((RuntimeObject*)(String_t*)L_20) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_21 = V_5;
if (!L_21)
{
goto IL_0091;
}
}
{
StringBuilder_t* L_22 = V_0;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_23 = V_2;
NullCheck(L_23);
String_t* L_24;
L_24 = OrderingStep_get_ComparerName_m5C6C54BD55587837E34BF10446C99494EC195E1D_inline(L_23, NULL);
String_t* L_25;
L_25 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_24, NULL);
NullCheck(L_22);
StringBuilder_t* L_26;
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_22, L_25, NULL);
}
IL_0091:
{
}
IL_0092:
{
StringBuilder_t* L_27 = V_0;
NullCheck(L_27);
StringBuilder_t* L_28;
L_28 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_27, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL);
StringBuilder_t* L_29 = V_0;
NullCheck(L_29);
String_t* L_30;
L_30 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_29);
V_6 = L_30;
goto IL_00a8;
}
IL_00a8:
{
String_t* L_31 = V_6;
return L_31;
}
}
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint::CreateNextStep(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOrderedConstraint_CreateNextStep_mC66D6EF86D0C402BE11AB3E8C2D3538E2A9AC79E (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m15208ACC5D7CF9CF4BA17492E1F8D204350316C7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___propertyName0;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_1 = (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD*)il2cpp_codegen_object_new(OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD_il2cpp_TypeInfo_var);
NullCheck(L_1);
OrderingStep__ctor_m11228A1730BBB9F45FCE08134315E62565B072B8(L_1, L_0, NULL);
__this->____activeStep_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____activeStep_5), (void*)L_1);
List_1_t07FF79907456BF812CE45BFCE3970B168BC25F02* L_2 = __this->____steps_4;
OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* L_3 = __this->____activeStep_5;
NullCheck(L_2);
List_1_Add_m15208ACC5D7CF9CF4BA17492E1F8D204350316C7_inline(L_2, L_3, List_1_Add_m15208ACC5D7CF9CF4BA17492E1F8D204350316C7_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderingStep__ctor_m11228A1730BBB9F45FCE08134315E62565B072B8 (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___propertyName0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
String_t* L_0 = ___propertyName0;
OrderingStep_set_PropertyName_mC92FC43DC299CBE9D9B4579077DCF6B5E3415F7D_inline(__this, L_0, NULL);
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_1;
L_1 = ComparisonAdapter_get_Default_m744091F5E4EC179D1781D7CD04C8E3B63C38526C(NULL);
OrderingStep_set_Comparer_mA788E45DD94E9302E455686AE00DE2E9E56ECEAD_inline(__this, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_PropertyName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CPropertyNameU3Ek__BackingField_0;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_PropertyName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderingStep_set_PropertyName_mC92FC43DC299CBE9D9B4579077DCF6B5E3415F7D (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CPropertyNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPropertyNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_Direction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CDirectionU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_Direction(NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderDirection)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderingStep_set_Direction_m8B117F56733B7CFED1769A3EB3F1B51D1464852C (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CDirectionU3Ek__BackingField_1 = L_0;
return;
}
}
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_Comparer()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* OrderingStep_get_Comparer_mBB95FA3DACD25E0CD86EAE342F551717B7350F82 (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_0 = __this->___U3CComparerU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_Comparer(NUnit.Framework.Constraints.ComparisonAdapter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderingStep_set_Comparer_mA788E45DD94E9302E455686AE00DE2E9E56ECEAD (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___value0, const RuntimeMethod* method)
{
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_0 = ___value0;
__this->___U3CComparerU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CComparerU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::get_ComparerName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OrderingStep_get_ComparerName_m5C6C54BD55587837E34BF10446C99494EC195E1D (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CComparerNameU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.CollectionOrderedConstraint/OrderingStep::set_ComparerName(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrderingStep_set_ComparerName_mE99C21A0DDDAEE2CCF1FB61120EBCD4D5C29F15B (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CComparerNameU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CComparerNameU3Ek__BackingField_3), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionSubsetConstraint::.ctor(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionSubsetConstraint__ctor_m74ABCECD2ED540CF212391A59D6A9BEA872C596A (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___expected0;
CollectionItemsEqualConstraint__ctor_m6C72F20CFAA36FF162D25A1323466B5BAE0F7DA1(__this, L_0, NULL);
RuntimeObject* L_1 = ___expected0;
__this->____expected_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expected_5), (void*)L_1);
return;
}
}
// System.String NUnit.Framework.Constraints.CollectionSubsetConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionSubsetConstraint_get_DisplayName_mB64DC79F052D59B9D606BA6B896209815AD15D76 (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4F6C6A9C2C189BBF1B8EA231D8AB56C2E6536FD0);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral4F6C6A9C2C189BBF1B8EA231D8AB56C2E6536FD0;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.CollectionSubsetConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CollectionSubsetConstraint_get_Description_m9653D76C6684B9716E57FB0F970D81193FD0FDD6 (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA64150E2CE3231F1B2C8ED8A8E3FD4075EB6F24F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____expected_5;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralA64150E2CE3231F1B2C8ED8A8E3FD4075EB6F24F, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionSubsetConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionSubsetConstraint_Matches_m6982DE7A0610E0749188A35AFB98BE10C415573C (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject* L_0 = __this->____expected_5;
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_1;
L_1 = CollectionItemsEqualConstraint_Tally_m011D3127C5D2409BE46E8AF17918C79BAF9D8E05(__this, L_0, NULL);
RuntimeObject* L_2 = ___actual0;
NullCheck(L_1);
bool L_3;
L_3 = CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0016;
}
IL_0016:
{
bool L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionTally::.ctor(NUnit.Framework.Constraints.NUnitEqualityComparer,System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionTally__ctor_m21CFBFBBC15F27DA0008AE83A1C31DC41F2F8328 (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* ___comparer0, RuntimeObject* ___c1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690(L_0, List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_RuntimeMethod_var);
__this->___list_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___list_0), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_1 = ___comparer0;
__this->___comparer_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_1), (void*)L_1);
RuntimeObject* L_2 = ___c1;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_2);
V_0 = L_3;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0042:
{// begin finally (depth: 1)
{
RuntimeObject* L_4 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_2;
if (!L_5)
{
goto IL_0053;
}
}
{
RuntimeObject* L_6 = V_2;
NullCheck(L_6);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
}
IL_0053:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0038_1;
}
IL_0024_1:
{
RuntimeObject* L_7 = V_0;
NullCheck(L_7);
RuntimeObject* L_8;
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_7);
V_1 = L_8;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_9 = __this->___list_0;
RuntimeObject* L_10 = V_1;
NullCheck(L_9);
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_9, L_10, List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_RuntimeMethod_var);
}
IL_0038_1:
{
RuntimeObject* L_11 = V_0;
NullCheck(L_11);
bool L_12;
L_12 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_11);
if (L_12)
{
goto IL_0024_1;
}
}
{
goto IL_0054;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0054:
{
return;
}
}
// System.Int32 NUnit.Framework.Constraints.CollectionTally::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CollectionTally_get_Count_mD6F314D427AE5132606A1B41120C502ABF3A4E0B (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = __this->___list_0;
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_inline(L_0, List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionTally::ItemsEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_ItemsEqual_mF794AB66B071B9BCCA9B68CB0069FF29989267A8 (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* V_0 = NULL;
bool V_1 = false;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0;
L_0 = Tolerance_get_Default_mBB92F23DF5219A7D3C7FAD65B67DE9162DAFF37A(NULL);
V_0 = L_0;
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_1 = __this->___comparer_1;
RuntimeObject* L_2 = ___expected0;
RuntimeObject* L_3 = ___actual1;
NullCheck(L_1);
bool L_4;
L_4 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(L_1, L_2, L_3, (&V_0), NULL);
V_1 = L_4;
goto IL_0019;
}
IL_0019:
{
bool L_5 = V_1;
return L_5;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionTally::TryRemove(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_TryRemove_mC989A88312447354193CEEFDE394FCADD818D330 (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
{
V_0 = 0;
goto IL_0032;
}
IL_0005:
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_0 = __this->___list_0;
int32_t L_1 = V_0;
NullCheck(L_0);
RuntimeObject* L_2;
L_2 = List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38(L_0, L_1, List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_RuntimeMethod_var);
RuntimeObject* L_3 = ___o0;
bool L_4;
L_4 = CollectionTally_ItemsEqual_mF794AB66B071B9BCCA9B68CB0069FF29989267A8(__this, L_2, L_3, NULL);
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_002e;
}
}
{
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_6 = __this->___list_0;
int32_t L_7 = V_0;
NullCheck(L_6);
List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54(L_6, L_7, List_1_RemoveAt_m54F62297ADEE4D4FDA697F49ED807BF901201B54_RuntimeMethod_var);
V_2 = (bool)1;
goto IL_0048;
}
IL_002e:
{
int32_t L_8 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
}
IL_0032:
{
int32_t L_9 = V_0;
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_10 = __this->___list_0;
NullCheck(L_10);
int32_t L_11;
L_11 = List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_inline(L_10, List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_RuntimeMethod_var);
V_3 = (bool)((((int32_t)L_9) < ((int32_t)L_11))? 1 : 0);
bool L_12 = V_3;
if (L_12)
{
goto IL_0005;
}
}
{
V_2 = (bool)0;
goto IL_0048;
}
IL_0048:
{
bool L_13 = V_2;
return L_13;
}
}
// System.Boolean NUnit.Framework.Constraints.CollectionTally::TryRemove(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
{
RuntimeObject* L_0 = ___c0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_002e:
{// begin finally (depth: 1)
{
RuntimeObject* L_2 = V_0;
V_4 = ((RuntimeObject*)IsInst((RuntimeObject*)L_2, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_3 = V_4;
if (!L_3)
{
goto IL_0042;
}
}
{
RuntimeObject* L_4 = V_4;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_0042:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0024_1;
}
IL_000b_1:
{
RuntimeObject* L_5 = V_0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_5);
V_1 = L_6;
RuntimeObject* L_7 = V_1;
bool L_8;
L_8 = CollectionTally_TryRemove_mC989A88312447354193CEEFDE394FCADD818D330(__this, L_7, NULL);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (!L_9)
{
goto IL_0024_1;
}
}
{
V_3 = (bool)0;
goto IL_0047;
}
IL_0024_1:
{
RuntimeObject* L_10 = V_0;
NullCheck(L_10);
bool L_11;
L_11 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_10);
if (L_11)
{
goto IL_000b_1;
}
}
{
goto IL_0043;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0043:
{
V_3 = (bool)1;
goto IL_0047;
}
IL_0047:
{
bool L_12 = V_3;
return L_12;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.ComparisonAdapter::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ComparisonAdapter_get_Default_m744091F5E4EC179D1781D7CD04C8E3B63C38526C (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* V_0 = NULL;
{
DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725* L_0 = (DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725*)il2cpp_codegen_object_new(DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725_il2cpp_TypeInfo_var);
NullCheck(L_0);
DefaultComparisonAdapter__ctor_m027FF740238502967EE2CEF688BF6C0CEBCD0888(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ComparisonAdapter NUnit.Framework.Constraints.ComparisonAdapter::For(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ComparisonAdapter_For_mCF28A0895277AB45BD066787BA8E470280153E5D (RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* V_0 = NULL;
{
RuntimeObject* L_0 = ___comparer0;
ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE* L_1 = (ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE*)il2cpp_codegen_object_new(ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE_il2cpp_TypeInfo_var);
NullCheck(L_1);
ComparerAdapter__ctor_m40DCF674818ABC97F47860363828FDFF3C45A2FC(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.ComparisonAdapter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparisonAdapter__ctor_m6D6A0A33E6EEE78C748D61F1C367E7A6EC759BE0 (ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ComparisonAdapter/DefaultComparisonAdapter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultComparisonAdapter__ctor_m027FF740238502967EE2CEF688BF6C0CEBCD0888 (DefaultComparisonAdapter_tF0858A18CCCA495DAE60362D6F078A51360F3725* __this, const RuntimeMethod* method)
{
{
NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* L_0;
L_0 = NUnitComparer_get_Default_m4D1974388FE381448C2B50580E53CD5EC443C85F(NULL);
ComparerAdapter__ctor_m40DCF674818ABC97F47860363828FDFF3C45A2FC(__this, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ComparisonAdapter/ComparerAdapter::.ctor(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparerAdapter__ctor_m40DCF674818ABC97F47860363828FDFF3C45A2FC (ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
ComparisonAdapter__ctor_m6D6A0A33E6EEE78C748D61F1C367E7A6EC759BE0(__this, NULL);
RuntimeObject* L_0 = ___comparer0;
__this->___comparer_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_0), (void*)L_0);
return;
}
}
// System.Int32 NUnit.Framework.Constraints.ComparisonAdapter/ComparerAdapter::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComparerAdapter_Compare_m9BC53E8C6A175C0170F729BE91B7FAF78F7BF68D (ComparerAdapter_t1803AD56B3F800BE187F0B08DFC6215EF293CAAE* __this, RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
RuntimeObject* L_0 = __this->___comparer_0;
RuntimeObject* L_1 = ___expected0;
RuntimeObject* L_2 = ___actual1;
NullCheck(L_0);
int32_t L_3;
L_3 = InterfaceFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var, L_0, L_1, L_2);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
int32_t L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ComparisonConstraint::.ctor(System.Object,System.Boolean,System.Boolean,System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparisonConstraint__ctor_m2A4E6025F3219D86FA14532687F481C858722270 (ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* __this, RuntimeObject* ___value0, bool ___lessComparisonResult1, bool ___equalComparisonResult2, bool ___greaterComparisonResult3, String_t* ___predicate4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
s_Il2CppMethodInitialized = true;
}
{
__this->___lessComparisonResult_5 = (bool)0;
__this->___equalComparisonResult_6 = (bool)0;
__this->___greaterComparisonResult_7 = (bool)0;
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_0;
L_0 = ComparisonAdapter_get_Default_m744091F5E4EC179D1781D7CD04C8E3B63C38526C(NULL);
__this->___comparer_8 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_8), (void*)L_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
RuntimeObject* L_3 = ___value0;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_3);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_2, NULL);
RuntimeObject* L_4 = ___value0;
__this->___expected_4 = L_4;
Il2CppCodeGenWriteBarrier((void**)(&__this->___expected_4), (void*)L_4);
bool L_5 = ___lessComparisonResult1;
__this->___lessComparisonResult_5 = L_5;
bool L_6 = ___equalComparisonResult2;
__this->___equalComparisonResult_6 = L_6;
bool L_7 = ___greaterComparisonResult3;
__this->___greaterComparisonResult_7 = L_7;
String_t* L_8 = ___predicate4;
RuntimeObject* L_9 = __this->___expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_10;
L_10 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_9, NULL);
String_t* L_11;
L_11 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_8, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, L_10, NULL);
VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void NUnit.Framework.Constraints.Constraint::set_Description(System.String) */, __this, L_11);
return;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.ComparisonConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ComparisonConstraint_ApplyTo_m2D407995E380F6B0F49E05EAAA40D70C457C436B (ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
int32_t G_B11_0 = 0;
int32_t G_B13_0 = 0;
{
RuntimeObject* L_0 = __this->___expected_4;
V_2 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_001e;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral229BEE113FBCACF7F41DDC83AE77A478BC4B5823)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB339D905726376F3A334344838DECFB8AD39826C)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ComparisonConstraint_ApplyTo_m2D407995E380F6B0F49E05EAAA40D70C457C436B_RuntimeMethod_var)));
}
IL_001e:
{
RuntimeObject* L_3 = ___actual0;
V_3 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_4 = V_3;
if (!L_4)
{
goto IL_0036;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC05CB04295EF034AEF559D9CDA6A7974A9844E00)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ComparisonConstraint_ApplyTo_m2D407995E380F6B0F49E05EAAA40D70C457C436B_RuntimeMethod_var)));
}
IL_0036:
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_6 = __this->___comparer_8;
RuntimeObject* L_7 = __this->___expected_4;
RuntimeObject* L_8 = ___actual0;
NullCheck(L_6);
int32_t L_9;
L_9 = VirtualFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ComparisonAdapter::Compare(System.Object,System.Object) */, L_6, L_7, L_8);
V_0 = L_9;
int32_t L_10 = V_0;
if ((((int32_t)L_10) >= ((int32_t)0)))
{
goto IL_0055;
}
}
{
bool L_11 = __this->___greaterComparisonResult_7;
if (L_11)
{
goto IL_006f;
}
}
IL_0055:
{
int32_t L_12 = V_0;
if (L_12)
{
goto IL_0060;
}
}
{
bool L_13 = __this->___equalComparisonResult_6;
if (L_13)
{
goto IL_006f;
}
}
IL_0060:
{
int32_t L_14 = V_0;
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_006c;
}
}
{
bool L_15 = __this->___lessComparisonResult_5;
G_B11_0 = ((int32_t)(L_15));
goto IL_006d;
}
IL_006c:
{
G_B11_0 = 0;
}
IL_006d:
{
G_B13_0 = G_B11_0;
goto IL_0070;
}
IL_006f:
{
G_B13_0 = 1;
}
IL_0070:
{
V_1 = (bool)G_B13_0;
RuntimeObject* L_16 = ___actual0;
bool L_17 = V_1;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_18 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_18);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_18, __this, L_16, L_17, NULL);
V_4 = L_18;
goto IL_007d;
}
IL_007d:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_19 = V_4;
return L_19;
}
}
// NUnit.Framework.Constraints.ComparisonConstraint NUnit.Framework.Constraints.ComparisonConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* ComparisonConstraint_Using_m08E81AD70954638EC8EE470913F2774FF0DC8FCC (ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* V_0 = NULL;
{
RuntimeObject* L_0 = ___comparer0;
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_1;
L_1 = ComparisonAdapter_For_mCF28A0895277AB45BD066787BA8E470280153E5D(L_0, NULL);
__this->___comparer_8 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_8), (void*)L_1);
V_0 = __this;
goto IL_0011;
}
IL_0011:
{
ComparisonConstraint_tAC88F3EDE7FB6230B062902C5C852B6E81FA5AE2* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.Constraint::.ctor(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Constraint_U3C_ctorU3Eb__1_0_mC5C6EDF36239DBDE028449D0588BC9FAE3FF1CAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lazy_1__ctor_m6267B3BFD3B5D9E5242B8519614EB03C2AACC7E3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___args0;
Constraint_set_Arguments_m20BB02429362F1D7322001837C9751C4C8B772EC_inline(__this, L_0, NULL);
Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C* L_1 = (Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C*)il2cpp_codegen_object_new(Func_1_t367387BB2C476D3F32DB12161B5FDC128DC3231C_il2cpp_TypeInfo_var);
NullCheck(L_1);
Func_1__ctor_m27A68E928C1D9158EAAD261086B9BC424339327B(L_1, __this, (intptr_t)((void*)Constraint_U3C_ctorU3Eb__1_0_mC5C6EDF36239DBDE028449D0588BC9FAE3FF1CAA_RuntimeMethod_var), NULL);
Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4* L_2 = (Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4*)il2cpp_codegen_object_new(Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4_il2cpp_TypeInfo_var);
NullCheck(L_2);
Lazy_1__ctor_m6267B3BFD3B5D9E5242B8519614EB03C2AACC7E3(L_2, L_1, Lazy_1__ctor_m6267B3BFD3B5D9E5242B8519614EB03C2AACC7E3_RuntimeMethod_var);
__this->____displayName_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&__this->____displayName_0), (void*)L_2);
return;
}
}
// System.String NUnit.Framework.Constraints.Constraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint_get_DisplayName_m5F54E75A0D404D16943D5404414415257E6441FE (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Lazy_1_get_Value_m0BDD31125DFBF93B6560F296B0998C21043C072E_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
Lazy_1_t293A7A145893FB5E1FB4759AD6E5C942CFB346D4* L_0 = __this->____displayName_0;
NullCheck(L_0);
String_t* L_1;
L_1 = Lazy_1_get_Value_m0BDD31125DFBF93B6560F296B0998C21043C072E(L_0, Lazy_1_get_Value_m0BDD31125DFBF93B6560F296B0998C21043C072E_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.String NUnit.Framework.Constraints.Constraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint_get_Description_m17D08FF5DBF4882E7B9F1A6FC261185E858A80DD (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CDescriptionU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.Constraint::set_Description(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Constraint_set_Description_m8DBE479E7D2911E9302F604244539098BBC66040 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CDescriptionU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CDescriptionU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// System.Object[] NUnit.Framework.Constraints.Constraint::get_Arguments()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.Constraint::set_Arguments(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Constraint_set_Arguments_m20BB02429362F1D7322001837C9751C4C8B772EC (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_2), (void*)L_0);
return;
}
}
// NUnit.Framework.Constraints.ConstraintBuilder NUnit.Framework.Constraints.Constraint::get_Builder()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = __this->___U3CBuilderU3Ek__BackingField_3;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.Constraint::set_Builder(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Constraint_set_Builder_mFFC682286FD5B64F84D09B54FD1E85F4BD89C780 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___value0, const RuntimeMethod* method)
{
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = ___value0;
__this->___U3CBuilderU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBuilderU3Ek__BackingField_3), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Constraints.Constraint::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint_ToString_mF7645FDD02E42CBEE83ACDEDCF95AFE1A220237F (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral92073D72022064ECA0E2ACE6E9164444F1BCA2D5);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
String_t* G_B3_0 = NULL;
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(20 /* System.String NUnit.Framework.Constraints.Constraint::GetStringRepresentation() */, __this);
V_0 = L_0;
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1;
L_1 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
if (!L_1)
{
goto IL_001d;
}
}
{
String_t* L_2 = V_0;
String_t* L_3;
L_3 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral92073D72022064ECA0E2ACE6E9164444F1BCA2D5, L_2, NULL);
G_B3_0 = L_3;
goto IL_001e;
}
IL_001d:
{
String_t* L_4 = V_0;
G_B3_0 = L_4;
}
IL_001e:
{
V_1 = G_B3_0;
goto IL_0021;
}
IL_0021:
{
String_t* L_5 = V_1;
return L_5;
}
}
// System.String NUnit.Framework.Constraints.Constraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint_GetStringRepresentation_m6AF8B4FE18FB8C8870B7DFDBEC0E097BF9D27C20 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject* V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
StringBuilder_t* L_1 = V_0;
NullCheck(L_1);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_1, _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11, NULL);
StringBuilder_t* L_3 = V_0;
String_t* L_4;
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String NUnit.Framework.Constraints.Constraint::get_DisplayName() */, __this);
NullCheck(L_4);
String_t* L_5;
L_5 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_4, NULL);
NullCheck(L_3);
StringBuilder_t* L_6;
L_6 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_3, L_5, NULL);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7;
L_7 = Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF_inline(__this, NULL);
V_1 = L_7;
V_2 = 0;
goto IL_0054;
}
IL_0031:
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = V_1;
int32_t L_9 = V_2;
NullCheck(L_8);
int32_t L_10 = L_9;
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
V_3 = L_11;
StringBuilder_t* L_12 = V_0;
NullCheck(L_12);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_12, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
StringBuilder_t* L_14 = V_0;
RuntimeObject* L_15 = V_3;
String_t* L_16;
L_16 = Constraint__displayable_mDFD74EB0BA73DEFE8014D98D56EC818081A2FEF1(L_15, NULL);
NullCheck(L_14);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_14, L_16, NULL);
int32_t L_18 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_0054:
{
int32_t L_19 = V_2;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_1;
NullCheck(L_20);
if ((((int32_t)L_19) < ((int32_t)((int32_t)(((RuntimeArray*)L_20)->max_length)))))
{
goto IL_0031;
}
}
{
StringBuilder_t* L_21 = V_0;
NullCheck(L_21);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_21, _stringLiteralEF8AE9E6CBCFDABA932FBEB4C85964F450F724F5, NULL);
StringBuilder_t* L_23 = V_0;
NullCheck(L_23);
String_t* L_24;
L_24 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_23);
V_4 = L_24;
goto IL_0070;
}
IL_0070:
{
String_t* L_25 = V_4;
return L_25;
}
}
// System.String NUnit.Framework.Constraints.Constraint::_displayable(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint__displayable_mDFD74EB0BA73DEFE8014D98D56EC818081A2FEF1 (RuntimeObject* ___o0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49A5AAB83859C60FC692064F7CA72853E8B6B189);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
String_t* G_B5_0 = NULL;
{
RuntimeObject* L_0 = ___o0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0011;
}
}
{
V_2 = _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
goto IL_003e;
}
IL_0011:
{
RuntimeObject* L_2 = ___o0;
if (((String_t*)IsInstSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
G_B5_0 = _stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94;
goto IL_0025;
}
IL_0020:
{
G_B5_0 = _stringLiteral49A5AAB83859C60FC692064F7CA72853E8B6B189;
}
IL_0025:
{
V_0 = G_B5_0;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_3;
L_3 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_4 = V_0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = L_5;
RuntimeObject* L_7 = ___o0;
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_7);
String_t* L_8;
L_8 = String_Format_mBFACD7FE8657957CE3D5DA54D519AB418AF421E7(L_3, L_4, L_6, NULL);
V_2 = L_8;
goto IL_003e;
}
IL_003e:
{
String_t* L_9 = V_2;
return L_9;
}
}
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.Constraint::op_BitwiseAnd(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* Constraint_op_BitwiseAnd_mDF45552C62F37CEEDE991D029754E0E283B705C9 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___left0, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___right1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* V_2 = NULL;
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_0 = ___left0;
V_0 = L_0;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1 = ___right1;
V_1 = L_1;
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_2);
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_4);
AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* L_6 = (AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C*)il2cpp_codegen_object_new(AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C_il2cpp_TypeInfo_var);
NullCheck(L_6);
AndConstraint__ctor_m8F7D63F6B6CDED1C979E60A87A796F10BC663A91(L_6, L_3, L_5, NULL);
V_2 = L_6;
goto IL_0019;
}
IL_0019:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_7 = V_2;
return L_7;
}
}
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.Constraint::op_BitwiseOr(NUnit.Framework.Constraints.Constraint,NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* Constraint_op_BitwiseOr_mD42154EBD5AAB289CBF3F0F92B507225EE228269 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___left0, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___right1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* V_2 = NULL;
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_0 = ___left0;
V_0 = L_0;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1 = ___right1;
V_1 = L_1;
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_2);
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_4);
OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D* L_6 = (OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D*)il2cpp_codegen_object_new(OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D_il2cpp_TypeInfo_var);
NullCheck(L_6);
OrConstraint__ctor_m9F1EBB58248F30BF76A1022CEDBE0551A7C59F8F(L_6, L_3, L_5, NULL);
V_2 = L_6;
goto IL_0019;
}
IL_0019:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_7 = V_2;
return L_7;
}
}
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.Constraint::op_LogicalNot(NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* Constraint_op_LogicalNot_mD358192F7227668A47DC33F195BA0FB73B93180B (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* V_1 = NULL;
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_0 = ___constraint0;
V_0 = L_0;
RuntimeObject* L_1 = V_0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_1);
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_3 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_3);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_3, L_2, NULL);
V_1 = L_3;
goto IL_0011;
}
IL_0011:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_4 = V_1;
return L_4;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.Constraint::get_And()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Constraint_get_And_m37D234FCFAC82BFC14026FFEC0468CB0D4896967 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* V_0 = NULL;
bool V_1 = false;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_2 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0;
L_0 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
V_0 = L_0;
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0020;
}
}
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_3 = (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8*)il2cpp_codegen_object_new(ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var);
NullCheck(L_3);
ConstraintBuilder__ctor_m2C78200980B6F0C14493B50BA1C91827DBDAD429(L_3, NULL);
V_0 = L_3;
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_4 = V_0;
NullCheck(L_4);
ConstraintBuilder_Append_m3DD7FC6402710ADD58D6A21A546090FC71896589(L_4, __this, NULL);
}
IL_0020:
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_5 = V_0;
AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF* L_6 = (AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF*)il2cpp_codegen_object_new(AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF_il2cpp_TypeInfo_var);
NullCheck(L_6);
AndOperator__ctor_m5B7DFD6B2B3E2CACC2B7CFE8B6CDE53C8F88E312(L_6, NULL);
NullCheck(L_5);
ConstraintBuilder_Append_m4AEA43FC6CF6333A9B6501CA2E5871219346F061(L_5, L_6, NULL);
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_7 = V_0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_8 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_8);
ConstraintExpression__ctor_m658096F29E59B967D5D410B0CF1A01AF6E296C2D(L_8, L_7, NULL);
V_2 = L_8;
goto IL_0035;
}
IL_0035:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_9 = V_2;
return L_9;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.Constraint::get_With()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Constraint_get_With_m23CFD5BFC4F880D18C3036D42AF7283A44E88E1C (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0;
L_0 = Constraint_get_And_m37D234FCFAC82BFC14026FFEC0468CB0D4896967(__this, NULL);
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.Constraint::get_Or()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* Constraint_get_Or_m02E8D381D1EEA144A829EB2895AFEA3FD014859E (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* V_0 = NULL;
bool V_1 = false;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_2 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0;
L_0 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
V_0 = L_0;
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0020;
}
}
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_3 = (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8*)il2cpp_codegen_object_new(ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var);
NullCheck(L_3);
ConstraintBuilder__ctor_m2C78200980B6F0C14493B50BA1C91827DBDAD429(L_3, NULL);
V_0 = L_3;
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_4 = V_0;
NullCheck(L_4);
ConstraintBuilder_Append_m3DD7FC6402710ADD58D6A21A546090FC71896589(L_4, __this, NULL);
}
IL_0020:
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_5 = V_0;
OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B* L_6 = (OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B*)il2cpp_codegen_object_new(OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B_il2cpp_TypeInfo_var);
NullCheck(L_6);
OrOperator__ctor_m970F375DFA2B6C2344A5FDDF071E52C41CDDD24F(L_6, NULL);
NullCheck(L_5);
ConstraintBuilder_Append_m4AEA43FC6CF6333A9B6501CA2E5871219346F061(L_5, L_6, NULL);
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_7 = V_0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_8 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_8);
ConstraintExpression__ctor_m658096F29E59B967D5D410B0CF1A01AF6E296C2D(L_8, L_7, NULL);
V_2 = L_8;
goto IL_0035;
}
IL_0035:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_9 = V_2;
return L_9;
}
}
// NUnit.Framework.Constraints.DelayedConstraint NUnit.Framework.Constraints.Constraint::After(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* Constraint_After_m6918D7D33338A1F416EFA254D5ECBD59964051ED (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, int32_t ___delayInMilliseconds0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* V_1 = NULL;
RuntimeObject* G_B3_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0;
L_0 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1;
L_1 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38(L_1, NULL);
G_B3_0 = L_2;
goto IL_0019;
}
IL_0016:
{
V_0 = __this;
RuntimeObject* L_3 = V_0;
G_B3_0 = L_3;
}
IL_0019:
{
int32_t L_4 = ___delayInMilliseconds0;
DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* L_5 = (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9*)il2cpp_codegen_object_new(DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9_il2cpp_TypeInfo_var);
NullCheck(L_5);
DelayedConstraint__ctor_m66E2DE197A493879B38BD86D67F7943271E702D3(L_5, G_B3_0, L_4, NULL);
V_1 = L_5;
goto IL_0022;
}
IL_0022:
{
DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* L_6 = V_1;
return L_6;
}
}
// NUnit.Framework.Constraints.DelayedConstraint NUnit.Framework.Constraints.Constraint::After(System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* Constraint_After_mDC6BF64702962F27E752B038620A0C224EB89919 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, int32_t ___delayInMilliseconds0, int32_t ___pollingInterval1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* V_1 = NULL;
RuntimeObject* G_B3_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0;
L_0 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1;
L_1 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38(L_1, NULL);
G_B3_0 = L_2;
goto IL_0019;
}
IL_0016:
{
V_0 = __this;
RuntimeObject* L_3 = V_0;
G_B3_0 = L_3;
}
IL_0019:
{
int32_t L_4 = ___delayInMilliseconds0;
int32_t L_5 = ___pollingInterval1;
DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* L_6 = (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9*)il2cpp_codegen_object_new(DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9_il2cpp_TypeInfo_var);
NullCheck(L_6);
DelayedConstraint__ctor_mE85122D6222B1C8D526565D623F990134B70253B(L_6, G_B3_0, L_4, L_5, NULL);
V_1 = L_6;
goto IL_0023;
}
IL_0023:
{
DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* L_7 = V_1;
return L_7;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.Constraint::NUnit.Framework.Constraints.IResolveConstraint.Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Constraint_NUnit_Framework_Constraints_IResolveConstraint_Resolve_mF974194CC603C3FAFF61A4D6133F8E36D62FCD3F (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
RuntimeObject* G_B3_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0;
L_0 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
if (!L_0)
{
goto IL_0016;
}
}
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1;
L_1 = Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline(__this, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38(L_1, NULL);
G_B3_0 = L_2;
goto IL_0019;
}
IL_0016:
{
V_0 = __this;
RuntimeObject* L_3 = V_0;
G_B3_0 = L_3;
}
IL_0019:
{
V_1 = G_B3_0;
goto IL_001c;
}
IL_001c:
{
RuntimeObject* L_4 = V_1;
return L_4;
}
}
// System.String NUnit.Framework.Constraints.Constraint::<.ctor>b__1_0()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Constraint_U3C_ctorU3Eb__1_0_mC5C6EDF36239DBDE028449D0588BC9FAE3FF1CAA (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral849CFCD5BCF79B0504739C9AE6A6D1B43B68D860);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
String_t* V_4 = NULL;
{
Type_t* L_0;
L_0 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
V_0 = L_0;
Type_t* L_1 = V_0;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_1);
V_1 = L_2;
Type_t* L_3 = V_0;
Type_t* L_4;
L_4 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_3, NULL);
NullCheck(L_4);
bool L_5;
L_5 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_4);
V_2 = L_5;
bool L_6 = V_2;
if (!L_6)
{
goto IL_002e;
}
}
{
String_t* L_7 = V_1;
String_t* L_8 = V_1;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
NullCheck(L_7);
String_t* L_10;
L_10 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_7, 0, ((int32_t)il2cpp_codegen_subtract(L_9, 2)), NULL);
V_1 = L_10;
}
IL_002e:
{
String_t* L_11 = V_1;
NullCheck(L_11);
bool L_12;
L_12 = String_EndsWith_m5E5D307CA6AEB7C08CE782B4693B19D07ADC9075(L_11, _stringLiteral849CFCD5BCF79B0504739C9AE6A6D1B43B68D860, 4, NULL);
V_3 = L_12;
bool L_13 = V_3;
if (!L_13)
{
goto IL_004f;
}
}
{
String_t* L_14 = V_1;
String_t* L_15 = V_1;
NullCheck(L_15);
int32_t L_16;
L_16 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_15, NULL);
NullCheck(L_14);
String_t* L_17;
L_17 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_14, 0, ((int32_t)il2cpp_codegen_subtract(L_16, ((int32_t)10))), NULL);
V_1 = L_17;
}
IL_004f:
{
String_t* L_18 = V_1;
V_4 = L_18;
goto IL_0054;
}
IL_0054:
{
String_t* L_19 = V_4;
return L_19;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder__ctor_m2C78200980B6F0C14493B50BA1C91827DBDAD429 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_0 = (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD*)il2cpp_codegen_object_new(OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD_il2cpp_TypeInfo_var);
NullCheck(L_0);
OperatorStack__ctor_m45A8C18E9F410702D166A9613BC0DD6563A7AC80(L_0, __this, NULL);
__this->___ops_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___ops_0), (void*)L_0);
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_1 = (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970*)il2cpp_codegen_object_new(ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970_il2cpp_TypeInfo_var);
NullCheck(L_1);
ConstraintStack__ctor_m012B864A0BC108F9100C8B5C1015ADBF41492680(L_1, __this, NULL);
__this->___constraints_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___constraints_1), (void*)L_1);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::Append(NUnit.Framework.Constraints.ConstraintOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_Append_m4AEA43FC6CF6333A9B6501CA2E5871219346F061 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___op0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_0 = ___op0;
RuntimeObject* L_1 = __this->___lastPushed_2;
NullCheck(L_0);
ConstraintOperator_set_LeftContext_m1C80FAF18DD613F5EB0DB47BC3F1C50E878BD8D9(L_0, L_1, NULL);
RuntimeObject* L_2 = __this->___lastPushed_2;
V_0 = (bool)((!(((RuntimeObject*)(ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)IsInstClass((RuntimeObject*)L_2, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0028;
}
}
{
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_4 = ___op0;
ConstraintBuilder_SetTopOperatorRightContext_m021C6C966E1914EE2946B85891BF40CD1D5465BF(__this, L_4, NULL);
}
IL_0028:
{
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_5 = ___op0;
NullCheck(L_5);
int32_t L_6;
L_6 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_LeftPrecedence() */, L_5);
ConstraintBuilder_ReduceOperatorStack_m390144A03B03D0761638507303A8896F020F0C7E(__this, L_6, NULL);
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_7 = __this->___ops_0;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_8 = ___op0;
NullCheck(L_7);
OperatorStack_Push_m401FC500B438BE28558B02F1F48495CAD758DBFB(L_7, L_8, NULL);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_9 = ___op0;
__this->___lastPushed_2 = L_9;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastPushed_2), (void*)L_9);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::Append(NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_Append_m3DD7FC6402710ADD58D6A21A546090FC71896589 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = __this->___lastPushed_2;
V_0 = (bool)((!(((RuntimeObject*)(ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)IsInstClass((RuntimeObject*)L_0, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2 = ___constraint0;
ConstraintBuilder_SetTopOperatorRightContext_m021C6C966E1914EE2946B85891BF40CD1D5465BF(__this, L_2, NULL);
}
IL_001b:
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_3 = __this->___constraints_1;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_4 = ___constraint0;
NullCheck(L_3);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_3, L_4, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_5 = ___constraint0;
__this->___lastPushed_2 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___lastPushed_2), (void*)L_5);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_6 = ___constraint0;
NullCheck(L_6);
Constraint_set_Builder_mFFC682286FD5B64F84D09B54FD1E85F4BD89C780_inline(L_6, __this, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::SetTopOperatorRightContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_SetTopOperatorRightContext_m021C6C966E1914EE2946B85891BF40CD1D5465BF (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, RuntimeObject* ___rightContext0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* V_2 = NULL;
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_0 = __this->___ops_0;
NullCheck(L_0);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_1;
L_1 = OperatorStack_get_Top_mCDA04D143A9A3DADC7D1C46F2D05C4DF1205547E(L_0, NULL);
NullCheck(L_1);
int32_t L_2;
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_LeftPrecedence() */, L_1);
V_0 = L_2;
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_3 = __this->___ops_0;
NullCheck(L_3);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_4;
L_4 = OperatorStack_get_Top_mCDA04D143A9A3DADC7D1C46F2D05C4DF1205547E(L_3, NULL);
RuntimeObject* L_5 = ___rightContext0;
NullCheck(L_4);
ConstraintOperator_set_RightContext_m228AF815B16151EF8C21233DAF59B762C3EAB812(L_4, L_5, NULL);
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_6 = __this->___ops_0;
NullCheck(L_6);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_7;
L_7 = OperatorStack_get_Top_mCDA04D143A9A3DADC7D1C46F2D05C4DF1205547E(L_6, NULL);
NullCheck(L_7);
int32_t L_8;
L_8 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_LeftPrecedence() */, L_7);
int32_t L_9 = V_0;
V_1 = (bool)((((int32_t)L_8) > ((int32_t)L_9))? 1 : 0);
bool L_10 = V_1;
if (!L_10)
{
goto IL_0063;
}
}
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_11 = __this->___ops_0;
NullCheck(L_11);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_12;
L_12 = OperatorStack_Pop_mA9A5A055AB2D4FBA6537FA2AC4CBE4FABFA8803B(L_11, NULL);
V_2 = L_12;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_13 = V_2;
NullCheck(L_13);
int32_t L_14;
L_14 = VirtualFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_LeftPrecedence() */, L_13);
ConstraintBuilder_ReduceOperatorStack_m390144A03B03D0761638507303A8896F020F0C7E(__this, L_14, NULL);
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_15 = __this->___ops_0;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_16 = V_2;
NullCheck(L_15);
OperatorStack_Push_m401FC500B438BE28558B02F1F48495CAD758DBFB(L_15, L_16, NULL);
}
IL_0063:
{
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintBuilder::ReduceOperatorStack(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintBuilder_ReduceOperatorStack_m390144A03B03D0761638507303A8896F020F0C7E (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, int32_t ___targetPrecedence0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B5_0 = 0;
{
goto IL_001a;
}
IL_0003:
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_0 = __this->___ops_0;
NullCheck(L_0);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_1;
L_1 = OperatorStack_Pop_mA9A5A055AB2D4FBA6537FA2AC4CBE4FABFA8803B(L_0, NULL);
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_2 = __this->___constraints_1;
NullCheck(L_1);
VirtualActionInvoker1< ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* >::Invoke(6 /* System.Void NUnit.Framework.Constraints.ConstraintOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack) */, L_1, L_2);
}
IL_001a:
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_3 = __this->___ops_0;
NullCheck(L_3);
bool L_4;
L_4 = OperatorStack_get_Empty_m2C9D88220796A44B5E4B56629C42D5E1436150D7(L_3, NULL);
if (L_4)
{
goto IL_003c;
}
}
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_5 = __this->___ops_0;
NullCheck(L_5);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_6;
L_6 = OperatorStack_get_Top_mCDA04D143A9A3DADC7D1C46F2D05C4DF1205547E(L_5, NULL);
NullCheck(L_6);
int32_t L_7;
L_7 = VirtualFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_RightPrecedence() */, L_6);
int32_t L_8 = ___targetPrecedence0;
G_B5_0 = ((((int32_t)L_7) < ((int32_t)L_8))? 1 : 0);
goto IL_003d;
}
IL_003c:
{
G_B5_0 = 0;
}
IL_003d:
{
V_0 = (bool)G_B5_0;
bool L_9 = V_0;
if (L_9)
{
goto IL_0003;
}
}
{
return;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ConstraintBuilder::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38 (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, const RuntimeMethod* method)
{
bool V_0 = false;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* V_1 = NULL;
bool V_2 = false;
RuntimeObject* V_3 = NULL;
{
bool L_0;
L_0 = ConstraintBuilder_get_IsResolvable_m6B878CA522521D3D80CAFAAB244DA98DB8AC242A(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0019;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_2);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F34EB87CC853F2BABD8D6FF1807759DAE03B57D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38_RuntimeMethod_var)));
}
IL_0019:
{
goto IL_0036;
}
IL_001b:
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_3 = __this->___ops_0;
NullCheck(L_3);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_4;
L_4 = OperatorStack_Pop_mA9A5A055AB2D4FBA6537FA2AC4CBE4FABFA8803B(L_3, NULL);
V_1 = L_4;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_5 = V_1;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_6 = __this->___constraints_1;
NullCheck(L_5);
VirtualActionInvoker1< ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* >::Invoke(6 /* System.Void NUnit.Framework.Constraints.ConstraintOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack) */, L_5, L_6);
}
IL_0036:
{
OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* L_7 = __this->___ops_0;
NullCheck(L_7);
bool L_8;
L_8 = OperatorStack_get_Empty_m2C9D88220796A44B5E4B56629C42D5E1436150D7(L_7, NULL);
V_2 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_2;
if (L_9)
{
goto IL_001b;
}
}
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_10 = __this->___constraints_1;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_10, NULL);
V_3 = L_11;
goto IL_0056;
}
IL_0056:
{
RuntimeObject* L_12 = V_3;
return L_12;
}
}
// System.Boolean NUnit.Framework.Constraints.ConstraintBuilder::get_IsResolvable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstraintBuilder_get_IsResolvable_m6B878CA522521D3D80CAFAAB244DA98DB8AC242A (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = __this->___lastPushed_2;
if (((Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09*)IsInstClass((RuntimeObject*)L_0, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09_il2cpp_TypeInfo_var)))
{
goto IL_001e;
}
}
{
RuntimeObject* L_1 = __this->___lastPushed_2;
G_B3_0 = ((!(((RuntimeObject*)(SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88*)((SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88*)IsInstClass((RuntimeObject*)L_1, SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_001f;
}
IL_001e:
{
G_B3_0 = 1;
}
IL_001f:
{
V_0 = (bool)G_B3_0;
goto IL_0022;
}
IL_0022:
{
bool L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatorStack__ctor_m45A8C18E9F410702D166A9613BC0DD6563A7AC80 (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m417228ADA55AAA37AAEB76CE81CF1CB882D0A9E0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* L_0 = (Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4*)il2cpp_codegen_object_new(Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4_il2cpp_TypeInfo_var);
NullCheck(L_0);
Stack_1__ctor_m417228ADA55AAA37AAEB76CE81CF1CB882D0A9E0(L_0, Stack_1__ctor_m417228ADA55AAA37AAEB76CE81CF1CB882D0A9E0_RuntimeMethod_var);
__this->___stack_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stack_0), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OperatorStack_get_Empty_m2C9D88220796A44B5E4B56629C42D5E1436150D7 (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m759E43094D51CEEAC594F24C73E6A177ADE6F1F8_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* L_0 = __this->___stack_0;
NullCheck(L_0);
int32_t L_1;
L_1 = Stack_1_get_Count_m759E43094D51CEEAC594F24C73E6A177ADE6F1F8_inline(L_0, Stack_1_get_Count_m759E43094D51CEEAC594F24C73E6A177ADE6F1F8_RuntimeMethod_var);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
goto IL_0012;
}
IL_0012:
{
bool L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintOperator NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::get_Top()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* OperatorStack_get_Top_mCDA04D143A9A3DADC7D1C46F2D05C4DF1205547E (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Peek_mF52F0E49669CF420595F5F74F6B80FA5E8055CEC_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* V_0 = NULL;
{
Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* L_0 = __this->___stack_0;
NullCheck(L_0);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_1;
L_1 = Stack_1_Peek_mF52F0E49669CF420595F5F74F6B80FA5E8055CEC(L_0, Stack_1_Peek_mF52F0E49669CF420595F5F74F6B80FA5E8055CEC_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::Push(NUnit.Framework.Constraints.ConstraintOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OperatorStack_Push_m401FC500B438BE28558B02F1F48495CAD758DBFB (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___op0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m1BC905FC33ABA40AEF62852744CD07AE0D52821C_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* L_0 = __this->___stack_0;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_1 = ___op0;
NullCheck(L_0);
Stack_1_Push_m1BC905FC33ABA40AEF62852744CD07AE0D52821C(L_0, L_1, Stack_1_Push_m1BC905FC33ABA40AEF62852744CD07AE0D52821C_RuntimeMethod_var);
return;
}
}
// NUnit.Framework.Constraints.ConstraintOperator NUnit.Framework.Constraints.ConstraintBuilder/OperatorStack::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* OperatorStack_Pop_mA9A5A055AB2D4FBA6537FA2AC4CBE4FABFA8803B (OperatorStack_t4EBA95B5DC78FCA8D5FD2426456093156A1D72AD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_mA493AF1F6B7B1A262D1A33718DEE4722C25AD491_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* V_0 = NULL;
{
Stack_1_tD24D8947650C6308FE46FCBC6A3A1155D578A5C4* L_0 = __this->___stack_0;
NullCheck(L_0);
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_1;
L_1 = Stack_1_Pop_mA493AF1F6B7B1A262D1A33718DEE4722C25AD491(L_0, Stack_1_Pop_mA493AF1F6B7B1A262D1A33718DEE4722C25AD491_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintStack__ctor_m012B864A0BC108F9100C8B5C1015ADBF41492680 (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m77D3EF7330A819878849329FC1E7FD2B014D56A2_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t37425C539A9709EDA6949A2DC639156708273E04_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* L_0 = (Stack_1_t37425C539A9709EDA6949A2DC639156708273E04*)il2cpp_codegen_object_new(Stack_1_t37425C539A9709EDA6949A2DC639156708273E04_il2cpp_TypeInfo_var);
NullCheck(L_0);
Stack_1__ctor_m77D3EF7330A819878849329FC1E7FD2B014D56A2(L_0, Stack_1__ctor_m77D3EF7330A819878849329FC1E7FD2B014D56A2_RuntimeMethod_var);
__this->___stack_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___stack_0), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_1 = ___builder0;
__this->___builder_1 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___builder_1), (void*)L_1);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstraintStack_get_Empty_m8F5D34236634A52E580A5D2DA09AAF8EDC54993D (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_get_Count_m7E137C56D50FB9A0908353B2137B66BC15CE9825_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* L_0 = __this->___stack_0;
NullCheck(L_0);
int32_t L_1;
L_1 = Stack_1_get_Count_m7E137C56D50FB9A0908353B2137B66BC15CE9825_inline(L_0, Stack_1_get_Count_m7E137C56D50FB9A0908353B2137B66BC15CE9825_RuntimeMethod_var);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
goto IL_0012;
}
IL_0012:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::Push(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Push_m8CCEEEEFF52093A0B8B1A826E12295719E5FD8D6_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
{
Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* L_0 = __this->___stack_0;
RuntimeObject* L_1 = ___constraint0;
NullCheck(L_0);
Stack_1_Push_m8CCEEEEFF52093A0B8B1A826E12295719E5FD8D6(L_0, L_1, Stack_1_Push_m8CCEEEEFF52093A0B8B1A826E12295719E5FD8D6_RuntimeMethod_var);
RuntimeObject* L_2 = ___constraint0;
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_3 = __this->___builder_1;
NullCheck(L_2);
InterfaceActionInvoker1< ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* >::Invoke(4 /* System.Void NUnit.Framework.Constraints.IConstraint::set_Builder(NUnit.Framework.Constraints.ConstraintBuilder) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_2, L_3);
return;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack::Pop()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F (ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_Pop_m38909755BD9020E7D080FB5EA2FE9C6FA109342D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
Stack_1_t37425C539A9709EDA6949A2DC639156708273E04* L_0 = __this->___stack_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = Stack_1_Pop_m38909755BD9020E7D080FB5EA2FE9C6FA109342D(L_0, Stack_1_Pop_m38909755BD9020E7D080FB5EA2FE9C6FA109342D_RuntimeMethod_var);
V_0 = L_1;
RuntimeObject* L_2 = V_0;
NullCheck(L_2);
InterfaceActionInvoker1< ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* >::Invoke(4 /* System.Void NUnit.Framework.Constraints.IConstraint::set_Builder(NUnit.Framework.Constraints.ConstraintBuilder) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_2, (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8*)NULL);
RuntimeObject* L_3 = V_0;
V_1 = L_3;
goto IL_0019;
}
IL_0019:
{
RuntimeObject* L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ConstraintExpression::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = (ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8*)il2cpp_codegen_object_new(ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintBuilder__ctor_m2C78200980B6F0C14493B50BA1C91827DBDAD429(L_0, NULL);
__this->___builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___builder_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintExpression::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintExpression__ctor_m658096F29E59B967D5D410B0CF1A01AF6E296C2D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = ___builder0;
__this->___builder_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___builder_0), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Constraints.ConstraintExpression::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConstraintExpression_ToString_mA9ED142E8176A095844BD43584B032C5784F7487 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = __this->___builder_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38(L_0, NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1);
V_0 = L_2;
goto IL_0014;
}
IL_0014:
{
String_t* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Append(NUnit.Framework.Constraints.ConstraintOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* ___op0, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = __this->___builder_0;
ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* L_1 = ___op0;
NullCheck(L_0);
ConstraintBuilder_Append_m4AEA43FC6CF6333A9B6501CA2E5871219346F061(L_0, L_1, NULL);
V_0 = __this;
goto IL_0012;
}
IL_0012:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Append(NUnit.Framework.Constraints.SelfResolvingOperator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Append_mEF8C01DE3DF9C4C3C958B0819B6A3071C7C6B74E (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88* ___op0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = __this->___builder_0;
SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88* L_1 = ___op0;
NullCheck(L_0);
ConstraintBuilder_Append_m4AEA43FC6CF6333A9B6501CA2E5871219346F061(L_0, L_1, NULL);
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_2 = __this->___builder_0;
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_3 = (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09*)il2cpp_codegen_object_new(ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09_il2cpp_TypeInfo_var);
NullCheck(L_3);
ResolvableConstraintExpression__ctor_mD39B1C0B4ABC4BBACF4950782670D3C970CE6D3C(L_3, L_2, NULL);
V_0 = L_3;
goto IL_001c;
}
IL_001c:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.ConstraintExpression::Append(NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___constraint0, const RuntimeMethod* method)
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* V_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = __this->___builder_0;
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1 = ___constraint0;
NullCheck(L_0);
ConstraintBuilder_Append_m3DD7FC6402710ADD58D6A21A546090FC71896589(L_0, L_1, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2 = ___constraint0;
V_0 = L_2;
goto IL_0012;
}
IL_0012:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0* L_0 = (NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0*)il2cpp_codegen_object_new(NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0_il2cpp_TypeInfo_var);
NullCheck(L_0);
NotOperator__ctor_m6980C91768CB5EE95C316E6A3DE4B262A7515022(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_No()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_No_mDF1DC31EAC37328A0BB339FDB9B064C6AB49B13C (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0* L_0 = (NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0*)il2cpp_codegen_object_new(NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0_il2cpp_TypeInfo_var);
NullCheck(L_0);
NotOperator__ctor_m6980C91768CB5EE95C316E6A3DE4B262A7515022(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_All_mB38BB0EBF3632009C1874B89E50CA229113CC1E4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059* L_0 = (AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059*)il2cpp_codegen_object_new(AllOperator_tC1A5E9775B4EA0559890BAC277788C1D430E9059_il2cpp_TypeInfo_var);
NullCheck(L_0);
AllOperator__ctor_m790A066BBF9419FBBF2BE1E9008B7231C4E9C2BB(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Some()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_Some_m145FEDB09E2AD54E902E30E6FA3CDCF2DA26A203 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93* L_0 = (SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93*)il2cpp_codegen_object_new(SomeOperator_t7C5A90AE2BD27DB9B4C14AA70F6C56F393A3FC93_il2cpp_TypeInfo_var);
NullCheck(L_0);
SomeOperator__ctor_mF2D31662A38F365C99421B395A5290129F7C8AE2(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_None_m8C061D8303D4C302F2EA2392A686121806459C8A (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F* L_0 = (NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F*)il2cpp_codegen_object_new(NoneOperator_t50C238C691FCB689BCD6CCA5EAC53A1BB3B9DA2F_il2cpp_TypeInfo_var);
NullCheck(L_0);
NoneOperator__ctor_m758E804DCEE1A1C5CBAE6C819F7F14A36A00220D(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Exactly(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_Exactly_m2443B956E00B0107012F241928717C053288C884 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, int32_t ___expectedCount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
int32_t L_0 = ___expectedCount0;
ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929* L_1 = (ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929*)il2cpp_codegen_object_new(ExactCountOperator_t47630B419C0D94CC941A40D7AA2A98F62850D929_il2cpp_TypeInfo_var);
NullCheck(L_1);
ExactCountOperator__ctor_m2659ECF80F5C4A940C3B568DF7034B119D726512(L_1, L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2;
L_2 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
String_t* L_0 = ___name0;
PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B* L_1 = (PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B*)il2cpp_codegen_object_new(PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B_il2cpp_TypeInfo_var);
NullCheck(L_1);
PropOperator__ctor_m89B8508B2FF861C3C678796EFFBACBFB0D78A77B(L_1, L_0, NULL);
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_2;
L_2 = ConstraintExpression_Append_mEF8C01DE3DF9C4C3C958B0819B6A3071C7C6B74E(__this, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_get_Length_m5B65ACDF41FB7B2303A5D883B4F68778C450D477 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral692CFAB7F0E96FB317ECD81BE188FB45205CF29C);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4(__this, _stringLiteral692CFAB7F0E96FB317ECD81BE188FB45205CF29C, NULL);
V_0 = L_0;
goto IL_000f;
}
IL_000f:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_get_Count_mDBCBA08A95FCB4E89DFA9BEF9807CC539B0362D2 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4(__this, _stringLiteral37B9D73BE7368F9E631CD06C5DC3758F48D4E89C, NULL);
V_0 = L_0;
goto IL_000f;
}
IL_000f:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_get_Message_m469043AAD8F6CB0ACDD9CDB5891D9A08799B2F23 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9B850A03952CDBCC170C393B2A85CCA5764E310C);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4(__this, _stringLiteral9B850A03952CDBCC170C393B2A85CCA5764E310C, NULL);
V_0 = L_0;
goto IL_000f;
}
IL_000f:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_InnerException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_get_InnerException_m739A08123A6B3AB9253FC39265DA5A1F026451C2 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral51DF01FA7B200363F1258BDB5D763179E643C6F9);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = ConstraintExpression_Property_m09BA96DC16A7D521D5AF6B6AB364CBA5192CF3A4(__this, _stringLiteral51DF01FA7B200363F1258BDB5D763179E643C6F9, NULL);
V_0 = L_0;
goto IL_000f;
}
IL_000f:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::Attribute(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintExpression_Attribute_mF6CA6EAB57332E4CD628DBAF4655A07E8E021AA1 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA* L_1 = (AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA*)il2cpp_codegen_object_new(AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA_il2cpp_TypeInfo_var);
NullCheck(L_1);
AttributeOperator__ctor_mC68998E8278AB6C49DE355A1A6812A12A616C6FE(L_1, L_0, NULL);
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_2;
L_2 = ConstraintExpression_Append_mEF8C01DE3DF9C4C3C958B0819B6A3071C7C6B74E(__this, L_1, NULL);
V_0 = L_2;
goto IL_0010;
}
IL_0010:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression::get_With()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintExpression_get_With_mF63F7F667A5C28E435C6AA797371D19D1C7DFF8A (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E* L_0 = (WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E*)il2cpp_codegen_object_new(WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E_il2cpp_TypeInfo_var);
NullCheck(L_0);
WithOperator__ctor_m130FFC6BB99A088B1E4C28A5DA0B49F6119B9438(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.ConstraintExpression::Matches(NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ConstraintExpression_Matches_mDF63F10A53DCAE33376A805DCD29FF68554BCB96 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* V_0 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_0);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, ((Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09*)CastclassClass((RuntimeObject*)L_1, Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09_il2cpp_TypeInfo_var)), NULL);
V_0 = L_2;
goto IL_0015;
}
IL_0015:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.NullConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Null()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* ConstraintExpression_get_Null_m692CA4478F67B53D230D94230E4F099E15143BAF (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* V_0 = NULL;
{
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_0 = (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED*)il2cpp_codegen_object_new(NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var);
NullCheck(L_0);
NullConstraint__ctor_m084A6A709C33999A6383E8CC5C3B9148C4341131(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED*)CastclassClass((RuntimeObject*)L_1, NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.TrueConstraint NUnit.Framework.Constraints.ConstraintExpression::get_True()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* ConstraintExpression_get_True_mE19BC03C1A8455671DC169BB208F652A5E569367 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* V_0 = NULL;
{
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_0 = (TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99*)il2cpp_codegen_object_new(TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var);
NullCheck(L_0);
TrueConstraint__ctor_m615A3F50B0BD2AB850269D871F4A1611A0CB8820(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99*)CastclassClass((RuntimeObject*)L_1, TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.FalseConstraint NUnit.Framework.Constraints.ConstraintExpression::get_False()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* ConstraintExpression_get_False_m9A341BE89E80AA9C026635549311A24B5A7E565B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* V_0 = NULL;
{
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_0 = (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2*)il2cpp_codegen_object_new(FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var);
NullCheck(L_0);
FalseConstraint__ctor_m0121F61B79858E764F6DD524A2F160B148411CBB(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2*)CastclassClass((RuntimeObject*)L_1, FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Positive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* ConstraintExpression_get_Positive_m418624CF5A297E563D25167EA825C24E5279C1A9 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2 = (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)il2cpp_codegen_object_new(GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
NullCheck(L_2);
GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7(L_2, L_1, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_3;
L_3 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_2, NULL);
V_0 = ((GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)CastclassClass((RuntimeObject*)L_3, GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var));
goto IL_001a;
}
IL_001a:
{
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Negative()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* ConstraintExpression_get_Negative_m0E4862E1C19F42A884EA5BFBF3F903D3F6C38165 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2 = (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)il2cpp_codegen_object_new(LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
NullCheck(L_2);
LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4(L_2, L_1, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_3;
L_3 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_2, NULL);
V_0 = ((LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)CastclassClass((RuntimeObject*)L_3, LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var));
goto IL_001a;
}
IL_001a:
{
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ConstraintExpression_get_Zero_m9AE2AD9AE939012357FC7832D958F99DB48A0A8A (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)il2cpp_codegen_object_new(EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
NullCheck(L_2);
EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD(L_2, L_1, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_3;
L_3 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_2, NULL);
V_0 = ((EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)CastclassClass((RuntimeObject*)L_3, EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var));
goto IL_001a;
}
IL_001a:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.NaNConstraint NUnit.Framework.Constraints.ConstraintExpression::get_NaN()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* ConstraintExpression_get_NaN_m3D865E801AF096BA0F99B198B46A034150B305B4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* V_0 = NULL;
{
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_0 = (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63*)il2cpp_codegen_object_new(NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var);
NullCheck(L_0);
NaNConstraint__ctor_mCF0216A5A4D40418C51169252EC5F885B512ABA7(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63*)CastclassClass((RuntimeObject*)L_1, NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EmptyConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* ConstraintExpression_get_Empty_m5AF821955F4878324EBCB5958439F8F45A1AF538 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* V_0 = NULL;
{
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_0 = (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C*)il2cpp_codegen_object_new(EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var);
NullCheck(L_0);
EmptyConstraint__ctor_mF27E8FC31786AC85F3EAA389D60487AABD433F34(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C*)CastclassClass((RuntimeObject*)L_1, EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.UniqueItemsConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Unique()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* ConstraintExpression_get_Unique_mE3E8EE70A0485CC2C099112AF146D582A3E56268 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* V_0 = NULL;
{
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_0 = (UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7*)il2cpp_codegen_object_new(UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var);
NullCheck(L_0);
UniqueItemsConstraint__ctor_m78ECE53E4FB2BBBC2AB4DB60F2E75B07F96E0C6C(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7*)CastclassClass((RuntimeObject*)L_1, UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.BinarySerializableConstraint NUnit.Framework.Constraints.ConstraintExpression::get_BinarySerializable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* ConstraintExpression_get_BinarySerializable_m1999ADEF4706743316B43F0463A659E3CE3BC1D2 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* V_0 = NULL;
{
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* L_0 = (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723*)il2cpp_codegen_object_new(BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var);
NullCheck(L_0);
BinarySerializableConstraint__ctor_m66AA113234117D08C4B159482E37FDC679C80107(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723*)CastclassClass((RuntimeObject*)L_1, BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.XmlSerializableConstraint NUnit.Framework.Constraints.ConstraintExpression::get_XmlSerializable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* ConstraintExpression_get_XmlSerializable_mB2A01945458D6C6614D8A530F5894652F20C323A (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* V_0 = NULL;
{
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* L_0 = (XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA*)il2cpp_codegen_object_new(XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlSerializableConstraint__ctor_mC2EA1EED125C540CC7AE74C1F08ABD5D405E2C12(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA*)CastclassClass((RuntimeObject*)L_1, XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.ConstraintExpression::EqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ConstraintExpression_EqualTo_m3D1CD7F352AB9EC5A2A3FEB90915160649439855 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1 = (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)il2cpp_codegen_object_new(EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
NullCheck(L_1);
EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)CastclassClass((RuntimeObject*)L_2, EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.SameAsConstraint NUnit.Framework.Constraints.ConstraintExpression::SameAs(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* ConstraintExpression_SameAs_mD8BF4EC7A8BFEB75C66EA989A15D6E6CC8B12DE3 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_1 = (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606*)il2cpp_codegen_object_new(SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var);
NullCheck(L_1);
SameAsConstraint__ctor_mF974E5795B715FF876CB1312619701D868627693(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606*)CastclassClass((RuntimeObject*)L_2, SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Constraints.ConstraintExpression::GreaterThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* ConstraintExpression_GreaterThan_m017E4A42EB986971F44735041C115689CD87E05F (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1 = (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)il2cpp_codegen_object_new(GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)CastclassClass((RuntimeObject*)L_2, GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression::GreaterThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* ConstraintExpression_GreaterThanOrEqualTo_mD2D5AEB9234F07563F63412BAD649BFA45653D2D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_1 = (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)il2cpp_codegen_object_new(GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)CastclassClass((RuntimeObject*)L_2, GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression::AtLeast(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* ConstraintExpression_AtLeast_mA195904273416CB4FB62875BC0EE607E8A84D833 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_1 = (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)il2cpp_codegen_object_new(GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)CastclassClass((RuntimeObject*)L_2, GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Constraints.ConstraintExpression::LessThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* ConstraintExpression_LessThan_mD3606570E8D02E5867762168F3206FF530FA78C0 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1 = (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)il2cpp_codegen_object_new(LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)CastclassClass((RuntimeObject*)L_2, LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression::LessThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* ConstraintExpression_LessThanOrEqualTo_m65070A542FCAF12850CD330F2FA80629B66C05EE (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_1 = (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)il2cpp_codegen_object_new(LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)CastclassClass((RuntimeObject*)L_2, LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression::AtMost(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* ConstraintExpression_AtMost_m9B8A4F7FDD3F8A15C7289CD62F5DC93F194BCAF1 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_1 = (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)il2cpp_codegen_object_new(LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)CastclassClass((RuntimeObject*)L_2, LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ExactTypeConstraint NUnit.Framework.Constraints.ConstraintExpression::TypeOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* ConstraintExpression_TypeOf_m22E52E5BA02C70C07259D67C7CA56287E964EB08 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* L_1 = (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D*)il2cpp_codegen_object_new(ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var);
NullCheck(L_1);
ExactTypeConstraint__ctor_m41662FFC2ED89CDF22FE3A9DD6663324860B7063(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D*)CastclassClass((RuntimeObject*)L_2, ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.InstanceOfTypeConstraint NUnit.Framework.Constraints.ConstraintExpression::InstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* ConstraintExpression_InstanceOf_m05DC3B9C7BA4FCDB7CB2C0C94E0C20465D1FC759 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_1 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_1);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)CastclassClass((RuntimeObject*)L_2, InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.AssignableFromConstraint NUnit.Framework.Constraints.ConstraintExpression::AssignableFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* ConstraintExpression_AssignableFrom_m38F4962EAA4FFB454876F4DB2217A34FD58DCD8B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_1 = (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0*)il2cpp_codegen_object_new(AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
AssignableFromConstraint__ctor_mADCB5D13461F7A05826A2D0707529272F04A2071(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0*)CastclassClass((RuntimeObject*)L_2, AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.AssignableToConstraint NUnit.Framework.Constraints.ConstraintExpression::AssignableTo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* ConstraintExpression_AssignableTo_mEF3C614176FF268BA0CA0D2E3AD28D83C4DF3D59 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* L_1 = (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D*)il2cpp_codegen_object_new(AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var);
NullCheck(L_1);
AssignableToConstraint__ctor_m12574E6A94D0D1953D0108ADEC7599E785F155C1(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D*)CastclassClass((RuntimeObject*)L_2, AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.CollectionEquivalentConstraint NUnit.Framework.Constraints.ConstraintExpression::EquivalentTo(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* ConstraintExpression_EquivalentTo_m03E680AC2D11A2D529BADD19BB5CF8CBBDA75E47 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_1 = (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364*)il2cpp_codegen_object_new(CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionEquivalentConstraint__ctor_mC7C344C2B5E287FE77E75FECE7D5299FB5D666F6(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364*)CastclassClass((RuntimeObject*)L_2, CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.CollectionSubsetConstraint NUnit.Framework.Constraints.ConstraintExpression::SubsetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* ConstraintExpression_SubsetOf_m9FF539765B74B369BAA211DB63BE3989CC478298 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_1 = (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D*)il2cpp_codegen_object_new(CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionSubsetConstraint__ctor_m74ABCECD2ED540CF212391A59D6A9BEA872C596A(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D*)CastclassClass((RuntimeObject*)L_2, CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.CollectionSupersetConstraint NUnit.Framework.Constraints.ConstraintExpression::SupersetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* ConstraintExpression_SupersetOf_mDD7DBB1C34068EF4BBE32E0FF00D5AC0DC0997DC (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_1 = (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74*)il2cpp_codegen_object_new(CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionSupersetConstraint__ctor_m0F3E2113C4047E8BE128F7F01FF64096F2947FBB(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74*)CastclassClass((RuntimeObject*)L_2, CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.ConstraintExpression::get_Ordered()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* ConstraintExpression_get_Ordered_m0C061D67562390423E439A4B38AC0521A36DFF05 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_0 = NULL;
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_0 = (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1*)il2cpp_codegen_object_new(CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var);
NullCheck(L_0);
CollectionOrderedConstraint__ctor_m7299C19EDE7878E96A8E2A7577055AC4ACED7430(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = ((CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1*)CastclassClass((RuntimeObject*)L_1, CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Constraints.ConstraintExpression::Member(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* ConstraintExpression_Member_m4C6A3104C41968D580B3055E845EB638885BA5A8 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)CastclassClass((RuntimeObject*)L_2, CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Constraints.ConstraintExpression::Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* ConstraintExpression_Contains_mB3D43C766A40CEA12604CB6F2A2F78CF0BAAA20B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)CastclassClass((RuntimeObject*)L_2, CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Constraints.ConstraintExpression::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* ConstraintExpression_Contains_mA97DDB464301A6024E01694A9A32F939967D0020 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* V_0 = NULL;
{
String_t* L_0 = ___expected0;
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_1 = (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F*)il2cpp_codegen_object_new(ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
NullCheck(L_1);
ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F*)CastclassClass((RuntimeObject*)L_2, ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Constraints.ConstraintExpression::Contain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* ConstraintExpression_Contain_m243EAC75875A4B773E0C33223B2F0ACC3A1EB72B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* V_0 = NULL;
{
String_t* L_0 = ___expected0;
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_1 = (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F*)il2cpp_codegen_object_new(ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
NullCheck(L_1);
ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F*)CastclassClass((RuntimeObject*)L_2, ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Constraints.ConstraintExpression::StringContaining(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* ConstraintExpression_StringContaining_mCD6306F7535C291D0133DC4C69E1780D19DA21FB (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_1 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)CastclassClass((RuntimeObject*)L_2, SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Constraints.ConstraintExpression::ContainsSubstring(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* ConstraintExpression_ContainsSubstring_mE38773374CD01CF18A41B98E514345A150609CC9 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_1 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)CastclassClass((RuntimeObject*)L_2, SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::StartWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintExpression_StartWith_m138EE2E750735DBBEE985B3111483396D6727286 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)CastclassClass((RuntimeObject*)L_2, StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintExpression_StartsWith_mC792162F9C1CDEA5843AAA98AD8D9C8CFC1E2140 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)CastclassClass((RuntimeObject*)L_2, StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::StringStarting(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintExpression_StringStarting_m77B205EC48DB3F28EF3E272CAEE66010F0D10C5D (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)CastclassClass((RuntimeObject*)L_2, StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::EndWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintExpression_EndWith_m91F735A285ED30BBB71F5754B5509180BE4C80DA (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)CastclassClass((RuntimeObject*)L_2, EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintExpression_EndsWith_mD501BCB93994A8362839B2F7A09E99BB701E22A6 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)CastclassClass((RuntimeObject*)L_2, EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression::StringEnding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintExpression_StringEnding_mFDFBE73DE2C3A7B043A9748AC73C7B4D1C4B2CD2 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)CastclassClass((RuntimeObject*)L_2, EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintExpression::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintExpression_Match_mF652822DDB6D55278881F6EC8B2C00B52AFFEF20 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)CastclassClass((RuntimeObject*)L_2, RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintExpression::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintExpression_Matches_mAF7E18C5A00C39B0ABC4325C5FC5421C63EC8053 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)CastclassClass((RuntimeObject*)L_2, RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintExpression::StringMatching(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintExpression_StringMatching_m04E9BC909233A2C2C0DAB9918EF3B0814B37C5C4 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)CastclassClass((RuntimeObject*)L_2, RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.SamePathConstraint NUnit.Framework.Constraints.ConstraintExpression::SamePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* ConstraintExpression_SamePath_mCF6B7E94EC355785D0A3EE408D868FE49D538CBF (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_1 = (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3*)il2cpp_codegen_object_new(SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
NullCheck(L_1);
SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3*)CastclassClass((RuntimeObject*)L_2, SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.SubPathConstraint NUnit.Framework.Constraints.ConstraintExpression::SubPathOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* ConstraintExpression_SubPathOf_mABB2FD2941072997D2A3C01B48D30C14B975E234 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* L_1 = (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D*)il2cpp_codegen_object_new(SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubPathConstraint__ctor_m333BCBEC2AEFEDA73EB764D48DB71493D38F4B2F(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D*)CastclassClass((RuntimeObject*)L_2, SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.SamePathOrUnderConstraint NUnit.Framework.Constraints.ConstraintExpression::SamePathOrUnder(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* ConstraintExpression_SamePathOrUnder_mD807C4365B5ABF9AE33FA07E5D18CA411D9D2761 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* L_1 = (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF*)il2cpp_codegen_object_new(SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var);
NullCheck(L_1);
SamePathOrUnderConstraint__ctor_m30350FC6FCAEADD0268E5E552D76E67462D8B98B(L_1, L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2;
L_2 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_1, NULL);
V_0 = ((SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF*)CastclassClass((RuntimeObject*)L_2, SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var));
goto IL_0015;
}
IL_0015:
{
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.RangeConstraint NUnit.Framework.Constraints.ConstraintExpression::InRange(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* ConstraintExpression_InRange_m9335A8CF07AB573F7264B47604ACA2E27B6CDD7B (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, RuntimeObject* ___from0, RuntimeObject* ___to1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* V_0 = NULL;
{
RuntimeObject* L_0 = ___from0;
RuntimeObject* L_1 = ___to1;
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_2 = (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96*)il2cpp_codegen_object_new(RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var);
NullCheck(L_2);
RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73(L_2, L_0, L_1, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_3;
L_3 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_2, NULL);
V_0 = ((RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96*)CastclassClass((RuntimeObject*)L_3, RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var));
goto IL_0016;
}
IL_0016:
{
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.Constraint NUnit.Framework.Constraints.ConstraintExpression::get_Exist()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ConstraintExpression_get_Exist_mFABBF380819C81DDE9931BB1C50E22B6E2C16102 (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* V_0 = NULL;
{
FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE* L_0 = (FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE*)il2cpp_codegen_object_new(FileOrDirectoryExistsConstraint_t8F0D99C131E430DE8C915B3AD04A5C80D3A3F9CE_il2cpp_TypeInfo_var);
NullCheck(L_0);
FileOrDirectoryExistsConstraint__ctor_m2F891735E6CB0278E8785279D0D2A3E768C29998(L_0, NULL);
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1;
L_1 = ConstraintExpression_Append_m6A390D57CF341C3B9689D0033205F6F5F378139B(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_Not()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintFactory_get_Not_mF6ED3CCC286FB5B635462818A26FB29746EB4697 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0;
L_0 = Is_get_Not_m3E100DBF111FAE03CFFE7143752EE6C39F881E24(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_No()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintFactory_get_No_m84EB5ED64A3CAD530C7746E5C1007EB5761C7EB4 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0;
L_0 = Has_get_No_m8DD4E72847088C180B1DF19F6592EE23A2EB68FA(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_All()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintFactory_get_All_m6C97E32229BA112F577AE94C6C8FF6CE97B6B676 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0;
L_0 = Is_get_All_m9A7B313366013C295E875350F14860B6916FAEF1(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_Some()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintFactory_get_Some_mA347B7783BB1C58E55901A102FECCC0F2B374B90 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0;
L_0 = Has_get_Some_m6D86BA5108BC57429D2695B10BE9513DE738327D(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_None()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintFactory_get_None_m5F63BA20B247F5ACFBB05820271CB3EAB419BCF9 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0;
L_0 = Has_get_None_mE9CE8D189422DE8B9EE2D84E4EB3B25955266D6E(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::Exactly(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ConstraintFactory_Exactly_m909C83DBBB52874F033CF43A4D00B663E24CEB8C (int32_t ___expectedCount0, const RuntimeMethod* method)
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
int32_t L_0 = ___expectedCount0;
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = Has_Exactly_m824C8FA6EEB4E3F1C7B3FE1D9BAE365078370C4A(L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::Property(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintFactory_Property_mD77F87288886F0AB5AA639B4366E06207775A58B (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___name0, const RuntimeMethod* method)
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
String_t* L_0 = ___name0;
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1;
L_1 = Has_Property_mCAA3AF550C0BD0507AA745FDDB802610F0C4BB3A(L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintFactory_get_Length_m9A6245A65F8A127D2C05F1FB381EC93A9E0EEB7B (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_get_Length_m6A3A33A6332CCF601845BB2994B841AA4357F33F(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintFactory_get_Count_mC207C5BCE3EF9DA6649397AF93541E4605ABA235 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_get_Count_mCE28BC4C6045C0853E529E128E5F3F803265BED1(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_Message()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintFactory_get_Message_m478B068D3A891C538F383DADFC2DD2E6DD8E2D97 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_get_Message_m3E3D3AC074AF2169101CC25ACCD906722624313D(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::get_InnerException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintFactory_get_InnerException_m8A01E9F99523DB9C95E0E061AB6D3DA598CEFDCF (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_0;
L_0 = Has_get_InnerException_m1480FE57A66F1C1C6726AB40E090AAF7AF3A796D(NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintFactory::Attribute(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* ConstraintFactory_Attribute_m447A30E7B5E8B445C98743B33AEB53E8C6F8068A (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_1;
L_1 = Has_Attribute_mAB34EC31F1D76EBABF0EA7E9F8FB82BC874A9DF4(L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.NullConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Null()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* ConstraintFactory_get_Null_mC6C3E0A90A7582F39188417FAAE7DD425C016641 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* V_0 = NULL;
{
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_0 = (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED*)il2cpp_codegen_object_new(NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED_il2cpp_TypeInfo_var);
NullCheck(L_0);
NullConstraint__ctor_m084A6A709C33999A6383E8CC5C3B9148C4341131(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.TrueConstraint NUnit.Framework.Constraints.ConstraintFactory::get_True()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* ConstraintFactory_get_True_m36923F76063442BAD5C77CDBE4D48B6041FB7DA8 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* V_0 = NULL;
{
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_0 = (TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99*)il2cpp_codegen_object_new(TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99_il2cpp_TypeInfo_var);
NullCheck(L_0);
TrueConstraint__ctor_m615A3F50B0BD2AB850269D871F4A1611A0CB8820(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
TrueConstraint_tE4ACF2ED81785A054473FB2D8B4B4438CDFE5E99* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.FalseConstraint NUnit.Framework.Constraints.ConstraintFactory::get_False()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* ConstraintFactory_get_False_m3DA7BFED56141340BC5778E92015679B28E9560E (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* V_0 = NULL;
{
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_0 = (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2*)il2cpp_codegen_object_new(FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2_il2cpp_TypeInfo_var);
NullCheck(L_0);
FalseConstraint__ctor_m0121F61B79858E764F6DD524A2F160B148411CBB(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Positive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* ConstraintFactory_get_Positive_m2DF55B56F74DCA68EEFE707CF33454FEFA5F70B4 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2 = (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)il2cpp_codegen_object_new(GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
NullCheck(L_2);
GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7(L_2, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Negative()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* ConstraintFactory_get_Negative_mCC5F9B20772CA9E2364308F8B9740034BF4382E5 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2 = (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)il2cpp_codegen_object_new(LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
NullCheck(L_2);
LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4(L_2, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Zero()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ConstraintFactory_get_Zero_m32C35AB9B3ECFB9BCA3A3EFBD6A34638AA839DB4 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
int32_t L_0 = 0;
RuntimeObject* L_1 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_0);
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)il2cpp_codegen_object_new(EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
NullCheck(L_2);
EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD(L_2, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.NaNConstraint NUnit.Framework.Constraints.ConstraintFactory::get_NaN()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* ConstraintFactory_get_NaN_mC18F3D872DDD740FFDDFEA982C0E7408CD48CF7B (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* V_0 = NULL;
{
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_0 = (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63*)il2cpp_codegen_object_new(NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63_il2cpp_TypeInfo_var);
NullCheck(L_0);
NaNConstraint__ctor_mCF0216A5A4D40418C51169252EC5F885B512ABA7(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EmptyConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Empty()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* ConstraintFactory_get_Empty_mA58D726C85510BAEBAA94F4E8B0780378D8E3500 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* V_0 = NULL;
{
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_0 = (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C*)il2cpp_codegen_object_new(EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C_il2cpp_TypeInfo_var);
NullCheck(L_0);
EmptyConstraint__ctor_mF27E8FC31786AC85F3EAA389D60487AABD433F34(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.UniqueItemsConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Unique()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* ConstraintFactory_get_Unique_m54F9AD931D3395C9B15257103716CDF21850ADF0 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* V_0 = NULL;
{
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_0 = (UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7*)il2cpp_codegen_object_new(UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7_il2cpp_TypeInfo_var);
NullCheck(L_0);
UniqueItemsConstraint__ctor_m78ECE53E4FB2BBBC2AB4DB60F2E75B07F96E0C6C(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
UniqueItemsConstraint_t2329F167F75C442CD31199B8F30C31832324D8B7* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.BinarySerializableConstraint NUnit.Framework.Constraints.ConstraintFactory::get_BinarySerializable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* ConstraintFactory_get_BinarySerializable_m456D52752EDE796A1E77E1B233C3F29882F2AE40 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* V_0 = NULL;
{
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* L_0 = (BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723*)il2cpp_codegen_object_new(BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723_il2cpp_TypeInfo_var);
NullCheck(L_0);
BinarySerializableConstraint__ctor_m66AA113234117D08C4B159482E37FDC679C80107(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
BinarySerializableConstraint_t201477FBCE9276B18C8474AADD004A302D9FF723* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.XmlSerializableConstraint NUnit.Framework.Constraints.ConstraintFactory::get_XmlSerializable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* ConstraintFactory_get_XmlSerializable_m1A4EB733150FDBCB03EA337AB4E720EAE8BE1BC3 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* V_0 = NULL;
{
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* L_0 = (XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA*)il2cpp_codegen_object_new(XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA_il2cpp_TypeInfo_var);
NullCheck(L_0);
XmlSerializableConstraint__ctor_mC2EA1EED125C540CC7AE74C1F08ABD5D405E2C12(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
XmlSerializableConstraint_t37440E35C9665EE08F9FF664AFB83BA369D5D0FA* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.ConstraintFactory::EqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* ConstraintFactory_EqualTo_mC44CC7E54CE193B513CBFC2D5AAF587977F94878 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1 = (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)il2cpp_codegen_object_new(EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
NullCheck(L_1);
EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SameAsConstraint NUnit.Framework.Constraints.ConstraintFactory::SameAs(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* ConstraintFactory_SameAs_mCDAAABF2AC09A27F407BADB37C795B6F8D4187F3 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_1 = (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606*)il2cpp_codegen_object_new(SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606_il2cpp_TypeInfo_var);
NullCheck(L_1);
SameAsConstraint__ctor_mF974E5795B715FF876CB1312619701D868627693(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanConstraint NUnit.Framework.Constraints.ConstraintFactory::GreaterThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* ConstraintFactory_GreaterThan_mE1F26084087248A4DF42BB61C931CA662D2E34F7 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_1 = (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F*)il2cpp_codegen_object_new(GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintFactory::GreaterThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* ConstraintFactory_GreaterThanOrEqualTo_m24462239EA02FF4D34E59A16A0F650CC3D3B55ED (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_1 = (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)il2cpp_codegen_object_new(GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.GreaterThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintFactory::AtLeast(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* ConstraintFactory_AtLeast_mCBC4091048C41A2EE3B03CAF267202F522C05182 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_1 = (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848*)il2cpp_codegen_object_new(GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848_il2cpp_TypeInfo_var);
NullCheck(L_1);
GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.LessThanConstraint NUnit.Framework.Constraints.ConstraintFactory::LessThan(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* ConstraintFactory_LessThan_mAC12F3B7673D9A67173B0F200451422D0177A05A (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_1 = (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942*)il2cpp_codegen_object_new(LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintFactory::LessThanOrEqualTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* ConstraintFactory_LessThanOrEqualTo_m5FFD2450B99F403DB039A6B64ED38B56F44C463A (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_1 = (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)il2cpp_codegen_object_new(LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.LessThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintFactory::AtMost(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* ConstraintFactory_AtMost_mD8B675A225A5E1C0ED99787FABC4A13502758276 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_1 = (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663*)il2cpp_codegen_object_new(LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663_il2cpp_TypeInfo_var);
NullCheck(L_1);
LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ExactTypeConstraint NUnit.Framework.Constraints.ConstraintFactory::TypeOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* ConstraintFactory_TypeOf_m9E70BA6755859E6AFC7CB861A2B4085192372EA3 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* L_1 = (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D*)il2cpp_codegen_object_new(ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D_il2cpp_TypeInfo_var);
NullCheck(L_1);
ExactTypeConstraint__ctor_m41662FFC2ED89CDF22FE3A9DD6663324860B7063(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.InstanceOfTypeConstraint NUnit.Framework.Constraints.ConstraintFactory::InstanceOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* ConstraintFactory_InstanceOf_m17252E2A40CD22A4B686648EC5EF1349F6443B66 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_1 = (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F*)il2cpp_codegen_object_new(InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F_il2cpp_TypeInfo_var);
NullCheck(L_1);
InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.AssignableFromConstraint NUnit.Framework.Constraints.ConstraintFactory::AssignableFrom(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* ConstraintFactory_AssignableFrom_m158BDE245A7AA4335B32DF55808FB24496EDF333 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_1 = (AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0*)il2cpp_codegen_object_new(AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
AssignableFromConstraint__ctor_mADCB5D13461F7A05826A2D0707529272F04A2071(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
AssignableFromConstraint_tE6D7DA7BEB86B9C9D79B6BC25D82C7C9A7402EF0* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.AssignableToConstraint NUnit.Framework.Constraints.ConstraintFactory::AssignableTo(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* ConstraintFactory_AssignableTo_mB3AE5C96C7E970E1A5B2EDB57FE23A8ABD35EBB4 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, Type_t* ___expectedType0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* V_0 = NULL;
{
Type_t* L_0 = ___expectedType0;
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* L_1 = (AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D*)il2cpp_codegen_object_new(AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D_il2cpp_TypeInfo_var);
NullCheck(L_1);
AssignableToConstraint__ctor_m12574E6A94D0D1953D0108ADEC7599E785F155C1(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
AssignableToConstraint_tEC33B75F46715BB4CE10F97943E66BF371F1829D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionEquivalentConstraint NUnit.Framework.Constraints.ConstraintFactory::EquivalentTo(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* ConstraintFactory_EquivalentTo_m36F327CBADBA794E4108E16EBF8D39BE65175F39 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_1 = (CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364*)il2cpp_codegen_object_new(CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionEquivalentConstraint__ctor_mC7C344C2B5E287FE77E75FECE7D5299FB5D666F6(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionEquivalentConstraint_tC829FF8D8C83FF579BE658C3D0C550E4CAB4B364* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionSubsetConstraint NUnit.Framework.Constraints.ConstraintFactory::SubsetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* ConstraintFactory_SubsetOf_m8932AE1407E1E33E9B23FFDF6129B1C50304E7E7 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_1 = (CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D*)il2cpp_codegen_object_new(CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionSubsetConstraint__ctor_m74ABCECD2ED540CF212391A59D6A9BEA872C596A(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionSubsetConstraint_t6AE08B88597CEE7B975792E7A849F6B8C344636D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionSupersetConstraint NUnit.Framework.Constraints.ConstraintFactory::SupersetOf(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* ConstraintFactory_SupersetOf_mE3EB088D5C82368769081B2DAE540A85B496AE64 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_1 = (CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74*)il2cpp_codegen_object_new(CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionSupersetConstraint__ctor_m0F3E2113C4047E8BE128F7F01FF64096F2947FBB(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionSupersetConstraint_tD4D8DE8B7878D65D657F90D546B1D3E35DCD2B74* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionOrderedConstraint NUnit.Framework.Constraints.ConstraintFactory::get_Ordered()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* ConstraintFactory_get_Ordered_mCA3EDF4D1D4F8014BE4A88640C411FFDD91A95B3 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* V_0 = NULL;
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_0 = (CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1*)il2cpp_codegen_object_new(CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1_il2cpp_TypeInfo_var);
NullCheck(L_0);
CollectionOrderedConstraint__ctor_m7299C19EDE7878E96A8E2A7577055AC4ACED7430(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
CollectionOrderedConstraint_t5085F6979AAF77ED9BB2B3ECEE310C695D2C9EA1* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Constraints.ConstraintFactory::Member(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* ConstraintFactory_Member_mEA8FB8686628E39B5AFF0F7A62392FEA31D2BC9A (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.CollectionContainsConstraint NUnit.Framework.Constraints.ConstraintFactory::Contains(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* ConstraintFactory_Contains_m651176977866C3D9C46C1E5A2E21230750D14985 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* V_0 = NULL;
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_1 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_1);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Constraints.ConstraintFactory::Contains(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* ConstraintFactory_Contains_m3A2204FDFC57E95E900BBB635094094F19B06ED9 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* V_0 = NULL;
{
String_t* L_0 = ___expected0;
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_1 = (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F*)il2cpp_codegen_object_new(ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F_il2cpp_TypeInfo_var);
NullCheck(L_1);
ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Constraints.ConstraintFactory::StringContaining(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* ConstraintFactory_StringContaining_mAA464A7BE446ED674B75D6859B45EE44551461E4 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_1 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Constraints.ConstraintFactory::ContainsSubstring(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* ConstraintFactory_ContainsSubstring_m03A32B8ED4369C8AAAAB2F19EC35F2E131D43B24 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_1 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SubstringConstraint NUnit.Framework.Constraints.ConstraintFactory::DoesNotContain(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* ConstraintFactory_DoesNotContain_m6405D80CFC3A9AACA3AE7FECAAA5D4A22F531928 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_3;
L_3 = ConstraintExpression_ContainsSubstring_mE38773374CD01CF18A41B98E514345A150609CC9(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::StartWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintFactory_StartWith_m0C9BB65CE9FF4E07F7900A10F581D0256B46FB21 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::StartsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintFactory_StartsWith_m49ED64622CE81FB315B6706D9B3E07894F29C7D9 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::StringStarting(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintFactory_StringStarting_m5781FBA9AFCF3AF6097B8C9E4923D0253E98B7C5 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_1 = (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D*)il2cpp_codegen_object_new(StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D_il2cpp_TypeInfo_var);
NullCheck(L_1);
StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.StartsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::DoesNotStartWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* ConstraintFactory_DoesNotStartWith_mCBEC6160DFAE095A0085A11D19DE441014666B16 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_3;
L_3 = ConstraintExpression_StartsWith_mC792162F9C1CDEA5843AAA98AD8D9C8CFC1E2140(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::EndWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintFactory_EndWith_m0BBC344EAB324910EA5F5ECD010B7F01041A01E1 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::EndsWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintFactory_EndsWith_m5589A8B0EB7C8EFD8B6B48DD35FA759C1E7A9037 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::StringEnding(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintFactory_StringEnding_m1CE2624E01DA59CF15B7C182C771EEB4520DFE00 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
String_t* L_0 = ___expected0;
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_1 = (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294*)il2cpp_codegen_object_new(EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294_il2cpp_TypeInfo_var);
NullCheck(L_1);
EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EndsWithConstraint NUnit.Framework.Constraints.ConstraintFactory::DoesNotEndWith(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* ConstraintFactory_DoesNotEndWith_m44896B33D63F7D903BD08DF1FC7E9F303A4D49A6 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
String_t* L_2 = ___expected0;
NullCheck(L_1);
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_3;
L_3 = ConstraintExpression_EndsWith_mD501BCB93994A8362839B2F7A09E99BB701E22A6(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintFactory::Match(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintFactory_Match_mDE718A8BED859EA9F9821063350D09115E9C77A1 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintFactory::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintFactory_Matches_m4460FC084D0BFF99BF1ED986E40191EDABAD4638 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintFactory::StringMatching(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintFactory_StringMatching_mCF87429C8017358A37D0D836B5296C3968AE7685 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
String_t* L_0 = ___pattern0;
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_1 = (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B*)il2cpp_codegen_object_new(RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B_il2cpp_TypeInfo_var);
NullCheck(L_1);
RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RegexConstraint NUnit.Framework.Constraints.ConstraintFactory::DoesNotMatch(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* ConstraintFactory_DoesNotMatch_m5E7D1D5AE1E959AEEE74A08A453E1C77701FD54E (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* V_0 = NULL;
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_0 = (ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)il2cpp_codegen_object_new(ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C_il2cpp_TypeInfo_var);
NullCheck(L_0);
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(L_0, NULL);
NullCheck(L_0);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_get_Not_mC1780AADD3BE1C003007B7731E6ED07F3637CC25(L_0, NULL);
String_t* L_2 = ___pattern0;
NullCheck(L_1);
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_3;
L_3 = ConstraintExpression_Matches_mAF7E18C5A00C39B0ABC4325C5FC5421C63EC8053(L_1, L_2, NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.SamePathConstraint NUnit.Framework.Constraints.ConstraintFactory::SamePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* ConstraintFactory_SamePath_m9E16FB57A984BB72220B3319165BF93FE658FE7D (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_1 = (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3*)il2cpp_codegen_object_new(SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
NullCheck(L_1);
SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SubPathConstraint NUnit.Framework.Constraints.ConstraintFactory::SubPathOf(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* ConstraintFactory_SubPathOf_m7BC4B1BC911E5E53B919C787344EB019279E0ED6 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* L_1 = (SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D*)il2cpp_codegen_object_new(SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D_il2cpp_TypeInfo_var);
NullCheck(L_1);
SubPathConstraint__ctor_m333BCBEC2AEFEDA73EB764D48DB71493D38F4B2F(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SubPathConstraint_tD77FD29B8837452CB757925C6C3C2E9D9B53AC8D* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.SamePathOrUnderConstraint NUnit.Framework.Constraints.ConstraintFactory::SamePathOrUnder(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* ConstraintFactory_SamePathOrUnder_mE3AB1F64ABE6E49E716893E04A21E882227ED56E (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* V_0 = NULL;
{
String_t* L_0 = ___expected0;
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* L_1 = (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF*)il2cpp_codegen_object_new(SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF_il2cpp_TypeInfo_var);
NullCheck(L_1);
SamePathOrUnderConstraint__ctor_m30350FC6FCAEADD0268E5E552D76E67462D8B98B(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.RangeConstraint NUnit.Framework.Constraints.ConstraintFactory::InRange(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* ConstraintFactory_InRange_m3652C0D6823510B63DF996D47F981DA83D83890C (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, RuntimeObject* ___from0, RuntimeObject* ___to1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* V_0 = NULL;
{
RuntimeObject* L_0 = ___from0;
RuntimeObject* L_1 = ___to1;
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_2 = (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96*)il2cpp_codegen_object_new(RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96_il2cpp_TypeInfo_var);
NullCheck(L_2);
RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_000b;
}
IL_000b:
{
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_3 = V_0;
return L_3;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintFactory::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintFactory__ctor_mFA7F2B88DE9BB95B70F71063336246FD1F9980D9 (ConstraintFactory_t9FC0AB79C1A7F171B07D22C36C5F8CFC0BA769B4* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ContainsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainsConstraint__ctor_m57280BF9B1FD8984BF17B68A11A1B2EA4401806B (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
RuntimeObject* L_1 = ___expected0;
__this->____expected_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expected_4), (void*)L_1);
return;
}
}
// System.String NUnit.Framework.Constraints.ContainsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ContainsConstraint_get_Description_mA34018F03CCCB6BC3E2A0E99C52D49CA5A22E21B (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral104646D44BC2FEB950B08E7E9845672F8FF4E49F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_0 = __this->____realConstraint_5;
if (L_0)
{
goto IL_0020;
}
}
{
RuntimeObject* L_1 = __this->____expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_1, NULL);
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral104646D44BC2FEB950B08E7E9845672F8FF4E49F, L_2, NULL);
G_B3_0 = L_3;
goto IL_002b;
}
IL_0020:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_4 = __this->____realConstraint_5;
NullCheck(L_4);
String_t* L_5;
L_5 = VirtualFuncInvoker0< String_t* >::Invoke(14 /* System.String NUnit.Framework.Constraints.Constraint::get_Description() */, L_4);
G_B3_0 = L_5;
}
IL_002b:
{
V_0 = G_B3_0;
goto IL_002e;
}
IL_002e:
{
String_t* L_6 = V_0;
return L_6;
}
}
// NUnit.Framework.Constraints.ContainsConstraint NUnit.Framework.Constraints.ContainsConstraint::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* ContainsConstraint_get_IgnoreCase_m38494EEF590462D7C4ACEBD8C280E86E380A4A14 (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* __this, const RuntimeMethod* method)
{
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* V_0 = NULL;
{
__this->____ignoreCase_6 = (bool)1;
V_0 = __this;
goto IL_000c;
}
IL_000c:
{
ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.ContainsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* ContainsConstraint_ApplyTo_m4584F2FDBCE5F1C53FA4DD8C4429F93E35D603F3 (ContainsConstraint_tC76BC481666D3E5F5F5F922AC9C7688C689ACD4F* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* V_1 = NULL;
bool V_2 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_3 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = (bool)((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_003b;
}
}
{
RuntimeObject* L_2 = __this->____expected_4;
SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB* L_3 = (SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB*)il2cpp_codegen_object_new(SubstringConstraint_tA56665F39280B8C95B87BE404573F925E32D00AB_il2cpp_TypeInfo_var);
NullCheck(L_3);
SubstringConstraint__ctor_m9918B4D7CFF736C997DC4FE65C195FC2E8535638(L_3, ((String_t*)CastclassSealed((RuntimeObject*)L_2, String_t_il2cpp_TypeInfo_var)), NULL);
V_1 = L_3;
bool L_4 = __this->____ignoreCase_6;
V_2 = L_4;
bool L_5 = V_2;
if (!L_5)
{
goto IL_0031;
}
}
{
StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* L_6 = V_1;
NullCheck(L_6);
StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* L_7;
L_7 = StringConstraint_get_IgnoreCase_m5BE9F4C8B6E532A1C47BFA774BB35B3E2D2903BD(L_6, NULL);
V_1 = L_7;
}
IL_0031:
{
StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* L_8 = V_1;
__this->____realConstraint_5 = L_8;
Il2CppCodeGenWriteBarrier((void**)(&__this->____realConstraint_5), (void*)L_8);
goto IL_004c;
}
IL_003b:
{
RuntimeObject* L_9 = __this->____expected_4;
CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* L_10 = (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0*)il2cpp_codegen_object_new(CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0_il2cpp_TypeInfo_var);
NullCheck(L_10);
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(L_10, L_9, NULL);
__this->____realConstraint_5 = L_10;
Il2CppCodeGenWriteBarrier((void**)(&__this->____realConstraint_5), (void*)L_10);
}
IL_004c:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_11 = __this->____realConstraint_5;
RuntimeObject* L_12 = ___actual0;
NullCheck(L_11);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_13;
L_13 = VirtualFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(16 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.Constraint::ApplyTo(System.Object) */, L_11, L_12);
V_3 = L_13;
goto IL_005b;
}
IL_005b:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_14 = V_3;
return L_14;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.DelayedConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayedConstraint__ctor_m66E2DE197A493879B38BD86D67F7943271E702D3 (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, RuntimeObject* ___baseConstraint0, int32_t ___delayInMilliseconds1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___baseConstraint0;
int32_t L_1 = ___delayInMilliseconds1;
DelayedConstraint__ctor_mE85122D6222B1C8D526565D623F990134B70253B(__this, L_0, L_1, 0, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.DelayedConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DelayedConstraint__ctor_mE85122D6222B1C8D526565D623F990134B70253B (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, RuntimeObject* ___baseConstraint0, int32_t ___delayInMilliseconds1, int32_t ___pollingInterval2, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject* L_0 = ___baseConstraint0;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
int32_t L_1 = ___delayInMilliseconds1;
V_0 = (bool)((((int32_t)L_1) < ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0021;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral32932CD0622D4BF906B96C626B129BD7EA1DDA7A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE09551B85A5715B9B75D585E3241773601E253E6)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DelayedConstraint__ctor_mE85122D6222B1C8D526565D623F990134B70253B_RuntimeMethod_var)));
}
IL_0021:
{
int32_t L_4 = ___delayInMilliseconds1;
__this->___delayInMilliseconds_6 = L_4;
int32_t L_5 = ___pollingInterval2;
__this->___pollingInterval_7 = L_5;
return;
}
}
// System.String NUnit.Framework.Constraints.DelayedConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DelayedConstraint_get_Description_mF5F570949A3E4D0E7FD4C6A57FC35ED90DA3705F (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral969C5D341AFE14D7687EB4F7994A52A8438726FE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0);
int32_t L_2 = __this->___delayInMilliseconds_6;
int32_t L_3 = L_2;
RuntimeObject* L_4 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_3);
String_t* L_5;
L_5 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral969C5D341AFE14D7687EB4F7994A52A8438726FE, L_1, L_4, NULL);
V_0 = L_5;
goto IL_0024;
}
IL_0024:
{
String_t* L_6 = V_0;
return L_6;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.DelayedConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* DelayedConstraint_ApplyTo_m3671C6FB4D6E16100D64212EA0E36DAB918C3138 (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
int64_t V_1 = 0;
bool V_2 = false;
int64_t V_3 = 0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
bool V_5 = false;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_6;
memset((&V_6), 0, sizeof(V_6));
bool V_7 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
int64_t G_B6_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_0;
L_0 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
V_0 = L_0;
int64_t L_1 = V_0;
int32_t L_2 = __this->___delayInMilliseconds_6;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
L_3 = TimeSpan_FromMilliseconds_m95DA1C64A7D3111F8451D932CD0F94D608B1EC54(((double)L_2), NULL);
int64_t L_4;
L_4 = DelayedConstraint_TimestampOffset_m0D109DD80EDE50398A28DC48D59E1E1B5D43808E(L_1, L_3, NULL);
V_1 = L_4;
int32_t L_5 = __this->___pollingInterval_7;
V_2 = (bool)((((int32_t)L_5) > ((int32_t)0))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_00b5;
}
}
{
int64_t L_7 = V_0;
int32_t L_8 = __this->___pollingInterval_7;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_9;
L_9 = TimeSpan_FromMilliseconds_m95DA1C64A7D3111F8451D932CD0F94D608B1EC54(((double)L_8), NULL);
int64_t L_10;
L_10 = DelayedConstraint_TimestampOffset_m0D109DD80EDE50398A28DC48D59E1E1B5D43808E(L_7, L_9, NULL);
V_3 = L_10;
goto IL_00a4;
}
IL_0040:
{
int64_t L_11 = V_3;
int64_t L_12 = V_0;
V_5 = (bool)((((int64_t)L_11) > ((int64_t)L_12))? 1 : 0);
bool L_13 = V_5;
if (!L_13)
{
goto IL_0069;
}
}
{
int64_t L_14 = V_1;
int64_t L_15 = V_3;
if ((((int64_t)L_14) < ((int64_t)L_15)))
{
goto IL_0052;
}
}
{
int64_t L_16 = V_3;
G_B6_0 = L_16;
goto IL_0053;
}
IL_0052:
{
int64_t L_17 = V_1;
G_B6_0 = L_17;
}
IL_0053:
{
int64_t L_18 = V_0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_19;
L_19 = DelayedConstraint_TimestampDiff_m436332BE8214FEFBFDC54674732AC7936CF916D1(G_B6_0, L_18, NULL);
V_6 = L_19;
double L_20;
L_20 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&V_6), NULL);
Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0(il2cpp_codegen_cast_double_to_int<int32_t>(L_20), NULL);
}
IL_0069:
{
int64_t L_21 = V_0;
int32_t L_22 = __this->___pollingInterval_7;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_23;
L_23 = TimeSpan_FromMilliseconds_m95DA1C64A7D3111F8451D932CD0F94D608B1EC54(((double)L_22), NULL);
int64_t L_24;
L_24 = DelayedConstraint_TimestampOffset_m0D109DD80EDE50398A28DC48D59E1E1B5D43808E(L_21, L_23, NULL);
V_3 = L_24;
RuntimeObject* L_25;
L_25 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_26 = ___actual0;
NullCheck(L_25);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_27;
L_27 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_25, L_26);
V_4 = L_27;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_28 = V_4;
NullCheck(L_28);
bool L_29;
L_29 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_28);
V_7 = L_29;
bool L_30 = V_7;
if (!L_30)
{
goto IL_00a3;
}
}
{
RuntimeObject* L_31 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_32 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_32);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_32, __this, L_31, (bool)1, NULL);
V_8 = L_32;
goto IL_00f8;
}
IL_00a3:
{
}
IL_00a4:
{
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_33;
L_33 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
int64_t L_34 = L_33;
V_0 = L_34;
int64_t L_35 = V_1;
V_9 = (bool)((((int64_t)L_34) < ((int64_t)L_35))? 1 : 0);
bool L_36 = V_9;
if (L_36)
{
goto IL_0040;
}
}
{
}
IL_00b5:
{
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_37;
L_37 = Stopwatch_GetTimestamp_mD6D582A3E30369F05C829A5650BE2AE511EC807F(NULL);
int64_t L_38 = L_37;
V_0 = L_38;
int64_t L_39 = V_1;
V_10 = (bool)((((int64_t)L_38) < ((int64_t)L_39))? 1 : 0);
bool L_40 = V_10;
if (!L_40)
{
goto IL_00dc;
}
}
{
int64_t L_41 = V_1;
int64_t L_42 = V_0;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_43;
L_43 = DelayedConstraint_TimestampDiff_m436332BE8214FEFBFDC54674732AC7936CF916D1(L_41, L_42, NULL);
V_6 = L_43;
double L_44;
L_44 = TimeSpan_get_TotalMilliseconds_m3506C1A49F1FE37A82F3027EA061D18215EF87CF((&V_6), NULL);
Thread_Sleep_m63B7D29DC735584F4D80373E48C91B34FF32D1A0(il2cpp_codegen_cast_double_to_int<int32_t>(L_44), NULL);
}
IL_00dc:
{
RuntimeObject* L_45 = ___actual0;
RuntimeObject* L_46;
L_46 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_47 = ___actual0;
NullCheck(L_46);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_48;
L_48 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_46, L_47);
NullCheck(L_48);
bool L_49;
L_49 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_48);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_50 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_50);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_50, __this, L_45, L_49, NULL);
V_8 = L_50;
goto IL_00f8;
}
IL_00f8:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_51 = V_8;
return L_51;
}
}
// System.String NUnit.Framework.Constraints.DelayedConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DelayedConstraint_GetStringRepresentation_mCD7673BB167C2DBE00E2F184B4C8BAC52803B43E (DelayedConstraint_tBE79CED9F1F9890ACC8640228963AD3AA74397D9* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC20AC50E89734C42CD9EC23B1B6690737E59AAFD);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
int32_t L_0 = __this->___delayInMilliseconds_6;
int32_t L_1 = L_0;
RuntimeObject* L_2 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_1);
RuntimeObject* L_3;
L_3 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
String_t* L_4;
L_4 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralC20AC50E89734C42CD9EC23B1B6690737E59AAFD, L_2, L_3, NULL);
V_0 = L_4;
goto IL_001f;
}
IL_001f:
{
String_t* L_5 = V_0;
return L_5;
}
}
// System.Int64 NUnit.Framework.Constraints.DelayedConstraint::TimestampOffset(System.Int64,System.TimeSpan)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t DelayedConstraint_TimestampOffset_m0D109DD80EDE50398A28DC48D59E1E1B5D43808E (int64_t ___timestamp0, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___offset1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
{
int64_t L_0 = ___timestamp0;
double L_1;
L_1 = TimeSpan_get_TotalSeconds_mED686E7CECE6A76A7DC38518698B9199DB8CDEA8((&___offset1), NULL);
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_2 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0;
V_0 = ((int64_t)il2cpp_codegen_add(L_0, il2cpp_codegen_cast_double_to_int<int64_t>(((double)il2cpp_codegen_multiply(L_1, ((double)L_2))))));
goto IL_0015;
}
IL_0015:
{
int64_t L_3 = V_0;
return L_3;
}
}
// System.TimeSpan NUnit.Framework.Constraints.DelayedConstraint::TimestampDiff(System.Int64,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A DelayedConstraint_TimestampDiff_m436332BE8214FEFBFDC54674732AC7936CF916D1 (int64_t ___timestamp10, int64_t ___timestamp21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_0;
memset((&V_0), 0, sizeof(V_0));
{
int64_t L_0 = ___timestamp10;
int64_t L_1 = ___timestamp21;
il2cpp_codegen_runtime_class_init_inline(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var);
int64_t L_2 = ((Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_StaticFields*)il2cpp_codegen_static_fields_for(Stopwatch_tA188A210449E22C07053A7D3014DD182C7369043_il2cpp_TypeInfo_var))->___Frequency_0;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_3;
L_3 = TimeSpan_FromSeconds_mE585CC8180040ED064DC8B6546E6C94A129BFFC5(((double)(((double)((int64_t)il2cpp_codegen_subtract(L_0, L_1)))/((double)L_2))), NULL);
V_0 = L_3;
goto IL_0014;
}
IL_0014:
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.DictionaryContainsKeyConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryContainsKeyConstraint__ctor_mC9D195344F45A89360E4AF600EA94385D7800CF5 (DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___expected0;
CollectionContainsConstraint__ctor_m5427BE602307DFA61FB462F560ADB0D4EE8D0D02(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.DictionaryContainsKeyConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DictionaryContainsKeyConstraint_get_DisplayName_m28884CAEE092AC9DD5586BFABBBD2A33E1B47CF7 (DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral383A2EE875CCBAEA1D6ACB02687B7F26F7EA14F8);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral383A2EE875CCBAEA1D6ACB02687B7F26F7EA14F8;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.DictionaryContainsKeyConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DictionaryContainsKeyConstraint_get_Description_m0857C4BE6BFDFB1FDC6562BC3DC4722B701D826E (DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CB000BD0CA7A5E5B376F0B8ED20F9DB2FC7565B);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0;
L_0 = CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline(__this, NULL);
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral4CB000BD0CA7A5E5B376F0B8ED20F9DB2FC7565B, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.DictionaryContainsKeyConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DictionaryContainsKeyConstraint_Matches_m5C0C87D6E288E1A6E120CB83CE8C851BFA0B6EF3 (DictionaryContainsKeyConstraint_t56DE215DC024B2DA26ED1C681116829E951170E2* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0020;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB659C16B8B4EE39ABF71D63900301FD4BD80E605)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&DictionaryContainsKeyConstraint_Matches_m5C0C87D6E288E1A6E120CB83CE8C851BFA0B6EF3_RuntimeMethod_var)));
}
IL_0020:
{
RuntimeObject* L_4 = V_0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.ICollection System.Collections.IDictionary::get_Keys() */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_4);
bool L_6;
L_6 = CollectionContainsConstraint_Matches_m24939090817C2373786A7A66BFB1098E6B1275A9(__this, L_5, NULL);
V_2 = L_6;
goto IL_002f;
}
IL_002f:
{
bool L_7 = V_2;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.EmptyCollectionConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EmptyCollectionConstraint_get_Description_m54E4176ACD923CA41A51734A4E2EE7E01CC593C3 (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.Boolean NUnit.Framework.Constraints.EmptyCollectionConstraint::Matches(System.Collections.IEnumerable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyCollectionConstraint_Matches_m56303DED213447A19B70F096E7BD9DAB955A07ED (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* __this, RuntimeObject* ___collection0, const RuntimeMethod* method)
{
bool V_0 = false;
{
RuntimeObject* L_0 = ___collection0;
bool L_1;
L_1 = CollectionConstraint_IsEmpty_m7E2DC6F3AE87231B8044A6576EE4043880B2E56D(L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.EmptyCollectionConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* __this, const RuntimeMethod* method)
{
{
CollectionConstraint__ctor_m2D6FCCB415B194F6D0ECFEDF51C3BCFF01E01B60(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.EmptyConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EmptyConstraint_get_Description_mA8A8B91F230F604B85A8CF52D40C72E39B2A9554 (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_0 = __this->___realConstraint_4;
if (!L_0)
{
goto IL_0016;
}
}
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_1 = __this->___realConstraint_4;
NullCheck(L_1);
String_t* L_2;
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(14 /* System.String NUnit.Framework.Constraints.Constraint::get_Description() */, L_1);
G_B3_0 = L_2;
goto IL_001b;
}
IL_0016:
{
G_B3_0 = _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361;
}
IL_001b:
{
V_0 = G_B3_0;
goto IL_001e;
}
IL_001e:
{
String_t* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.EmptyConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* EmptyConstraint_ApplyTo_mB1EBC23FB27C53EBF1A2858CCBE69B5E970E9F9C (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_3 = NULL;
{
RuntimeObject* L_0 = ___actual0;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_3;
L_3 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_2, NULL);
V_0 = (bool)((((RuntimeObject*)(Type_t*)L_1) == ((RuntimeObject*)(Type_t*)L_3))? 1 : 0);
bool L_4 = V_0;
if (!L_4)
{
goto IL_0024;
}
}
{
EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* L_5 = (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD*)il2cpp_codegen_object_new(EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD_il2cpp_TypeInfo_var);
NullCheck(L_5);
EmptyStringConstraint__ctor_mA4F96E0DA923AB02D26AEE03EC9D2C4F221B5177(L_5, NULL);
__this->___realConstraint_4 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___realConstraint_4), (void*)L_5);
goto IL_0061;
}
IL_0024:
{
RuntimeObject* L_6 = ___actual0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_6) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_7 = V_1;
if (!L_7)
{
goto IL_003c;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_8);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA6EEFAD1685D8918E84D9A8AAA12A42858703534)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyConstraint_ApplyTo_mB1EBC23FB27C53EBF1A2858CCBE69B5E970E9F9C_RuntimeMethod_var)));
}
IL_003c:
{
RuntimeObject* L_9 = ___actual0;
V_2 = (bool)((!(((RuntimeObject*)(DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)IsInstSealed((RuntimeObject*)L_9, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_10 = V_2;
if (!L_10)
{
goto IL_0056;
}
}
{
EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2* L_11 = (EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2*)il2cpp_codegen_object_new(EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2_il2cpp_TypeInfo_var);
NullCheck(L_11);
EmptyDirectoryConstraint__ctor_m80FB59D781FE9F66CF6B39ED54321D09BBC63D1E(L_11, NULL);
__this->___realConstraint_4 = L_11;
Il2CppCodeGenWriteBarrier((void**)(&__this->___realConstraint_4), (void*)L_11);
goto IL_0061;
}
IL_0056:
{
EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8* L_12 = (EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8*)il2cpp_codegen_object_new(EmptyCollectionConstraint_tEE3486264D534CEADB8DF451EE2034B6EAC9C5F8_il2cpp_TypeInfo_var);
NullCheck(L_12);
EmptyCollectionConstraint__ctor_mEB2478125C3686B6D883AD8AD7513B037AF9E9CF(L_12, NULL);
__this->___realConstraint_4 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___realConstraint_4), (void*)L_12);
}
IL_0061:
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_13 = __this->___realConstraint_4;
RuntimeObject* L_14 = ___actual0;
NullCheck(L_13);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_15;
L_15 = VirtualFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(16 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.Constraint::ApplyTo(System.Object) */, L_13, L_14);
V_3 = L_15;
goto IL_0070;
}
IL_0070:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = V_3;
return L_16;
}
}
// System.Void NUnit.Framework.Constraints.EmptyConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyConstraint__ctor_mF27E8FC31786AC85F3EAA389D60487AABD433F34 (EmptyConstraint_t456A82C316FA7ECF1436504F79926628A775DC4C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.EmptyDirectoryConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EmptyDirectoryConstraint_get_Description_m8C54348001DE57C8D2440B523FBBBDBA0CB69A70 (EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral09475EECDC9E2B8D8CCDF75701F0E0333BFA4693);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral09475EECDC9E2B8D8CCDF75701F0E0333BFA4693;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.EmptyDirectoryConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* EmptyDirectoryConstraint_ApplyTo_m02E858AD35D50811B3802F26E4DC33D33F160864 (EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_3 = NULL;
int32_t G_B5_0 = 0;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)IsInstSealed((RuntimeObject*)L_0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var));
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_1 = V_0;
V_2 = (bool)((((RuntimeObject*)(DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_2;
if (!L_2)
{
goto IL_0020;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_3);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral40B72F457B71BC04183F751EDAFC0E7163318E61)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EmptyDirectoryConstraint_ApplyTo_m02E858AD35D50811B3802F26E4DC33D33F160864_RuntimeMethod_var)));
}
IL_0020:
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_4 = V_0;
NullCheck(L_4);
FileInfoU5BU5D_tCB74DD125A9220ABCF5F48549F2C71B74BBCD7E6* L_5;
L_5 = DirectoryInfo_GetFiles_m998040748717954CDDCE273F61EEC0625069543F(L_4, NULL);
NullCheck(L_5);
__this->___files_4 = ((int32_t)(((RuntimeArray*)L_5)->max_length));
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_6 = V_0;
NullCheck(L_6);
DirectoryInfoU5BU5D_t5D09D46C6EBC15480AF7C63C54276B57A4287953* L_7;
L_7 = DirectoryInfo_GetDirectories_m2EC8498544C3A85EF92273330858E03B284C6901(L_6, NULL);
NullCheck(L_7);
__this->___subdirs_5 = ((int32_t)(((RuntimeArray*)L_7)->max_length));
int32_t L_8 = __this->___files_4;
if (L_8)
{
goto IL_004f;
}
}
{
int32_t L_9 = __this->___subdirs_5;
G_B5_0 = ((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
goto IL_0050;
}
IL_004f:
{
G_B5_0 = 0;
}
IL_0050:
{
V_1 = (bool)G_B5_0;
RuntimeObject* L_10 = ___actual0;
bool L_11 = V_1;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_12);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_12, __this, L_10, L_11, NULL);
V_3 = L_12;
goto IL_005c;
}
IL_005c:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_13 = V_3;
return L_13;
}
}
// System.Void NUnit.Framework.Constraints.EmptyDirectoryConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyDirectoryConstraint__ctor_m80FB59D781FE9F66CF6B39ED54321D09BBC63D1E (EmptyDirectoryConstraint_t2D79F837C0786EABCC4ED7FF59CC10071BC38AF2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->___files_4 = 0;
__this->___subdirs_5 = 0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.EmptyStringConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EmptyStringConstraint_get_Description_mEA481A6E9A373D8E0D9F9BE58D3CB04899C05C11 (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.Boolean NUnit.Framework.Constraints.EmptyStringConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EmptyStringConstraint_Matches_m25DEE1CAC189D5BBCFE296487A9F2ED1C8FF8106 (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* __this, String_t* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
String_t* L_0 = ___actual0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_0, L_1, NULL);
V_0 = L_2;
goto IL_000f;
}
IL_000f:
{
bool L_3 = V_0;
return L_3;
}
}
// System.Void NUnit.Framework.Constraints.EmptyStringConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EmptyStringConstraint__ctor_mA4F96E0DA923AB02D26AEE03EC9D2C4F221B5177 (EmptyStringConstraint_tFC258D227DAEAE1EE4AEA59C119CC318AF6ACEBD* __this, const RuntimeMethod* method)
{
{
StringConstraint__ctor_mDDBD2EF704249137AF218681D27539E0E69FB8E7(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.EndsWithConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EndsWithConstraint__ctor_mBF7C6947B1A1A6B4AE151EE81C474D7E45DA670D (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral00FA03FC1126CE355452DC004D781DC4709BF296);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
StringConstraint__ctor_mBF764F38023531DF1A50A499825A325CEE869536(__this, L_0, NULL);
((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___descriptionText_6 = _stringLiteral00FA03FC1126CE355452DC004D781DC4709BF296;
Il2CppCodeGenWriteBarrier((void**)(&((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___descriptionText_6), (void*)_stringLiteral00FA03FC1126CE355452DC004D781DC4709BF296);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.EndsWithConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EndsWithConstraint_Matches_mC2FAE86BEBE945807A69866F4921F08E4CCCF079 (EndsWithConstraint_t971F6A2508441C75FF9BB7044D34254922A18294* __this, String_t* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
int32_t G_B8_0 = 0;
{
bool L_0 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002a;
}
}
{
String_t* L_2 = ___actual0;
if (!L_2)
{
goto IL_0026;
}
}
{
String_t* L_3 = ___actual0;
NullCheck(L_3);
String_t* L_4;
L_4 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_3, NULL);
String_t* L_5 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
NullCheck(L_5);
String_t* L_6;
L_6 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_5, NULL);
NullCheck(L_4);
bool L_7;
L_7 = String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC(L_4, L_6, NULL);
G_B4_0 = ((int32_t)(L_7));
goto IL_0027;
}
IL_0026:
{
G_B4_0 = 0;
}
IL_0027:
{
V_1 = (bool)G_B4_0;
goto IL_003f;
}
IL_002a:
{
String_t* L_8 = ___actual0;
if (!L_8)
{
goto IL_003b;
}
}
{
String_t* L_9 = ___actual0;
String_t* L_10 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
NullCheck(L_9);
bool L_11;
L_11 = String_EndsWith_mCD3754F5401E19CE7821CD398986E4EAA6AD87DC(L_9, L_10, NULL);
G_B8_0 = ((int32_t)(L_11));
goto IL_003c;
}
IL_003b:
{
G_B8_0 = 0;
}
IL_003c:
{
V_1 = (bool)G_B8_0;
goto IL_003f;
}
IL_003f:
{
bool L_12 = V_1;
return L_12;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.EqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraint__ctor_mFB411001A1275C68061FC0921F076B5C9541FAAD (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0;
L_0 = Tolerance_get_Default_mBB92F23DF5219A7D3C7FAD65B67DE9162DAFF37A(NULL);
__this->____tolerance_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_0);
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_1 = (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746*)il2cpp_codegen_object_new(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
NullCheck(L_1);
NUnitEqualityComparer__ctor_m1E29B6EEFCB7D99BB00E2EBA8E9B163C59B594B3(L_1, NULL);
__this->____comparer_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____comparer_6), (void*)L_1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2;
RuntimeObject* L_4 = ___expected0;
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_4);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_3, NULL);
EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3(__this, (&___expected0), EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_RuntimeMethod_var);
RuntimeObject* L_5 = ___expected0;
__this->____expected_4 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____expected_4), (void*)L_5);
EqualConstraint_set_ClipStrings_m5C6287BE6C6215869F403E8BBDE74FE0AA4E918A_inline(__this, (bool)1, NULL);
return;
}
}
// NUnit.Framework.Constraints.Tolerance NUnit.Framework.Constraints.EqualConstraint::get_Tolerance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* EqualConstraint_get_Tolerance_mDEE8AD9016ABF926FDF3D3F9C6966DAC78D26E73 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Constraints.EqualConstraint::get_CaseInsensitive()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EqualConstraint_get_CaseInsensitive_m6C50884F9E1811D17395BB32E1E7CF6AB36335A7 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
bool L_1;
L_1 = NUnitEqualityComparer_get_IgnoreCase_m33A07E5605876DBE9B9371F0997F2F78540F2F93(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
bool L_2 = V_0;
return L_2;
}
}
// System.Boolean NUnit.Framework.Constraints.EqualConstraint::get_ClipStrings()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EqualConstraint_get_ClipStrings_mD7421CAFC8FBFC62CC44ECBC0A55971BD7D61819 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CClipStringsU3Ek__BackingField_7;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.EqualConstraint::set_ClipStrings(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualConstraint_set_ClipStrings_m5C6287BE6C6215869F403E8BBDE74FE0AA4E918A (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CClipStringsU3Ek__BackingField_7 = L_0;
return;
}
}
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.EqualConstraint::get_FailurePoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* EqualConstraint_get_FailurePoints_mB6E4852353E689D9D449910EBAAF157C508D7368 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_get_FailurePoints_mA4C20C0343EEAB004033167743B550B43F23DF7B(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_IgnoreCase_m1DD41E45BD5EF25CCAB43A84D432FC21694DD6B7 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
NUnitEqualityComparer_set_IgnoreCase_mB429070FD90395F5F0E9A97E00CEE5D813294BE1(L_0, (bool)1, NULL);
V_0 = __this;
goto IL_0012;
}
IL_0012:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_NoClip()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_NoClip_m3ED4D2C25547478E666DFA46B6A9B51E649640D4 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
EqualConstraint_set_ClipStrings_m5C6287BE6C6215869F403E8BBDE74FE0AA4E918A_inline(__this, (bool)0, NULL);
V_0 = __this;
goto IL_000d;
}
IL_000d:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_AsCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_AsCollection_mCAC69D52AF8A84EF81579E8F54280175DDBEA10C (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
NUnitEqualityComparer_set_CompareAsCollection_m856CD551970439567C00C69C7A359BB988A3B629(L_0, (bool)1, NULL);
V_0 = __this;
goto IL_0012;
}
IL_0012:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::Within(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_Within_m177EA4EFDC74F21C45E81EFABE9997790AD7CB94 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___amount0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_1 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
bool L_1;
L_1 = Tolerance_get_IsUnsetOrDefault_m0F6EF1B95CA3B71154801FA7457C30856908D129(L_0, NULL);
V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001e;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_3);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0F284D6D02382536157FD45D0FDDEAFC42A2DFF1)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EqualConstraint_Within_m177EA4EFDC74F21C45E81EFABE9997790AD7CB94_RuntimeMethod_var)));
}
IL_001e:
{
RuntimeObject* L_4 = ___amount0;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_5 = (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C*)il2cpp_codegen_object_new(Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var);
NullCheck(L_5);
Tolerance__ctor_m7D92C14E9EFF512F4F64AB89F82095FAC8F2BA07(L_5, L_4, NULL);
__this->____tolerance_5 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_5);
V_1 = __this;
goto IL_002e;
}
IL_002e:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_6 = V_1;
return L_6;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_WithSameOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_WithSameOffset_m3A24A12745FDF9EB9D6405768062BFC4BFA20F10 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
NUnitEqualityComparer_set_WithSameOffset_m8D1EE77C5254CF6379ACE66C6320AADC5AC4D966_inline(L_0, (bool)1, NULL);
V_0 = __this;
goto IL_0012;
}
IL_0012:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_1 = V_0;
return L_1;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Ulps()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Ulps_m78BDA9536A9A8D5D0C41C285A10148C7A40061E0 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Ulps_mC2705523C0188779886E45AA114456384079C561(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Percent()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Percent_mF4451047F39FCBAD2BAF25314018B916A913CC25 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Percent_m1CC3185443DC6A20F13E11B5B9B4DDC43910EF07(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Days()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Days_m3D47816B95808AA8C1DCB12332E56338806B42C7 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Days_m75008EC0A5527463A2289805B7A47BAECE588ED9(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Hours()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Hours_m232F7A6EF2951144A48A086946F58914797361F4 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Hours_m40961A6141B520E0E30C4A114DDE287B27207674(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Minutes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Minutes_m13A9CE4B732D2CE34CC083F6974253F7F937AC0D (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Minutes_m069DAEF040F75781F0A0D26AEF1712A732C65B33(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Seconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Seconds_m1689422D8FE216ADDF8766EC0BD7173B066BE985 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Seconds_mC57F26FAB45280A7DECFC0ADFEC8212F46D4B0E0(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Milliseconds()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Milliseconds_m51A71C7DDAE97A223C9387D7BC2EE0999A4D0BEE (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Milliseconds_m05D7C7836A76799463DB3995BA96A2258E468967(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::get_Ticks()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_get_Ticks_mDBFEA98315BF09A5AF7FC3F9DD2A2744071EF31A (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = __this->____tolerance_5;
NullCheck(L_0);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_1;
L_1 = Tolerance_get_Ticks_mFC5B5AD111C918B933F2748E5856A4F1AE36DAAD(L_0, NULL);
__this->____tolerance_5 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->____tolerance_5), (void*)L_1);
V_0 = __this;
goto IL_0016;
}
IL_0016:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_Using_mB9B4B91A0C7A078C6E80E6BF67F70DD5CF159C0B (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB(L_0, NULL);
RuntimeObject* L_2 = ___comparer0;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_3;
L_3 = EqualityAdapter_For_m2A6B329527B85B4C0100BE9A102A910E0E17DFDC(L_2, NULL);
NullCheck(L_1);
InterfaceActionInvoker1< EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.EqualityAdapter>::Add(T) */, ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var, L_1, L_3);
V_0 = __this;
goto IL_001c;
}
IL_001c:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.EqualConstraint NUnit.Framework.Constraints.EqualConstraint::Using(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* EqualConstraint_Using_m098DF39FF71D936D36231794489CE29261FD513B (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = __this->____comparer_6;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB(L_0, NULL);
RuntimeObject* L_2 = ___comparer0;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_3;
L_3 = EqualityAdapter_For_m5ACE7BA09274D741298495A781ED2BC4A71FEA30(L_2, NULL);
NullCheck(L_1);
InterfaceActionInvoker1< EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<NUnit.Framework.Constraints.EqualityAdapter>::Add(T) */, ICollection_1_tDCE6CDFA058752C828639E111A2C5CC9EF7FFE58_il2cpp_TypeInfo_var, L_1, L_3);
V_0 = __this;
goto IL_001c;
}
IL_001c:
{
EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* L_4 = V_0;
return L_4;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.EqualConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* EqualConstraint_ApplyTo_m01F67E191D3662AF9224070B44B99EC4BF12DB19 (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_0 = NULL;
{
EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3(__this, (&___actual0), EqualConstraint_AdjustArgumentIfNeeded_TisRuntimeObject_mB124ABB8DF0992965C342B32302D3BBF49B0B9A3_RuntimeMethod_var);
RuntimeObject* L_0 = ___actual0;
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_1 = __this->____comparer_6;
RuntimeObject* L_2 = __this->____expected_4;
RuntimeObject* L_3 = ___actual0;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_4 = (&__this->____tolerance_5);
NullCheck(L_1);
bool L_5;
L_5 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(L_1, L_2, L_3, L_4, NULL);
EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772* L_6 = (EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772*)il2cpp_codegen_object_new(EqualConstraintResult_t4DFE5928B3947D5C6ADF8BEE94DDB6C0A7C23772_il2cpp_TypeInfo_var);
NullCheck(L_6);
EqualConstraintResult__ctor_m04F30DFD92E8A513F2800A61BBF138EB23709838(L_6, __this, L_0, L_5, NULL);
V_0 = L_6;
goto IL_002c;
}
IL_002c:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_7 = V_0;
return L_7;
}
}
// System.String NUnit.Framework.Constraints.EqualConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* EqualConstraint_get_Description_mD1BA3AD645B061BE60EF0E1A67DC815352381E3C (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ToleranceMode_tFFCC8EB41DDF1C55B7EAA081CF30BCEF3F63780D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC02149646451F67F7B59C4DC1C2EDA8BF8EC49D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC6CEE10810A66F67F39CF39748CB9B0B409F9ADE);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
String_t* V_5 = NULL;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = __this->____expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_2);
StringBuilder__ctor_mCD797D942316CB356205FD96415B0B7581CDAD60(L_2, L_1, NULL);
V_0 = L_2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_3 = __this->____tolerance_5;
if (!L_3)
{
goto IL_002a;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_4 = __this->____tolerance_5;
NullCheck(L_4);
bool L_5;
L_5 = Tolerance_get_IsUnsetOrDefault_m0F6EF1B95CA3B71154801FA7457C30856908D129(L_4, NULL);
G_B3_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
goto IL_002b;
}
IL_002a:
{
G_B3_0 = 0;
}
IL_002b:
{
V_1 = (bool)G_B3_0;
bool L_6 = V_1;
if (!L_6)
{
goto IL_0097;
}
}
{
StringBuilder_t* L_7 = V_0;
NullCheck(L_7);
StringBuilder_t* L_8;
L_8 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_7, _stringLiteralC6CEE10810A66F67F39CF39748CB9B0B409F9ADE, NULL);
StringBuilder_t* L_9 = V_0;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_10 = __this->____tolerance_5;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_10, NULL);
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_12;
L_12 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_11, NULL);
NullCheck(L_9);
StringBuilder_t* L_13;
L_13 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_9, L_12, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_14 = __this->____tolerance_5;
NullCheck(L_14);
int32_t L_15;
L_15 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_14, NULL);
V_2 = (bool)((((int32_t)((((int32_t)L_15) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_16 = V_2;
if (!L_16)
{
goto IL_0096;
}
}
{
StringBuilder_t* L_17 = V_0;
NullCheck(L_17);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745, NULL);
StringBuilder_t* L_19 = V_0;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_20 = __this->____tolerance_5;
NullCheck(L_20);
int32_t L_21;
L_21 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_20, NULL);
V_3 = L_21;
Il2CppFakeBox<int32_t> L_22(ToleranceMode_tFFCC8EB41DDF1C55B7EAA081CF30BCEF3F63780D_il2cpp_TypeInfo_var, (&V_3));
String_t* L_23;
L_23 = Enum_ToString_m946B0B83C4470457D0FF555D862022C72BB55741((Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2*)(&L_22), NULL);
NullCheck(L_19);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, L_23, NULL);
}
IL_0096:
{
}
IL_0097:
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_25 = __this->____comparer_6;
NullCheck(L_25);
bool L_26;
L_26 = NUnitEqualityComparer_get_IgnoreCase_m33A07E5605876DBE9B9371F0997F2F78540F2F93(L_25, NULL);
V_4 = L_26;
bool L_27 = V_4;
if (!L_27)
{
goto IL_00b4;
}
}
{
StringBuilder_t* L_28 = V_0;
NullCheck(L_28);
StringBuilder_t* L_29;
L_29 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_28, _stringLiteralAC02149646451F67F7B59C4DC1C2EDA8BF8EC49D, NULL);
}
IL_00b4:
{
StringBuilder_t* L_30 = V_0;
NullCheck(L_30);
String_t* L_31;
L_31 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_30);
V_5 = L_31;
goto IL_00be;
}
IL_00be:
{
String_t* L_32 = V_5;
return L_32;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.Constraints.EqualityAdapter::CanCompare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EqualityAdapter_CanCompare_m2026EDF4721E59C2C98EEEAE132DC09B5911BE0C (EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
{
RuntimeObject* L_0 = ___x0;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___y1;
G_B3_0 = ((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_1, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_001d;
}
}
{
V_1 = (bool)1;
goto IL_003d;
}
IL_001d:
{
RuntimeObject* L_3 = ___x0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)))
{
goto IL_0030;
}
}
{
RuntimeObject* L_4 = ___y1;
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_4, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0031;
}
IL_0030:
{
G_B8_0 = 1;
}
IL_0031:
{
V_2 = (bool)G_B8_0;
bool L_5 = V_2;
if (!L_5)
{
goto IL_0039;
}
}
{
V_1 = (bool)0;
goto IL_003d;
}
IL_0039:
{
V_1 = (bool)1;
goto IL_003d;
}
IL_003d:
{
bool L_6 = V_1;
return L_6;
}
}
// NUnit.Framework.Constraints.EqualityAdapter NUnit.Framework.Constraints.EqualityAdapter::For(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* EqualityAdapter_For_m2A6B329527B85B4C0100BE9A102A910E0E17DFDC (RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* V_0 = NULL;
{
RuntimeObject* L_0 = ___comparer0;
ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D* L_1 = (ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D*)il2cpp_codegen_object_new(ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D_il2cpp_TypeInfo_var);
NullCheck(L_1);
ComparerAdapter__ctor_m5A3312934A92E321631455CF2C0A44AA7EB3F99F(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.EqualityAdapter NUnit.Framework.Constraints.EqualityAdapter::For(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* EqualityAdapter_For_m5ACE7BA09274D741298495A781ED2BC4A71FEA30 (RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* V_0 = NULL;
{
RuntimeObject* L_0 = ___comparer0;
EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66* L_1 = (EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66*)il2cpp_codegen_object_new(EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66_il2cpp_TypeInfo_var);
NullCheck(L_1);
EqualityComparerAdapter__ctor_m998B46FBD3A29DEA18959065DBAAFFCDCBB80AD8(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.EqualityAdapter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityAdapter__ctor_m73A9D90647F74697417C22A653074A5E939B7DA7 (EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.EqualityAdapter/ComparerAdapter::.ctor(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComparerAdapter__ctor_m5A3312934A92E321631455CF2C0A44AA7EB3F99F (ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
EqualityAdapter__ctor_m73A9D90647F74697417C22A653074A5E939B7DA7(__this, NULL);
RuntimeObject* L_0 = ___comparer0;
__this->___comparer_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_0), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.EqualityAdapter/ComparerAdapter::AreEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ComparerAdapter_AreEqual_mDA8DBCE6BBCF13D30783BF7DA870298FF65FA7F3 (ComparerAdapter_tA2EE51B93124D7892A863B963B121C675E41EC9D* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = __this->___comparer_0;
RuntimeObject* L_1 = ___x0;
RuntimeObject* L_2 = ___y1;
NullCheck(L_0);
int32_t L_3;
L_3 = InterfaceFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Int32 System.Collections.IComparer::Compare(System.Object,System.Object) */, IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var, L_0, L_1, L_2);
V_0 = (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_0014;
}
IL_0014:
{
bool L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.EqualityAdapter/EqualityComparerAdapter::.ctor(System.Collections.IEqualityComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparerAdapter__ctor_m998B46FBD3A29DEA18959065DBAAFFCDCBB80AD8 (EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
{
EqualityAdapter__ctor_m73A9D90647F74697417C22A653074A5E939B7DA7(__this, NULL);
RuntimeObject* L_0 = ___comparer0;
__this->___comparer_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_0), (void*)L_0);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.EqualityAdapter/EqualityComparerAdapter::AreEqual(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EqualityComparerAdapter_AreEqual_m5B7D559631B21E84DA129DA0B433C838A919E02B (EqualityComparerAdapter_t5B08907884294E61CA40E9084D47FF4261A2FD66* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
RuntimeObject* L_0 = __this->___comparer_0;
RuntimeObject* L_1 = ___x0;
RuntimeObject* L_2 = ___y1;
NullCheck(L_0);
bool L_3;
L_3 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Boolean System.Collections.IEqualityComparer::Equals(System.Object,System.Object) */, IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var, L_0, L_1, L_2);
V_0 = L_3;
goto IL_0011;
}
IL_0011:
{
bool L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ExactTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExactTypeConstraint__ctor_m41662FFC2ED89CDF22FE3A9DD6663324860B7063 (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
TypeConstraint__ctor_m2E90D1A14179614B327FA9909AFAB764D6461640(__this, L_0, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.ExactTypeConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ExactTypeConstraint_get_DisplayName_m28D595FC6CC334DC9696211F90EE4E06F73553CB (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral415EAF3689F7C5E7FD422602E3142306C5DFB338);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral415EAF3689F7C5E7FD422602E3142306C5DFB338;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.Boolean NUnit.Framework.Constraints.ExactTypeConstraint::Matches(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ExactTypeConstraint_Matches_m50B381236B40BA51EC340F91EE73A978ED42D370 (ExactTypeConstraint_tF3B8CC9115F7BC6A6DC68478C3E102003BC5A61D* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___actual0;
if (!L_0)
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___actual0;
NullCheck(L_1);
Type_t* L_2;
L_2 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_1, NULL);
Type_t* L_3 = ((TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0*)__this)->___expectedType_4;
G_B3_0 = ((((RuntimeObject*)(Type_t*)L_2) == ((RuntimeObject*)(Type_t*)L_3))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 0;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
goto IL_0018;
}
IL_0018:
{
bool L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.FalseConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FalseConstraint__ctor_m0121F61B79858E764F6DD524A2F160B148411CBB (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void NUnit.Framework.Constraints.Constraint::set_Description(System.String) */, __this, _stringLiteralDBB6CDA4D5A47DA899D30151C0C04DB0958C5C1F);
return;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.FalseConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* FalseConstraint_ApplyTo_m213B179859FA3DF580DF2E91EF004F2F0549B02C (FalseConstraint_t92ED1774F97EC2F0A779A0B1A6DF10BCA5C79EF2* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = (bool)0;
RuntimeObject* L_1 = ___actual0;
bool L_2;
L_2 = Boolean_Equals_m09E29FD8CDADF609FD8CF4145BFD4843174569A1((&V_0), L_1, NULL);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_3 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_3);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_3, __this, L_0, L_2, NULL);
V_1 = L_3;
goto IL_0015;
}
IL_0015:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_4 = V_1;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.Constraints.FloatingPointNumerics::AreAlmostEqualUlps(System.Single,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatingPointNumerics_AreAlmostEqualUlps_m4BC63DAF0F848198E0BE5B094309BBFE77AAF60B (float ___left0, float ___right1, int32_t ___maxUlps2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A V_0;
memset((&V_0), 0, sizeof(V_0));
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A V_1;
memset((&V_1), 0, sizeof(V_1));
uint32_t V_2 = 0;
uint32_t V_3 = 0;
uint32_t V_4 = 0;
uint32_t V_5 = 0;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
int32_t G_B4_0 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A));
il2cpp_codegen_initobj((&V_1), sizeof(FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A));
float L_0 = ___left0;
(&V_0)->___Float_0 = L_0;
float L_1 = ___right1;
(&V_1)->___Float_0 = L_1;
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_2 = V_0;
uint32_t L_3 = L_2.___UInt_2;
V_2 = ((int32_t)((uint32_t)L_3>>((int32_t)31)));
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_4 = V_1;
uint32_t L_5 = L_4.___UInt_2;
V_3 = ((int32_t)((uint32_t)L_5>>((int32_t)31)));
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_6 = V_0;
uint32_t L_7 = L_6.___UInt_2;
uint32_t L_8 = V_2;
V_4 = ((int32_t)(((int32_t)il2cpp_codegen_subtract(((int32_t)-2147483648LL), (int32_t)L_7))&(int32_t)L_8));
uint32_t L_9 = V_4;
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_10 = V_0;
uint32_t L_11 = L_10.___UInt_2;
uint32_t L_12 = V_2;
(&V_0)->___UInt_2 = ((int32_t)((int32_t)L_9|((int32_t)((int32_t)L_11&(int32_t)((~L_12))))));
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_13 = V_1;
uint32_t L_14 = L_13.___UInt_2;
uint32_t L_15 = V_3;
V_5 = ((int32_t)(((int32_t)il2cpp_codegen_subtract(((int32_t)-2147483648LL), (int32_t)L_14))&(int32_t)L_15));
uint32_t L_16 = V_5;
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_17 = V_1;
uint32_t L_18 = L_17.___UInt_2;
uint32_t L_19 = V_3;
(&V_1)->___UInt_2 = ((int32_t)((int32_t)L_16|((int32_t)((int32_t)L_18&(int32_t)((~L_19))))));
uint32_t L_20 = V_2;
uint32_t L_21 = V_3;
V_6 = (bool)((((int32_t)((((int32_t)L_20) == ((int32_t)L_21))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_22 = V_6;
if (!L_22)
{
goto IL_00b4;
}
}
{
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_23 = V_0;
int32_t L_24 = L_23.___Int_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_25;
L_25 = il2cpp_codegen_abs(L_24);
int32_t L_26 = ___maxUlps2;
if ((((int32_t)L_25) > ((int32_t)L_26)))
{
goto IL_00a7;
}
}
{
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_27 = V_1;
int32_t L_28 = L_27.___Int_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_29;
L_29 = il2cpp_codegen_abs(L_28);
int32_t L_30 = ___maxUlps2;
G_B4_0 = ((((int32_t)L_29) > ((int32_t)L_30))? 1 : 0);
goto IL_00a8;
}
IL_00a7:
{
G_B4_0 = 1;
}
IL_00a8:
{
V_7 = (bool)G_B4_0;
bool L_31 = V_7;
if (!L_31)
{
goto IL_00b3;
}
}
{
V_8 = (bool)0;
goto IL_00d0;
}
IL_00b3:
{
}
IL_00b4:
{
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_32 = V_0;
int32_t L_33 = L_32.___Int_1;
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_34 = V_1;
int32_t L_35 = L_34.___Int_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_36;
L_36 = il2cpp_codegen_abs(((int32_t)il2cpp_codegen_subtract(L_33, L_35)));
int32_t L_37 = ___maxUlps2;
V_8 = (bool)((((int32_t)((((int32_t)L_36) > ((int32_t)L_37))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d0;
}
IL_00d0:
{
bool L_38 = V_8;
return L_38;
}
}
// System.Boolean NUnit.Framework.Constraints.FloatingPointNumerics::AreAlmostEqualUlps(System.Double,System.Double,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FloatingPointNumerics_AreAlmostEqualUlps_mA25D9D3E837549F74A37961999E8F7B73ED30381 (double ___left0, double ___right1, int64_t ___maxUlps2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 V_0;
memset((&V_0), 0, sizeof(V_0));
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 V_1;
memset((&V_1), 0, sizeof(V_1));
uint64_t V_2 = 0;
uint64_t V_3 = 0;
uint64_t V_4 = 0;
uint64_t V_5 = 0;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
int32_t G_B4_0 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3));
il2cpp_codegen_initobj((&V_1), sizeof(DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3));
double L_0 = ___left0;
(&V_0)->___Double_0 = L_0;
double L_1 = ___right1;
(&V_1)->___Double_0 = L_1;
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_2 = V_0;
uint64_t L_3 = L_2.___ULong_2;
V_2 = ((int64_t)((uint64_t)L_3>>((int32_t)63)));
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_4 = V_1;
uint64_t L_5 = L_4.___ULong_2;
V_3 = ((int64_t)((uint64_t)L_5>>((int32_t)63)));
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_6 = V_0;
uint64_t L_7 = L_6.___ULong_2;
uint64_t L_8 = V_2;
V_4 = ((int64_t)(((int64_t)il2cpp_codegen_subtract(((int64_t)(std::numeric_limits<int64_t>::min)()), (int64_t)L_7))&(int64_t)L_8));
uint64_t L_9 = V_4;
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_10 = V_0;
uint64_t L_11 = L_10.___ULong_2;
uint64_t L_12 = V_2;
(&V_0)->___ULong_2 = ((int64_t)((int64_t)L_9|((int64_t)((int64_t)L_11&(int64_t)((~L_12))))));
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_13 = V_1;
uint64_t L_14 = L_13.___ULong_2;
uint64_t L_15 = V_3;
V_5 = ((int64_t)(((int64_t)il2cpp_codegen_subtract(((int64_t)(std::numeric_limits<int64_t>::min)()), (int64_t)L_14))&(int64_t)L_15));
uint64_t L_16 = V_5;
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_17 = V_1;
uint64_t L_18 = L_17.___ULong_2;
uint64_t L_19 = V_3;
(&V_1)->___ULong_2 = ((int64_t)((int64_t)L_16|((int64_t)((int64_t)L_18&(int64_t)((~L_19))))));
uint64_t L_20 = V_2;
uint64_t L_21 = V_3;
V_6 = (bool)((((int32_t)((((int64_t)L_20) == ((int64_t)L_21))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_22 = V_6;
if (!L_22)
{
goto IL_00bc;
}
}
{
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_23 = V_0;
int64_t L_24 = L_23.___Long_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int64_t L_25;
L_25 = il2cpp_codegen_abs(L_24);
int64_t L_26 = ___maxUlps2;
if ((((int64_t)L_25) > ((int64_t)L_26)))
{
goto IL_00af;
}
}
{
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_27 = V_1;
int64_t L_28 = L_27.___Long_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int64_t L_29;
L_29 = il2cpp_codegen_abs(L_28);
int64_t L_30 = ___maxUlps2;
G_B4_0 = ((((int64_t)L_29) > ((int64_t)L_30))? 1 : 0);
goto IL_00b0;
}
IL_00af:
{
G_B4_0 = 1;
}
IL_00b0:
{
V_7 = (bool)G_B4_0;
bool L_31 = V_7;
if (!L_31)
{
goto IL_00bb;
}
}
{
V_8 = (bool)0;
goto IL_00d8;
}
IL_00bb:
{
}
IL_00bc:
{
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_32 = V_0;
int64_t L_33 = L_32.___Long_1;
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_34 = V_1;
int64_t L_35 = L_34.___Long_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int64_t L_36;
L_36 = il2cpp_codegen_abs(((int64_t)il2cpp_codegen_subtract(L_33, L_35)));
int64_t L_37 = ___maxUlps2;
V_8 = (bool)((((int32_t)((((int64_t)L_36) > ((int64_t)L_37))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d8;
}
IL_00d8:
{
bool L_38 = V_8;
return L_38;
}
}
// System.Int32 NUnit.Framework.Constraints.FloatingPointNumerics::ReinterpretAsInt(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FloatingPointNumerics_ReinterpretAsInt_m72E9754C1DD7903FC5CA61BD1B44CF97609DA0EA (float ___value0, const RuntimeMethod* method)
{
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A));
float L_0 = ___value0;
(&V_0)->___Float_0 = L_0;
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_1 = V_0;
int32_t L_2 = L_1.___Int_1;
V_1 = L_2;
goto IL_001a;
}
IL_001a:
{
int32_t L_3 = V_1;
return L_3;
}
}
// System.Int64 NUnit.Framework.Constraints.FloatingPointNumerics::ReinterpretAsLong(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t FloatingPointNumerics_ReinterpretAsLong_mF5E0CE65B2A94E0F15D1E10919745C0648A384DD (double ___value0, const RuntimeMethod* method)
{
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 V_0;
memset((&V_0), 0, sizeof(V_0));
int64_t V_1 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3));
double L_0 = ___value0;
(&V_0)->___Double_0 = L_0;
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_1 = V_0;
int64_t L_2 = L_1.___Long_1;
V_1 = L_2;
goto IL_001a;
}
IL_001a:
{
int64_t L_3 = V_1;
return L_3;
}
}
// System.Single NUnit.Framework.Constraints.FloatingPointNumerics::ReinterpretAsFloat(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float FloatingPointNumerics_ReinterpretAsFloat_mD9FE929C7B7542382E06F43EBF1FB5AC473B4740 (int32_t ___value0, const RuntimeMethod* method)
{
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A V_0;
memset((&V_0), 0, sizeof(V_0));
float V_1 = 0.0f;
{
il2cpp_codegen_initobj((&V_0), sizeof(FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A));
int32_t L_0 = ___value0;
(&V_0)->___Int_1 = L_0;
FloatIntUnion_t415F5854F9874AD42FF31369A6D07A5B466D036A L_1 = V_0;
float L_2 = L_1.___Float_0;
V_1 = L_2;
goto IL_001a;
}
IL_001a:
{
float L_3 = V_1;
return L_3;
}
}
// System.Double NUnit.Framework.Constraints.FloatingPointNumerics::ReinterpretAsDouble(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double FloatingPointNumerics_ReinterpretAsDouble_m6CCF59A248E0D2A8B1C707D5F43A469E8FFC4CEF (int64_t ___value0, const RuntimeMethod* method)
{
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 V_0;
memset((&V_0), 0, sizeof(V_0));
double V_1 = 0.0;
{
il2cpp_codegen_initobj((&V_0), sizeof(DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3));
int64_t L_0 = ___value0;
(&V_0)->___Long_1 = L_0;
DoubleLongUnion_tE74DC95EBC1C3095DB2B728452659BF468768EC3 L_1 = V_0;
double L_2 = L_1.___Double_0;
V_1 = L_2;
goto IL_001a;
}
IL_001a:
{
double L_3 = V_1;
return L_3;
}
}
// System.Void NUnit.Framework.Constraints.FloatingPointNumerics::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FloatingPointNumerics__ctor_m31BE50CFA02C73941875F3B11A713D52AEF6CA91 (FloatingPointNumerics_tDB6D5E9FFB9031B3FB49579A97F37F9545472346* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.GreaterThanConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GreaterThanConstraint__ctor_m6DC3AD8BDC6EE3EBC72F81D3E2C3FC51B14361F7 (GreaterThanConstraint_tBBCF561A0563D2EC86B476A651BBA29C2F78403F* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF6C5A885B776A3A44FF20F2FAF5089F2C7C2E58D);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
ComparisonConstraint__ctor_m2A4E6025F3219D86FA14532687F481C858722270(__this, L_0, (bool)0, (bool)0, (bool)1, _stringLiteralF6C5A885B776A3A44FF20F2FAF5089F2C7C2E58D, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.GreaterThanOrEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GreaterThanOrEqualConstraint__ctor_m821194608471D5FAF069FAE92F8779D306DD80B4 (GreaterThanOrEqualConstraint_t0656B78D26378143E345795ED5DAC5D184B22848* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29B064EA8495F9C70E9419758FFD9E876B7DEFA9);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
ComparisonConstraint__ctor_m2A4E6025F3219D86FA14532687F481C858722270(__this, L_0, (bool)0, (bool)1, (bool)1, _stringLiteral29B064EA8495F9C70E9419758FFD9E876B7DEFA9, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_m715C169443DE08DA8C3F016926652D92EA22FB19 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___constraint0;
__this->____constraint_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->____constraint_0), (void*)L_0);
RuntimeObject* L_1 = ___actualValue1;
ConstraintResult_set_ActualValue_m451F15612B5A16C44F559B8EE061B88F2B210016_inline(__this, L_1, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object,NUnit.Framework.Constraints.ConstraintStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, int32_t ___status2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___constraint0;
RuntimeObject* L_1 = ___actualValue1;
ConstraintResult__ctor_m715C169443DE08DA8C3F016926652D92EA22FB19(__this, L_0, L_1, NULL);
int32_t L_2 = ___status2;
ConstraintResult_set_Status_m76C630530199E02CCBC93BB748D8EB5F85F444CB_inline(__this, L_2, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintResult::.ctor(NUnit.Framework.Constraints.IConstraint,System.Object,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___constraint0, RuntimeObject* ___actualValue1, bool ___isSuccess2, const RuntimeMethod* method)
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B2_0 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B1_0 = NULL;
int32_t G_B3_0 = 0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* G_B3_1 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
RuntimeObject* L_1 = ___actualValue1;
ConstraintResult__ctor_m715C169443DE08DA8C3F016926652D92EA22FB19(__this, L_0, L_1, NULL);
bool L_2 = ___isSuccess2;
G_B1_0 = __this;
if (L_2)
{
G_B2_0 = __this;
goto IL_0011;
}
}
{
G_B3_0 = 2;
G_B3_1 = G_B1_0;
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
G_B3_1 = G_B2_0;
}
IL_0012:
{
NullCheck(G_B3_1);
ConstraintResult_set_Status_m76C630530199E02CCBC93BB748D8EB5F85F444CB_inline(G_B3_1, G_B3_0, NULL);
return;
}
}
// System.Object NUnit.Framework.Constraints.ConstraintResult::get_ActualValue()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CActualValueU3Ek__BackingField_1;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintResult::set_ActualValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult_set_ActualValue_m451F15612B5A16C44F559B8EE061B88F2B210016 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CActualValueU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CActualValueU3Ek__BackingField_1), (void*)L_0);
return;
}
}
// NUnit.Framework.Constraints.ConstraintStatus NUnit.Framework.Constraints.ConstraintResult::get_Status()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConstraintResult_get_Status_mAEE12663BC9208C46E3A4F58F3D9F53C2B5361E1 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CStatusU3Ek__BackingField_2;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintResult::set_Status(NUnit.Framework.Constraints.ConstraintStatus)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult_set_Status_m76C630530199E02CCBC93BB748D8EB5F85F444CB (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CStatusU3Ek__BackingField_2 = L_0;
return;
}
}
// System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConstraintResult_get_IsSuccess_m484CCD08CF112BCDAA692F1D7B0E48DA57AD89E7 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0;
L_0 = ConstraintResult_get_Status_mAEE12663BC9208C46E3A4F58F3D9F53C2B5361E1_inline(__this, NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0);
goto IL_000d;
}
IL_000d:
{
bool L_1 = V_0;
return L_1;
}
}
// System.String NUnit.Framework.Constraints.ConstraintResult::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConstraintResult_get_Name_m2845CF39D7E0F9A01FB8D5ABD421E892071AB329 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____constraint_0;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* System.String NUnit.Framework.Constraints.IConstraint::get_DisplayName() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.String NUnit.Framework.Constraints.ConstraintResult::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConstraintResult_get_Description_m19551C91CCD01366CBF7DFF58BC0E76135CD0750 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->____constraint_0;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintResult::WriteMessageTo(NUnit.Framework.Constraints.MessageWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult_WriteMessageTo_m61F6E76D45E19FBEB0AC65360C1AE5AD92808157 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, const RuntimeMethod* method)
{
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_0 = ___writer0;
NullCheck(L_0);
VirtualActionInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* >::Invoke(54 /* System.Void NUnit.Framework.Constraints.MessageWriter::DisplayDifferences(NUnit.Framework.Constraints.ConstraintResult) */, L_0, __this);
return;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintResult::WriteActualValueTo(NUnit.Framework.Constraints.MessageWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintResult_WriteActualValueTo_mE6F88F20312A3AA37B37E921DAE6C408E79820B1 (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* ___writer0, const RuntimeMethod* method)
{
{
MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* L_0 = ___writer0;
RuntimeObject* L_1;
L_1 = ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline(__this, NULL);
NullCheck(L_0);
VirtualActionInvoker1< RuntimeObject* >::Invoke(58 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteActualValue(System.Object) */, L_0, L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.InstanceOfTypeConstraint::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstanceOfTypeConstraint__ctor_m9B9F2E8201CAE6D3B6193DB6E10E98FBD785CBD3 (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* __this, Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral741EA3111EF41130FF524F0911C55B5510DAACBF);
s_Il2CppMethodInitialized = true;
}
{
Type_t* L_0 = ___type0;
TypeConstraint__ctor_m2E90D1A14179614B327FA9909AFAB764D6461640(__this, L_0, _stringLiteral741EA3111EF41130FF524F0911C55B5510DAACBF, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.InstanceOfTypeConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* InstanceOfTypeConstraint_get_DisplayName_m87E056E6064A4EF2A22FF1247EBD5261B617A778 (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08DC2676C8B263DB8BF11206DC4DA6AA2CBA0128);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral08DC2676C8B263DB8BF11206DC4DA6AA2CBA0128;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// System.Boolean NUnit.Framework.Constraints.InstanceOfTypeConstraint::Matches(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InstanceOfTypeConstraint_Matches_m8F6FC47BEA499476630B10297DDCCB541561977A (InstanceOfTypeConstraint_tEFA6950D0AF65BBAEA5C90B0B21EA8F3F7E0866F* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___actual0;
if (!L_0)
{
goto IL_0012;
}
}
{
Type_t* L_1 = ((TypeConstraint_tD54E1D82D2FE46DD2617C131D5D18ACD243137A0*)__this)->___expectedType_4;
RuntimeObject* L_2 = ___actual0;
NullCheck(L_1);
bool L_3;
L_3 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(118 /* System.Boolean System.Type::IsInstanceOfType(System.Object) */, L_1, L_2);
G_B3_0 = ((int32_t)(L_3));
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
}
IL_0013:
{
V_0 = (bool)G_B3_0;
goto IL_0016;
}
IL_0016:
{
bool L_4 = V_0;
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.LessThanConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LessThanConstraint__ctor_m0BE1C7F5C9E276D5AAADE492B98935690E7B98F4 (LessThanConstraint_t9EF0DD2342F22D88222B106A385087F9FCEAB942* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4C21454E82835B5ED9112FAD85F99E2DF0908A06);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
ComparisonConstraint__ctor_m2A4E6025F3219D86FA14532687F481C858722270(__this, L_0, (bool)1, (bool)0, (bool)0, _stringLiteral4C21454E82835B5ED9112FAD85F99E2DF0908A06, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.LessThanOrEqualConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LessThanOrEqualConstraint__ctor_mA03764E719298E2E14F8E9D66AD5275B58379AF9 (LessThanOrEqualConstraint_t573C1D12DCD330193256BFC66D77BC04C3030663* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3E37F88667FFD2C0260C46D0AC3074419926FDD6);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___expected0;
ComparisonConstraint__ctor_m2A4E6025F3219D86FA14532687F481C858722270(__this, L_0, (bool)1, (bool)1, (bool)0, _stringLiteral3E37F88667FFD2C0260C46D0AC3074419926FDD6, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MessageWriter::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageWriter__ctor_m8E092A5FA8A8013C1FB2FF1C76EE8D04AF794E70 (MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0;
L_0 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
StringWriter__ctor_mE3EE42D6B6B6CE4F81849022B19FFC1842FB3FCA(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MessageWriter_WriteMessageLine_mA5F4CFC9E5A1FE2B78154BA7F77A6C5477ACC0AC (MessageWriter_t0009A9189A97BED228F821A8D23134014A07F80E* __this, String_t* ___message0, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___args1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = ___args1;
VirtualActionInvoker3< int32_t, String_t*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(53 /* System.Void NUnit.Framework.Constraints.MessageWriter::WriteMessageLine(System.Int32,System.String,System.Object[]) */, __this, 0, L_0, L_1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Multicast(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef String_t* (*FunctionPointerType) (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method);
String_t* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* currentDelegate = reinterpret_cast<ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___val0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Open(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___val0, method);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Closed(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___val0, method);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenStaticInvoker(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< String_t*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, ___val0);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_ClosedStaticInvoker(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< String_t*, RuntimeObject*, RuntimeObject* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___val0);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenVirtual(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
return VirtualFuncInvoker0< String_t* >::Invoke(il2cpp_codegen_method_get_slot(method), ___val0);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenInterface(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
return InterfaceFuncInvoker0< String_t* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___val0);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenGenericVirtual(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
return GenericVirtualFuncInvoker0< String_t* >::Invoke(method, ___val0);
}
String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenGenericInterface(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
return GenericInterfaceFuncInvoker0< String_t* >::Invoke(method, ___val0);
}
// System.Void NUnit.Framework.Constraints.ValueFormatter::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700 (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Open;
else
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
if (__this->___method_is_virtual_12)
{
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___method1))
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenGenericInterface;
else
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenGenericVirtual;
else
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___method1))
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenInterface;
else
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_OpenVirtual;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Open;
}
}
else
{
__this->___invoke_impl_1 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_Multicast;
}
// System.String NUnit.Framework.Constraints.ValueFormatter::Invoke(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149 (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___val0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
// System.IAsyncResult NUnit.Framework.Constraints.ValueFormatter::BeginInvoke(System.Object,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueFormatter_BeginInvoke_m0C2702936159F023260ABF1B41B92D61CCD17D14 (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback1, RuntimeObject* ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___val0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// System.String NUnit.Framework.Constraints.ValueFormatter::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ValueFormatter_EndInvoke_m7815CBE9E4387E55929DC7C317D793AEBD1BCB5A (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (String_t*)__result;;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Multicast(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
il2cpp_array_size_t length = __this->___delegates_13->max_length;
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates_13->GetAddressAtUnchecked(0));
typedef ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* (*FunctionPointerType) (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* retVal = NULL;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* currentDelegate = reinterpret_cast<ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*>(delegatesToInvoke[i]);
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl_1)(currentDelegate, ___next0, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method_3));
}
return retVal;
}
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Open(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
typedef ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* (*FunctionPointerType) (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(___next0, method);
}
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Closed(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
typedef ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* (*FunctionPointerType) (RuntimeObject*, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*, const RuntimeMethod*);
return ((FunctionPointerType)__this->___method_ptr_0)(__this->___m_target_2, ___next0, method);
}
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_OpenStaticInvoker(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
return InvokerFuncInvoker1< ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* >::Invoke(__this->___method_ptr_0, method, NULL, ___next0);
}
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_ClosedStaticInvoker(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
return InvokerFuncInvoker2< ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*, RuntimeObject*, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* >::Invoke(__this->___method_ptr_0, method, NULL, __this->___m_target_2, ___next0);
}
IL2CPP_EXTERN_C ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* DelegatePInvokeWrapper_ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
typedef Il2CppMethodPointer (DEFAULT_CALL *PInvokeFunc)(Il2CppMethodPointer);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_reverse_pinvoke_function_ptr(__this));
// Marshaling of parameter '___next0' to native representation
Il2CppMethodPointer ____next0_marshaled = NULL;
____next0_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___next0));
// Native function invocation
Il2CppMethodPointer returnValue = il2cppPInvokeFunc(____next0_marshaled);
// Marshaling of return value back from native representation
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* _returnValue_unmarshaled = NULL;
_returnValue_unmarshaled = il2cpp_codegen_marshal_function_ptr_to_delegate<ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6>(returnValue, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
return _returnValue_unmarshaled;
}
// System.Void NUnit.Framework.Constraints.ValueFormatterFactory::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, RuntimeObject* ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
__this->___method_ptr_0 = il2cpp_codegen_get_virtual_call_method_pointer((RuntimeMethod*)___method1);
__this->___method_3 = ___method1;
__this->___m_target_2 = ___object0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target_2), (void*)___object0);
int methodCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___method1);
if (MethodIsStatic((RuntimeMethod*)___method1))
{
bool isOpen = methodCount == 1;
if (il2cpp_codegen_call_method_via_invoker((RuntimeMethod*)___method1))
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_OpenStaticInvoker;
else
__this->___invoke_impl_1 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_ClosedStaticInvoker;
else
if (isOpen)
__this->___invoke_impl_1 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Open;
else
__this->___invoke_impl_1 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Closed;
}
else
{
bool isOpen = methodCount == 0;
if (isOpen)
{
__this->___invoke_impl_1 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Open;
}
else
{
__this->___invoke_impl_1 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Closed;
}
}
__this->___extra_arg_5 = (intptr_t)&ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_Multicast;
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.ValueFormatterFactory::Invoke(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
typedef ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* (*FunctionPointerType) (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___next0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
// System.IAsyncResult NUnit.Framework.Constraints.ValueFormatterFactory::BeginInvoke(NUnit.Framework.Constraints.ValueFormatter,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueFormatterFactory_BeginInvoke_m8E8EDD58288BBD4786CC6B6293CEC5B16C630AD3 (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C* ___callback1, RuntimeObject* ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___next0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);;
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.ValueFormatterFactory::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_EndInvoke_mE893C67DE58F603386AC1CBEC09C611237CD2761 (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)__result;;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils::get_DefaultValueFormatter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* MsgUtils_get_DefaultValueFormatter_mC953FE835D165642006E0F7497A39D244EAD59E4 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_0 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___U3CDefaultValueFormatterU3Ek__BackingField_10;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.MsgUtils::set_DefaultValueFormatter(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MsgUtils_set_DefaultValueFormatter_mA2259E77F04F1E9E859AA52CF805FFD0B9FA1170 (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_0 = ___value0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___U3CDefaultValueFormatterU3Ek__BackingField_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___U3CDefaultValueFormatterU3Ek__BackingField_10), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Constraints.MsgUtils::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MsgUtils__cctor_m25EB8FF1A973189FECD03D6A81F4E0AC650675C7 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_0_mCFD0C6F92505AB88849A0AF76EBD5B8CF9B9BBDD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_10_mB78183EB9E63158E841DA1F7CE1E2800059F1819_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_1_mA8E1A38AFDEE95272AE2FBD0BC17D19B707A043C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_2_m46C1FFEDB404DAB2F81D487498F90BBE26734C4D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_3_m875F69966DD4235BBFD546B51595167237F2D4B4_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_4_m2779423DE5DC890D3E011D8EF8B95EDD7EB4FBAA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_5_m70CEF8F867B44941E967AE4323C8D725CE6B9560_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_6_m938146C15752CCAC602BF4FDBE409825C3020CEF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_7_mA476F1B31B1BE5B7E9723FE1BFF1196E6E4557E9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_8_mEE0543AEFE88DAFBF16D562F01BE89F2C02BAC2F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__14_9_m82DBB36839F9CF2DAAD49F5B42E380D82E9CBAFB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral220E58C948EAE5ED02BF3DAD8CC848C2A26DA977);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral49A5AAB83859C60FC692064F7CA72853E8B6B189);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63A81BF09BF6D663EE7A4CA8E2BF41ACB795C4BF);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral85E7919FC838CD60F5317F3EF518BCDCD05B934A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD9816A6D140B35275DB7D0C09753D3B69D272492);
s_Il2CppMethodInitialized = true;
}
{
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Null_1 = _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Null_1), (void*)_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyString_2 = _stringLiteralD9816A6D140B35275DB7D0C09753D3B69D272492;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyString_2), (void*)_stringLiteralD9816A6D140B35275DB7D0C09753D3B69D272492);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyCollection_3 = _stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyCollection_3), (void*)_stringLiteral6536BE59F0E519C5A741CF907BA6A7047B763361);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_String_4 = _stringLiteral49A5AAB83859C60FC692064F7CA72853E8B6B189;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_String_4), (void*)_stringLiteral49A5AAB83859C60FC692064F7CA72853E8B6B189);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Char_5 = _stringLiteral63A81BF09BF6D663EE7A4CA8E2BF41ACB795C4BF;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Char_5), (void*)_stringLiteral63A81BF09BF6D663EE7A4CA8E2BF41ACB795C4BF);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_DateTime_6 = _stringLiteral220E58C948EAE5ED02BF3DAD8CC848C2A26DA977;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_DateTime_6), (void*)_stringLiteral220E58C948EAE5ED02BF3DAD8CC848C2A26DA977);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_DateTimeOffset_7 = _stringLiteral85E7919FC838CD60F5317F3EF518BCDCD05B934A;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_DateTimeOffset_7), (void*)_stringLiteral85E7919FC838CD60F5317F3EF518BCDCD05B934A);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_ValueType_8 = _stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_ValueType_8), (void*)_stringLiteral23114468D04FA2B7A2DA455B545DB914D0A3ED94);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Default_9 = _stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Default_9), (void*)_stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4);
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_0 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_1);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_1, L_0, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_0_mCFD0C6F92505AB88849A0AF76EBD5B8CF9B9BBDD_RuntimeMethod_var), NULL);
MsgUtils_set_DefaultValueFormatter_mA2259E77F04F1E9E859AA52CF805FFD0B9FA1170_inline(L_1, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_2 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_3 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_3);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_1_mA8E1A38AFDEE95272AE2FBD0BC17D19B707A043C_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_3, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_4 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_5 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_5);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_5, L_4, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_2_m46C1FFEDB404DAB2F81D487498F90BBE26734C4D_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_5, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_6 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_7 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_7);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_7, L_6, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_3_m875F69966DD4235BBFD546B51595167237F2D4B4_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_7, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_8 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_9 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_9);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_9, L_8, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_4_m2779423DE5DC890D3E011D8EF8B95EDD7EB4FBAA_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_9, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_10 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_11 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_11);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_11, L_10, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_5_m70CEF8F867B44941E967AE4323C8D725CE6B9560_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_11, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_12 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_13 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_13);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_13, L_12, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_6_m938146C15752CCAC602BF4FDBE409825C3020CEF_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_13, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_14 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_15 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_15);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_15, L_14, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_7_mA476F1B31B1BE5B7E9723FE1BFF1196E6E4557E9_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_15, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_16 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_17 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_17);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_17, L_16, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_8_mEE0543AEFE88DAFBF16D562F01BE89F2C02BAC2F_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_17, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_18 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_19 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_19);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_19, L_18, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_9_m82DBB36839F9CF2DAAD49F5B42E380D82E9CBAFB_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_19, NULL);
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_20 = ((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0;
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_21 = (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF*)il2cpp_codegen_object_new(ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF_il2cpp_TypeInfo_var);
NullCheck(L_21);
ValueFormatterFactory__ctor_m276AD5F58A99CB1160ED4482206521F2A3058EEF(L_21, L_20, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__14_10_mB78183EB9E63158E841DA1F7CE1E2800059F1819_RuntimeMethod_var), NULL);
MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF(L_21, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.MsgUtils::AddFormatter(NUnit.Framework.Constraints.ValueFormatterFactory)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MsgUtils_AddFormatter_m274447C5418E367503125C9B6F088638207BC7CF (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* ___formatterFactory0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* L_0 = ___formatterFactory0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1;
L_1 = MsgUtils_get_DefaultValueFormatter_mC953FE835D165642006E0F7497A39D244EAD59E4_inline(NULL);
NullCheck(L_0);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2;
L_2 = ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_inline(L_0, L_1, NULL);
MsgUtils_set_DefaultValueFormatter_mA2259E77F04F1E9E859AA52CF805FFD0B9FA1170_inline(L_2, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatValue(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497 (RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
bool V_3 = false;
{
RuntimeObject* L_0 = ___val0;
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0011;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_2 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Null_1;
V_2 = L_2;
goto IL_003c;
}
IL_0011:
{
il2cpp_codegen_runtime_class_init_inline(TestExecutionContext_t894A09A28013F4952F9E9B4949E85F4E4F2F7471_il2cpp_TypeInfo_var);
RuntimeObject* L_3;
L_3 = TestExecutionContext_get_CurrentContext_m9C2BF9353ADCDDE43E88B69834672EC34829EEE5(NULL);
V_0 = L_3;
RuntimeObject* L_4 = V_0;
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002e;
}
}
{
RuntimeObject* L_6 = V_0;
NullCheck(L_6);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_7;
L_7 = InterfaceFuncInvoker0< ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* >::Invoke(30 /* NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Internal.ITestExecutionContext::get_CurrentValueFormatter() */, ITestExecutionContext_t8CD71AA58964215CD511C979417A68F345BE8112_il2cpp_TypeInfo_var, L_6);
RuntimeObject* L_8 = ___val0;
NullCheck(L_7);
String_t* L_9;
L_9 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_7, L_8, NULL);
V_2 = L_9;
goto IL_003c;
}
IL_002e:
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_10;
L_10 = MsgUtils_get_DefaultValueFormatter_mC953FE835D165642006E0F7497A39D244EAD59E4_inline(NULL);
RuntimeObject* L_11 = ___val0;
NullCheck(L_10);
String_t* L_12;
L_12 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_10, L_11, NULL);
V_2 = L_12;
goto IL_003c;
}
IL_003c:
{
String_t* L_13 = V_2;
return L_13;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatCollection(System.Collections.IEnumerable,System.Int64,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatCollection_m97DAC016B9B959E59DE2B51127BDD1D33A4F0A32 (RuntimeObject* ___collection0, int64_t ___start1, int32_t ___max2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FDB12CAF040DE0941DCA5DA173D724FBE249CE3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BC0DDE05F2C6C9622C6E5C5BB9B48E7B1915C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
StringBuilder_t* V_2 = NULL;
RuntimeObject* V_3 = NULL;
RuntimeObject* V_4 = NULL;
bool V_5 = false;
bool V_6 = false;
RuntimeObject* V_7 = NULL;
bool V_8 = false;
String_t* V_9 = NULL;
bool V_10 = false;
StringBuilder_t* G_B7_0 = NULL;
StringBuilder_t* G_B6_0 = NULL;
String_t* G_B8_0 = NULL;
StringBuilder_t* G_B8_1 = NULL;
{
V_0 = 0;
V_1 = 0;
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_2 = L_0;
RuntimeObject* L_1 = ___collection0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_1);
V_3 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0072:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_3;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_3, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_4 = V_7;
if (!L_4)
{
goto IL_0086;
}
}
{
RuntimeObject* L_5 = V_7;
NullCheck(L_5);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
}
IL_0086:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0068_1;
}
IL_0015_1:
{
RuntimeObject* L_6 = V_3;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_6);
V_4 = L_7;
int32_t L_8 = V_1;
int32_t L_9 = L_8;
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
int64_t L_10 = ___start1;
V_5 = (bool)((((int32_t)((((int64_t)((int64_t)L_9)) < ((int64_t)L_10))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_11 = V_5;
if (!L_11)
{
goto IL_0067_1;
}
}
{
int32_t L_12 = V_0;
int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_12, 1));
V_0 = L_13;
int32_t L_14 = ___max2;
V_6 = (bool)((((int32_t)L_13) > ((int32_t)L_14))? 1 : 0);
bool L_15 = V_6;
if (!L_15)
{
goto IL_0041_1;
}
}
{
goto IL_0070_1;
}
IL_0041_1:
{
StringBuilder_t* L_16 = V_2;
int32_t L_17 = V_0;
G_B6_0 = L_16;
if ((((int32_t)L_17) == ((int32_t)1)))
{
G_B7_0 = L_16;
goto IL_004d_1;
}
}
{
G_B8_0 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
G_B8_1 = G_B6_0;
goto IL_0052_1;
}
IL_004d_1:
{
G_B8_0 = _stringLiteral2FDB12CAF040DE0941DCA5DA173D724FBE249CE3;
G_B8_1 = G_B7_0;
}
IL_0052_1:
{
NullCheck(G_B8_1);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(G_B8_1, G_B8_0, NULL);
StringBuilder_t* L_19 = V_2;
RuntimeObject* L_20 = V_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_21;
L_21 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_20, NULL);
NullCheck(L_19);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, L_21, NULL);
}
IL_0067_1:
{
}
IL_0068_1:
{
RuntimeObject* L_23 = V_3;
NullCheck(L_23);
bool L_24;
L_24 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
if (L_24)
{
goto IL_0015_1;
}
}
IL_0070_1:
{
goto IL_0087;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0087:
{
int32_t L_25 = V_0;
V_8 = (bool)((((int32_t)L_25) == ((int32_t)0))? 1 : 0);
bool L_26 = V_8;
if (!L_26)
{
goto IL_009a;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_27 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyCollection_3;
V_9 = L_27;
goto IL_00c6;
}
IL_009a:
{
int32_t L_28 = V_0;
int32_t L_29 = ___max2;
V_10 = (bool)((((int32_t)L_28) > ((int32_t)L_29))? 1 : 0);
bool L_30 = V_10;
if (!L_30)
{
goto IL_00b0;
}
}
{
StringBuilder_t* L_31 = V_2;
NullCheck(L_31);
StringBuilder_t* L_32;
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_31, _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
}
IL_00b0:
{
StringBuilder_t* L_33 = V_2;
NullCheck(L_33);
StringBuilder_t* L_34;
L_34 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_33, _stringLiteralA0BC0DDE05F2C6C9622C6E5C5BB9B48E7B1915C1, NULL);
StringBuilder_t* L_35 = V_2;
NullCheck(L_35);
String_t* L_36;
L_36 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_35);
V_9 = L_36;
goto IL_00c6;
}
IL_00c6:
{
String_t* L_37 = V_9;
return L_37;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatArray(System.Array)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatArray_m244613146251B6C84497DC592294FDB037184DED (RuntimeArray* ___array0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FDB12CAF040DE0941DCA5DA173D724FBE249CE3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA0BC0DDE05F2C6C9622C6E5C5BB9B48E7B1915C1);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
int32_t V_2 = 0;
StringBuilder_t* V_3 = NULL;
bool V_4 = false;
String_t* V_5 = NULL;
int32_t V_6 = 0;
int32_t V_7 = 0;
bool V_8 = false;
RuntimeObject* V_9 = NULL;
RuntimeObject* V_10 = NULL;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
int32_t V_14 = 0;
bool V_15 = false;
bool V_16 = false;
int32_t V_17 = 0;
bool V_18 = false;
bool V_19 = false;
RuntimeObject* V_20 = NULL;
int32_t G_B13_0 = 0;
int32_t G_B21_0 = 0;
{
RuntimeArray* L_0 = ___array0;
NullCheck(L_0);
int32_t L_1;
L_1 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_0, NULL);
V_4 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
bool L_2 = V_4;
if (!L_2)
{
goto IL_001c;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_3 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyCollection_3;
V_5 = L_3;
goto IL_0150;
}
IL_001c:
{
RuntimeArray* L_4 = ___array0;
NullCheck(L_4);
int32_t L_5;
L_5 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_4, NULL);
V_0 = L_5;
int32_t L_6 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_6);
V_1 = L_7;
V_6 = 1;
int32_t L_8 = V_0;
V_7 = L_8;
goto IL_0044;
}
IL_0032:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = V_1;
int32_t L_10 = V_7;
int32_t L_11 = V_6;
RuntimeArray* L_12 = ___array0;
int32_t L_13 = V_7;
NullCheck(L_12);
int32_t L_14;
L_14 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_12, L_13, NULL);
int32_t L_15 = ((int32_t)il2cpp_codegen_multiply(L_11, L_14));
V_6 = L_15;
NullCheck(L_9);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (int32_t)L_15);
}
IL_0044:
{
int32_t L_16 = V_7;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
V_7 = L_17;
V_8 = (bool)((((int32_t)((((int32_t)L_17) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_18 = V_8;
if (L_18)
{
goto IL_0032;
}
}
{
V_2 = 0;
StringBuilder_t* L_19 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_19);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_19, NULL);
V_3 = L_19;
RuntimeArray* L_20 = ___array0;
NullCheck(L_20);
RuntimeObject* L_21;
L_21 = Array_GetEnumerator_mDB7E2AF23F2BDC715D429C71CA3B8D0151F0DC1E(L_20, NULL);
V_9 = L_21;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0130:
{// begin finally (depth: 1)
{
RuntimeObject* L_22 = V_9;
V_20 = ((RuntimeObject*)IsInst((RuntimeObject*)L_22, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_23 = V_20;
if (!L_23)
{
goto IL_0145;
}
}
{
RuntimeObject* L_24 = V_20;
NullCheck(L_24);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_24);
}
IL_0145:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0122_1;
}
IL_006d_1:
{
RuntimeObject* L_25 = V_9;
NullCheck(L_25);
RuntimeObject* L_26;
L_26 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_25);
V_10 = L_26;
int32_t L_27 = V_2;
V_13 = (bool)((((int32_t)L_27) > ((int32_t)0))? 1 : 0);
bool L_28 = V_13;
if (!L_28)
{
goto IL_008d_1;
}
}
{
StringBuilder_t* L_29 = V_3;
NullCheck(L_29);
StringBuilder_t* L_30;
L_30 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_29, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
}
IL_008d_1:
{
V_11 = (bool)0;
V_14 = 0;
goto IL_00c3_1;
}
IL_0095_1:
{
bool L_31 = V_11;
if (L_31)
{
goto IL_00a5_1;
}
}
{
int32_t L_32 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_33 = V_1;
int32_t L_34 = V_14;
NullCheck(L_33);
int32_t L_35 = L_34;
int32_t L_36 = (L_33)->GetAt(static_cast<il2cpp_array_size_t>(L_35));
G_B13_0 = ((((int32_t)((int32_t)(L_32%L_36))) == ((int32_t)0))? 1 : 0);
goto IL_00a6_1;
}
IL_00a5_1:
{
G_B13_0 = 1;
}
IL_00a6_1:
{
V_11 = (bool)G_B13_0;
bool L_37 = V_11;
V_15 = L_37;
bool L_38 = V_15;
if (!L_38)
{
goto IL_00bc_1;
}
}
{
StringBuilder_t* L_39 = V_3;
NullCheck(L_39);
StringBuilder_t* L_40;
L_40 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_39, _stringLiteral2FDB12CAF040DE0941DCA5DA173D724FBE249CE3, NULL);
}
IL_00bc_1:
{
int32_t L_41 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add(L_41, 1));
}
IL_00c3_1:
{
int32_t L_42 = V_14;
int32_t L_43 = V_0;
V_16 = (bool)((((int32_t)L_42) < ((int32_t)L_43))? 1 : 0);
bool L_44 = V_16;
if (L_44)
{
goto IL_0095_1;
}
}
{
StringBuilder_t* L_45 = V_3;
RuntimeObject* L_46 = V_10;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_47;
L_47 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_46, NULL);
NullCheck(L_45);
StringBuilder_t* L_48;
L_48 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_45, L_47, NULL);
int32_t L_49 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_49, 1));
V_12 = (bool)0;
V_17 = 0;
goto IL_0116_1;
}
IL_00e8_1:
{
bool L_50 = V_12;
if (L_50)
{
goto IL_00f8_1;
}
}
{
int32_t L_51 = V_2;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_52 = V_1;
int32_t L_53 = V_17;
NullCheck(L_52);
int32_t L_54 = L_53;
int32_t L_55 = (L_52)->GetAt(static_cast<il2cpp_array_size_t>(L_54));
G_B21_0 = ((((int32_t)((int32_t)(L_51%L_55))) == ((int32_t)0))? 1 : 0);
goto IL_00f9_1;
}
IL_00f8_1:
{
G_B21_0 = 1;
}
IL_00f9_1:
{
V_12 = (bool)G_B21_0;
bool L_56 = V_12;
V_18 = L_56;
bool L_57 = V_18;
if (!L_57)
{
goto IL_010f_1;
}
}
{
StringBuilder_t* L_58 = V_3;
NullCheck(L_58);
StringBuilder_t* L_59;
L_59 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_58, _stringLiteralA0BC0DDE05F2C6C9622C6E5C5BB9B48E7B1915C1, NULL);
}
IL_010f_1:
{
int32_t L_60 = V_17;
V_17 = ((int32_t)il2cpp_codegen_add(L_60, 1));
}
IL_0116_1:
{
int32_t L_61 = V_17;
int32_t L_62 = V_0;
V_19 = (bool)((((int32_t)L_61) < ((int32_t)L_62))? 1 : 0);
bool L_63 = V_19;
if (L_63)
{
goto IL_00e8_1;
}
}
{
}
IL_0122_1:
{
RuntimeObject* L_64 = V_9;
NullCheck(L_64);
bool L_65;
L_65 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_64);
if (L_65)
{
goto IL_006d_1;
}
}
{
goto IL_0146;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0146:
{
StringBuilder_t* L_66 = V_3;
NullCheck(L_66);
String_t* L_67;
L_67 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_66);
V_5 = L_67;
goto IL_0150;
}
IL_0150:
{
String_t* L_68 = V_5;
return L_68;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatString_mF8F46C837936DEDAD4FFDE9528700237AF17735D (String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
String_t* L_0 = ___s0;
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
bool L_2;
L_2 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_0, L_1, NULL);
if (L_2)
{
goto IL_001b;
}
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_3 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_String_4;
String_t* L_4 = ___s0;
String_t* L_5;
L_5 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(L_3, L_4, NULL);
G_B3_0 = L_5;
goto IL_0020;
}
IL_001b:
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_6 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_EmptyString_2;
G_B3_0 = L_6;
}
IL_0020:
{
V_0 = G_B3_0;
goto IL_0023;
}
IL_0023:
{
String_t* L_7 = V_0;
return L_7;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDouble(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDouble_mAB5B2449DEB72A139C70FC681370680C877E27A0 (double ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2CE2D641DE49F4CC9153820EB4FB057A696E69C1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB6B9449F80C0026A5DD66BBA64B81E037161067A);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
bool V_3 = false;
int32_t G_B3_0 = 0;
{
double L_0 = ___d0;
bool L_1;
L_1 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(L_0, NULL);
if (L_1)
{
goto IL_0011;
}
}
{
double L_2 = ___d0;
bool L_3;
L_3 = Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline(L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0020;
}
}
{
String_t* L_5;
L_5 = Double_ToString_m7499A5D792419537DCB9470A3675CEF5117DE339((&___d0), NULL);
V_1 = L_5;
goto IL_005e;
}
IL_0020:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_7;
L_7 = Double_ToString_m7E3930DDFB35B1919FE538A246A59C3FC62AF789((&___d0), _stringLiteralB6B9449F80C0026A5DD66BBA64B81E037161067A, L_6, NULL);
V_2 = L_7;
String_t* L_8 = V_2;
NullCheck(L_8);
int32_t L_9;
L_9 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_8, ((int32_t)46), NULL);
V_3 = (bool)((((int32_t)L_9) > ((int32_t)0))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_0050;
}
}
{
String_t* L_11 = V_2;
String_t* L_12;
L_12 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_11, _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03, NULL);
V_1 = L_12;
goto IL_005e;
}
IL_0050:
{
String_t* L_13 = V_2;
String_t* L_14;
L_14 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_13, _stringLiteral2CE2D641DE49F4CC9153820EB4FB057A696E69C1, NULL);
V_1 = L_14;
goto IL_005e;
}
IL_005e:
{
String_t* L_15 = V_1;
return L_15;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatFloat(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatFloat_mE64D67A55E33CF9D90FED310C11DA0EE475F49A9 (float ___f0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29084A0A379C1935271C232E939FF9434A57D70E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83078AF98C6069055A1C50A282E6E439FC320BAE);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
bool V_3 = false;
int32_t G_B3_0 = 0;
{
float L_0 = ___f0;
bool L_1;
L_1 = Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline(L_0, NULL);
if (L_1)
{
goto IL_0011;
}
}
{
float L_2 = ___f0;
bool L_3;
L_3 = Single_IsInfinity_m500DB7A91ADC75BE691663649FCA28485FA720AB_inline(L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0020;
}
}
{
String_t* L_5;
L_5 = Single_ToString_mE282EDA9CA4F7DF88432D807732837A629D04972((&___f0), NULL);
V_1 = L_5;
goto IL_005e;
}
IL_0020:
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_6;
L_6 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_7;
L_7 = Single_ToString_mF468A56B3A746EFD805E0604EE7A2873DA157ADE((&___f0), _stringLiteral83078AF98C6069055A1C50A282E6E439FC320BAE, L_6, NULL);
V_2 = L_7;
String_t* L_8 = V_2;
NullCheck(L_8);
int32_t L_9;
L_9 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_8, ((int32_t)46), NULL);
V_3 = (bool)((((int32_t)L_9) > ((int32_t)0))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_0050;
}
}
{
String_t* L_11 = V_2;
String_t* L_12;
L_12 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_11, _stringLiteral2C945D246C2B7897F000E1C591A686EB9EF010F0, NULL);
V_1 = L_12;
goto IL_005e;
}
IL_0050:
{
String_t* L_13 = V_2;
String_t* L_14;
L_14 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_13, _stringLiteral29084A0A379C1935271C232E939FF9434A57D70E, NULL);
V_1 = L_14;
goto IL_005e;
}
IL_005e:
{
String_t* L_15 = V_1;
return L_15;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDecimal(System.Decimal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDecimal_m0EE6BF6258EAFD9D9918FCD39C3B12B52526DDEC (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38206010E8F35F8C22DA036C14C1DEDD0F734544);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC1771FD048FA0C5283A6D1085A6C3493F05C1302);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_0;
L_0 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_1;
L_1 = Decimal_ToString_m2600674D09D44940FA0AAA00A87858E741671F4E((&___d0), _stringLiteral38206010E8F35F8C22DA036C14C1DEDD0F734544, L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_1, _stringLiteralC1771FD048FA0C5283A6D1085A6C3493F05C1302, NULL);
V_0 = L_2;
goto IL_001f;
}
IL_001f:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDateTime(System.DateTime)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDateTime_m2C709C3C0F2B34EA0BD5222BB8282C324725438E (DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___dt0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_0 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_DateTime_6;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_2;
L_2 = DateTime_ToString_m27637E1131A10BED8A95639D64339023D5EBBF00((&___dt0), L_0, L_1, NULL);
V_0 = L_2;
goto IL_0015;
}
IL_0015:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::FormatDateTimeOffset(System.DateTimeOffset)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_FormatDateTimeOffset_m6432B128A05244CD2FEFBEC01621A111FD09D321 (DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 ___dto0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_0 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_DateTimeOffset_7;
il2cpp_codegen_runtime_class_init_inline(CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0_il2cpp_TypeInfo_var);
CultureInfo_t9BA817D41AD55AC8BD07480DD8AC22F8FFA378E0* L_1;
L_1 = CultureInfo_get_InvariantCulture_m78DAB8CBE8766445310782B6E61FB7A9983AD425(NULL);
String_t* L_2;
L_2 = DateTimeOffset_ToString_m4B5BB65E069D2146E808A1CE5F424ACA2F4D2281((&___dto0), L_0, L_1, NULL);
V_0 = L_2;
goto IL_0015;
}
IL_0015:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::GetTypeRepresentation(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_GetTypeRepresentation_mE07D29F31E3C3DED2D4CEEB353FB22047E367D6B (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6);
s_Il2CppMethodInitialized = true;
}
RuntimeArray* V_0 = NULL;
StringBuilder_t* V_1 = NULL;
Type_t* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
String_t* V_5 = NULL;
bool V_6 = false;
int32_t V_7 = 0;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
{
RuntimeObject* L_0 = ___obj0;
V_0 = ((RuntimeArray*)IsInstClass((RuntimeObject*)L_0, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray* L_1 = V_0;
V_4 = (bool)((((RuntimeObject*)(RuntimeArray*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_2 = V_4;
if (!L_2)
{
goto IL_0029;
}
}
{
RuntimeObject* L_3 = ___obj0;
NullCheck(L_3);
Type_t* L_4;
L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
String_t* L_5;
L_5 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4, L_4, NULL);
V_5 = L_5;
goto IL_00e2;
}
IL_0029:
{
StringBuilder_t* L_6 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_6);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_6, NULL);
V_1 = L_6;
RuntimeArray* L_7 = V_0;
NullCheck(L_7);
Type_t* L_8;
L_8 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_7, NULL);
V_2 = L_8;
V_3 = 0;
goto IL_0047;
}
IL_003a:
{
Type_t* L_9 = V_2;
NullCheck(L_9);
Type_t* L_10;
L_10 = VirtualFuncInvoker0< Type_t* >::Invoke(46 /* System.Type System.Type::GetElementType() */, L_9);
V_2 = L_10;
int32_t L_11 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_11, 1));
}
IL_0047:
{
Type_t* L_12 = V_2;
NullCheck(L_12);
bool L_13;
L_13 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_12, NULL);
V_6 = L_13;
bool L_14 = V_6;
if (L_14)
{
goto IL_003a;
}
}
{
StringBuilder_t* L_15 = V_1;
Type_t* L_16 = V_2;
NullCheck(L_16);
String_t* L_17;
L_17 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_16);
NullCheck(L_15);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, L_17, NULL);
StringBuilder_t* L_19 = V_1;
NullCheck(L_19);
StringBuilder_t* L_20;
L_20 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_19, ((int32_t)91), NULL);
V_7 = 0;
goto IL_0099;
}
IL_006e:
{
int32_t L_21 = V_7;
V_8 = (bool)((((int32_t)L_21) > ((int32_t)0))? 1 : 0);
bool L_22 = V_8;
if (!L_22)
{
goto IL_0083;
}
}
{
StringBuilder_t* L_23 = V_1;
NullCheck(L_23);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_23, ((int32_t)44), NULL);
}
IL_0083:
{
StringBuilder_t* L_25 = V_1;
RuntimeArray* L_26 = V_0;
int32_t L_27 = V_7;
NullCheck(L_26);
int32_t L_28;
L_28 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_26, L_27, NULL);
NullCheck(L_25);
StringBuilder_t* L_29;
L_29 = StringBuilder_Append_m283B617AC29FB0DD6F3A7D8C01D385C25A5F0FAA(L_25, L_28, NULL);
int32_t L_30 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add(L_30, 1));
}
IL_0099:
{
int32_t L_31 = V_7;
RuntimeArray* L_32 = V_0;
NullCheck(L_32);
int32_t L_33;
L_33 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_32, NULL);
V_9 = (bool)((((int32_t)L_31) < ((int32_t)L_33))? 1 : 0);
bool L_34 = V_9;
if (L_34)
{
goto IL_006e;
}
}
{
StringBuilder_t* L_35 = V_1;
NullCheck(L_35);
StringBuilder_t* L_36;
L_36 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_35, ((int32_t)93), NULL);
goto IL_00c0;
}
IL_00b4:
{
StringBuilder_t* L_37 = V_1;
NullCheck(L_37);
StringBuilder_t* L_38;
L_38 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_37, _stringLiteral5B4F028A4070094FCA4E7762E2C376A65E2D59C6, NULL);
}
IL_00c0:
{
int32_t L_39 = V_3;
int32_t L_40 = ((int32_t)il2cpp_codegen_subtract(L_39, 1));
V_3 = L_40;
V_10 = (bool)((((int32_t)L_40) > ((int32_t)0))? 1 : 0);
bool L_41 = V_10;
if (L_41)
{
goto IL_00b4;
}
}
{
StringBuilder_t* L_42 = V_1;
NullCheck(L_42);
String_t* L_43;
L_43 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_42);
String_t* L_44;
L_44 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral012D19DEDB7F268C61672C79B02816C18D097BF4, L_43, NULL);
V_5 = L_44;
goto IL_00e2;
}
IL_00e2:
{
String_t* L_45 = V_5;
return L_45;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::EscapeControlChars(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_EscapeControlChars_mC33B5EBE796E6CE561B10D06A65EA2F6F21E4529 (String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1A93881F0E30A932321B06766E4718D4D13306A7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB78F235D4291950A7D101307609C259F3E1F033F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBC4CF8C3582484557E58916411466E046404CE49);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7E65C52535CDD59777EEAAF7EFDE885FD987F3D);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDA67E248A035B28E06099D5362E02822AA9A914);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
StringBuilder_t* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
Il2CppChar V_5 = 0x0;
Il2CppChar V_6 = 0x0;
String_t* V_7 = NULL;
{
String_t* L_0 = ___s0;
V_0 = (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0171;
}
}
{
StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_2);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_2, NULL);
V_1 = L_2;
String_t* L_3 = ___s0;
V_2 = L_3;
V_3 = 0;
goto IL_015c;
}
IL_001d:
{
String_t* L_4 = V_2;
int32_t L_5 = V_3;
NullCheck(L_4);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL);
V_4 = L_6;
Il2CppChar L_7 = V_4;
V_6 = L_7;
Il2CppChar L_8 = V_6;
V_5 = L_8;
Il2CppChar L_9 = V_5;
if ((!(((uint32_t)L_9) <= ((uint32_t)((int32_t)92)))))
{
goto IL_0081;
}
}
{
Il2CppChar L_10 = V_5;
switch (L_10)
{
case 0:
{
goto IL_00bf;
}
case 1:
{
goto IL_014c;
}
case 2:
{
goto IL_014c;
}
case 3:
{
goto IL_014c;
}
case 4:
{
goto IL_014c;
}
case 5:
{
goto IL_014c;
}
case 6:
{
goto IL_014c;
}
case 7:
{
goto IL_00d0;
}
case 8:
{
goto IL_00de;
}
case 9:
{
goto IL_0116;
}
case 10:
{
goto IL_00fa;
}
case 11:
{
goto IL_0124;
}
case 12:
{
goto IL_00ec;
}
case 13:
{
goto IL_0108;
}
}
}
{
goto IL_0076;
}
IL_0076:
{
Il2CppChar L_11 = V_5;
if ((((int32_t)L_11) == ((int32_t)((int32_t)92))))
{
goto IL_00ae;
}
}
{
goto IL_014c;
}
IL_0081:
{
Il2CppChar L_12 = V_5;
if ((((int32_t)L_12) == ((int32_t)((int32_t)133))))
{
goto IL_0132;
}
}
{
goto IL_008f;
}
IL_008f:
{
Il2CppChar L_13 = V_5;
if ((((int32_t)L_13) == ((int32_t)((int32_t)8232))))
{
goto IL_0132;
}
}
{
goto IL_009d;
}
IL_009d:
{
Il2CppChar L_14 = V_5;
if ((((int32_t)L_14) == ((int32_t)((int32_t)8233))))
{
goto IL_0132;
}
}
{
goto IL_014c;
}
IL_00ae:
{
StringBuilder_t* L_15 = V_1;
NullCheck(L_15);
StringBuilder_t* L_16;
L_16 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, _stringLiteralF18840F490E42D3CE48CDCBF47229C1C240F8ABE, NULL);
goto IL_0157;
}
IL_00bf:
{
StringBuilder_t* L_17 = V_1;
NullCheck(L_17);
StringBuilder_t* L_18;
L_18 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_17, _stringLiteralC7E65C52535CDD59777EEAAF7EFDE885FD987F3D, NULL);
goto IL_0157;
}
IL_00d0:
{
StringBuilder_t* L_19 = V_1;
NullCheck(L_19);
StringBuilder_t* L_20;
L_20 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_19, _stringLiteralBC4CF8C3582484557E58916411466E046404CE49, NULL);
goto IL_0157;
}
IL_00de:
{
StringBuilder_t* L_21 = V_1;
NullCheck(L_21);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_21, _stringLiteral5962E944D7340CE47999BF097B4AFD70C1501FB9, NULL);
goto IL_0157;
}
IL_00ec:
{
StringBuilder_t* L_23 = V_1;
NullCheck(L_23);
StringBuilder_t* L_24;
L_24 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_23, _stringLiteralA7C3FCA8C63E127B542B38A5CA5E3FEEDDD1B122, NULL);
goto IL_0157;
}
IL_00fa:
{
StringBuilder_t* L_25 = V_1;
NullCheck(L_25);
StringBuilder_t* L_26;
L_26 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, _stringLiteral785F17F45C331C415D0A7458E6AAC36966399C51, NULL);
goto IL_0157;
}
IL_0108:
{
StringBuilder_t* L_27 = V_1;
NullCheck(L_27);
StringBuilder_t* L_28;
L_28 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_27, _stringLiteralB78F235D4291950A7D101307609C259F3E1F033F, NULL);
goto IL_0157;
}
IL_0116:
{
StringBuilder_t* L_29 = V_1;
NullCheck(L_29);
StringBuilder_t* L_30;
L_30 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_29, _stringLiteral7F3238CD8C342B06FB9AB185C610175C84625462, NULL);
goto IL_0157;
}
IL_0124:
{
StringBuilder_t* L_31 = V_1;
NullCheck(L_31);
StringBuilder_t* L_32;
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_31, _stringLiteralCDA67E248A035B28E06099D5362E02822AA9A914, NULL);
goto IL_0157;
}
IL_0132:
{
StringBuilder_t* L_33 = V_1;
Il2CppChar L_34 = V_4;
int32_t L_35 = ((int32_t)L_34);
RuntimeObject* L_36 = Box(Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var, &L_35);
String_t* L_37;
L_37 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral1A93881F0E30A932321B06766E4718D4D13306A7, L_36, NULL);
NullCheck(L_33);
StringBuilder_t* L_38;
L_38 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_33, L_37, NULL);
goto IL_0157;
}
IL_014c:
{
StringBuilder_t* L_39 = V_1;
Il2CppChar L_40 = V_4;
NullCheck(L_39);
StringBuilder_t* L_41;
L_41 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_39, L_40, NULL);
goto IL_0157;
}
IL_0157:
{
int32_t L_42 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_42, 1));
}
IL_015c:
{
int32_t L_43 = V_3;
String_t* L_44 = V_2;
NullCheck(L_44);
int32_t L_45;
L_45 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_44, NULL);
if ((((int32_t)L_43) < ((int32_t)L_45)))
{
goto IL_001d;
}
}
{
StringBuilder_t* L_46 = V_1;
NullCheck(L_46);
String_t* L_47;
L_47 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_46);
___s0 = L_47;
}
IL_0171:
{
String_t* L_48 = ___s0;
V_7 = L_48;
goto IL_0176;
}
IL_0176:
{
String_t* L_49 = V_7;
return L_49;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::EscapeNullCharacters(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_EscapeNullCharacters_mEAD244D44C966B458C4DE97D5161CA42EAB13B93 (String_t* ___s0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7E65C52535CDD59777EEAAF7EFDE885FD987F3D);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
StringBuilder_t* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
Il2CppChar V_5 = 0x0;
Il2CppChar V_6 = 0x0;
String_t* V_7 = NULL;
{
String_t* L_0 = ___s0;
V_0 = (bool)((!(((RuntimeObject*)(String_t*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_005f;
}
}
{
StringBuilder_t* L_2 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_2);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_2, NULL);
V_1 = L_2;
String_t* L_3 = ___s0;
V_2 = L_3;
V_3 = 0;
goto IL_004d;
}
IL_0017:
{
String_t* L_4 = V_2;
int32_t L_5 = V_3;
NullCheck(L_4);
Il2CppChar L_6;
L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_4, L_5, NULL);
V_4 = L_6;
Il2CppChar L_7 = V_4;
V_6 = L_7;
Il2CppChar L_8 = V_6;
V_5 = L_8;
Il2CppChar L_9 = V_5;
if (!L_9)
{
goto IL_002f;
}
}
{
goto IL_003d;
}
IL_002f:
{
StringBuilder_t* L_10 = V_1;
NullCheck(L_10);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_10, _stringLiteralC7E65C52535CDD59777EEAAF7EFDE885FD987F3D, NULL);
goto IL_0048;
}
IL_003d:
{
StringBuilder_t* L_12 = V_1;
Il2CppChar L_13 = V_4;
NullCheck(L_12);
StringBuilder_t* L_14;
L_14 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_12, L_13, NULL);
goto IL_0048;
}
IL_0048:
{
int32_t L_15 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_15, 1));
}
IL_004d:
{
int32_t L_16 = V_3;
String_t* L_17 = V_2;
NullCheck(L_17);
int32_t L_18;
L_18 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_17, NULL);
if ((((int32_t)L_16) < ((int32_t)L_18)))
{
goto IL_0017;
}
}
{
StringBuilder_t* L_19 = V_1;
NullCheck(L_19);
String_t* L_20;
L_20 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_19);
___s0 = L_20;
}
IL_005f:
{
String_t* L_21 = ___s0;
V_7 = L_21;
goto IL_0064;
}
IL_0064:
{
String_t* L_22 = V_7;
return L_22;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::GetArrayIndicesAsString(System.Int32[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_GetArrayIndicesAsString_mC9138E03CCDA05DA2F637835433BD1F8660C72BA (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___indices0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t* V_0 = NULL;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
String_t* V_4 = NULL;
{
StringBuilder_t* L_0 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_0);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_0, NULL);
V_0 = L_0;
StringBuilder_t* L_1 = V_0;
NullCheck(L_1);
StringBuilder_t* L_2;
L_2 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_1, ((int32_t)91), NULL);
V_1 = 0;
goto IL_003e;
}
IL_0014:
{
int32_t L_3 = V_1;
V_2 = (bool)((((int32_t)L_3) > ((int32_t)0))? 1 : 0);
bool L_4 = V_2;
if (!L_4)
{
goto IL_0026;
}
}
{
StringBuilder_t* L_5 = V_0;
NullCheck(L_5);
StringBuilder_t* L_6;
L_6 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_5, ((int32_t)44), NULL);
}
IL_0026:
{
StringBuilder_t* L_7 = V_0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = ___indices0;
int32_t L_9 = V_1;
NullCheck(L_8);
String_t* L_10;
L_10 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5(((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9))), NULL);
NullCheck(L_7);
StringBuilder_t* L_11;
L_11 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_7, L_10, NULL);
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add(L_12, 1));
}
IL_003e:
{
int32_t L_13 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_14 = ___indices0;
NullCheck(L_14);
V_3 = (bool)((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length))))? 1 : 0);
bool L_15 = V_3;
if (L_15)
{
goto IL_0014;
}
}
{
StringBuilder_t* L_16 = V_0;
NullCheck(L_16);
StringBuilder_t* L_17;
L_17 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_16, ((int32_t)93), NULL);
StringBuilder_t* L_18 = V_0;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_18);
V_4 = L_19;
goto IL_005b;
}
IL_005b:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.Int32[] NUnit.Framework.Constraints.MsgUtils::GetArrayIndicesFromCollectionIndex(System.Collections.IEnumerable,System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* MsgUtils_GetArrayIndicesFromCollectionIndex_m29F2A78BB7DA8891E980084045A32FE30B5F54E3 (RuntimeObject* ___collection0, int64_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeArray* V_0 = NULL;
int32_t V_1 = 0;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
int32_t V_3 = 0;
int32_t V_4 = 0;
bool V_5 = false;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___collection0;
V_0 = ((RuntimeArray*)IsInstClass((RuntimeObject*)L_0, RuntimeArray_il2cpp_TypeInfo_var));
RuntimeArray* L_1 = V_0;
if (!L_1)
{
goto IL_0013;
}
}
{
RuntimeArray* L_2 = V_0;
NullCheck(L_2);
int32_t L_3;
L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
G_B3_0 = L_3;
goto IL_0014;
}
IL_0013:
{
G_B3_0 = 1;
}
IL_0014:
{
V_1 = G_B3_0;
int32_t L_4 = V_1;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_4);
V_2 = L_5;
int32_t L_6 = V_1;
V_3 = L_6;
goto IL_003a;
}
IL_0020:
{
RuntimeArray* L_7 = V_0;
int32_t L_8 = V_3;
NullCheck(L_7);
int32_t L_9;
L_9 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_7, L_8, NULL);
V_4 = L_9;
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_10 = V_2;
int32_t L_11 = V_3;
int64_t L_12 = ___index1;
int32_t L_13 = V_4;
NullCheck(L_10);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (int32_t)((int32_t)(((int32_t)L_12)%L_13)));
int64_t L_14 = ___index1;
int32_t L_15 = V_4;
___index1 = ((int64_t)(L_14/((int64_t)L_15)));
}
IL_003a:
{
int32_t L_16 = V_3;
int32_t L_17 = ((int32_t)il2cpp_codegen_subtract(L_16, 1));
V_3 = L_17;
V_5 = (bool)((((int32_t)L_17) > ((int32_t)0))? 1 : 0);
bool L_18 = V_5;
if (L_18)
{
goto IL_0020;
}
}
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_19 = V_2;
int64_t L_20 = ___index1;
NullCheck(L_19);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(0), (int32_t)((int32_t)L_20));
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = V_2;
V_6 = L_21;
goto IL_0052;
}
IL_0052:
{
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_22 = V_6;
return L_22;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils::ClipString(System.String,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MsgUtils_ClipString_mDDF7A1EA555042A0AA1F717A9CA8E33D77B6A9DC (String_t* ___s0, int32_t ___maxStringLength1, int32_t ___clipStart2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
StringBuilder_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
String_t* V_5 = NULL;
{
int32_t L_0 = ___maxStringLength1;
V_0 = L_0;
StringBuilder_t* L_1 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
NullCheck(L_1);
StringBuilder__ctor_m1D99713357DE05DAFA296633639DB55F8C30587D(L_1, NULL);
V_1 = L_1;
int32_t L_2 = ___clipStart2;
V_2 = (bool)((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_002c;
}
}
{
int32_t L_4 = V_0;
NullCheck(_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_4, L_5));
StringBuilder_t* L_6 = V_1;
NullCheck(L_6);
StringBuilder_t* L_7;
L_7 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_6, _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
}
IL_002c:
{
String_t* L_8 = ___s0;
NullCheck(L_8);
int32_t L_9;
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
int32_t L_10 = ___clipStart2;
int32_t L_11 = V_0;
V_3 = (bool)((((int32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))) > ((int32_t)L_11))? 1 : 0);
bool L_12 = V_3;
if (!L_12)
{
goto IL_0067;
}
}
{
int32_t L_13 = V_0;
NullCheck(_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
int32_t L_14;
L_14 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
V_0 = ((int32_t)il2cpp_codegen_subtract(L_13, L_14));
StringBuilder_t* L_15 = V_1;
String_t* L_16 = ___s0;
int32_t L_17 = ___clipStart2;
int32_t L_18 = V_0;
NullCheck(L_16);
String_t* L_19;
L_19 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_16, L_17, L_18, NULL);
NullCheck(L_15);
StringBuilder_t* L_20;
L_20 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_15, L_19, NULL);
StringBuilder_t* L_21 = V_1;
NullCheck(L_21);
StringBuilder_t* L_22;
L_22 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_21, _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
goto IL_0089;
}
IL_0067:
{
int32_t L_23 = ___clipStart2;
V_4 = (bool)((((int32_t)L_23) > ((int32_t)0))? 1 : 0);
bool L_24 = V_4;
if (!L_24)
{
goto IL_0081;
}
}
{
StringBuilder_t* L_25 = V_1;
String_t* L_26 = ___s0;
int32_t L_27 = ___clipStart2;
NullCheck(L_26);
String_t* L_28;
L_28 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_26, L_27, NULL);
NullCheck(L_25);
StringBuilder_t* L_29;
L_29 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_25, L_28, NULL);
goto IL_0089;
}
IL_0081:
{
StringBuilder_t* L_30 = V_1;
String_t* L_31 = ___s0;
NullCheck(L_30);
StringBuilder_t* L_32;
L_32 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_30, L_31, NULL);
}
IL_0089:
{
StringBuilder_t* L_33 = V_1;
NullCheck(L_33);
String_t* L_34;
L_34 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33);
V_5 = L_34;
goto IL_0093;
}
IL_0093:
{
String_t* L_35 = V_5;
return L_35;
}
}
// System.Void NUnit.Framework.Constraints.MsgUtils::ClipExpectedAndActual(System.String&,System.String&,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MsgUtils_ClipExpectedAndActual_mC938F6E72E1B3B0A183990639218665B879E6CAA (String_t** ___expected0, String_t** ___actual1, int32_t ___maxDisplayLength2, int32_t ___mismatch3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
{
String_t** L_0 = ___expected0;
String_t* L_1 = *((String_t**)L_0);
NullCheck(L_1);
int32_t L_2;
L_2 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_1, NULL);
String_t** L_3 = ___actual1;
String_t* L_4 = *((String_t**)L_3);
NullCheck(L_4);
int32_t L_5;
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_6;
L_6 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(L_2, L_5, NULL);
V_0 = L_6;
int32_t L_7 = V_0;
int32_t L_8 = ___maxDisplayLength2;
V_3 = (bool)((((int32_t)((((int32_t)L_7) > ((int32_t)L_8))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_9 = V_3;
if (!L_9)
{
goto IL_0022;
}
}
{
goto IL_005f;
}
IL_0022:
{
int32_t L_10 = ___maxDisplayLength2;
NullCheck(_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
int32_t L_11;
L_11 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A, NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract(L_10, L_11));
int32_t L_12 = V_0;
int32_t L_13 = V_1;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_12, L_13));
int32_t L_14 = V_2;
int32_t L_15 = ___mismatch3;
V_4 = (bool)((((int32_t)L_14) > ((int32_t)L_15))? 1 : 0);
bool L_16 = V_4;
if (!L_16)
{
goto IL_0049;
}
}
{
int32_t L_17 = ___mismatch3;
int32_t L_18 = V_1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_19;
L_19 = Math_Max_m830F00B616D7A2130E46E974DFB27E9DA7FE30E5(0, ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)(L_18/2)))), NULL);
V_2 = L_19;
}
IL_0049:
{
String_t** L_20 = ___expected0;
String_t** L_21 = ___expected0;
String_t* L_22 = *((String_t**)L_21);
int32_t L_23 = ___maxDisplayLength2;
int32_t L_24 = V_2;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_25;
L_25 = MsgUtils_ClipString_mDDF7A1EA555042A0AA1F717A9CA8E33D77B6A9DC(L_22, L_23, L_24, NULL);
*((RuntimeObject**)L_20) = (RuntimeObject*)L_25;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_25);
String_t** L_26 = ___actual1;
String_t** L_27 = ___actual1;
String_t* L_28 = *((String_t**)L_27);
int32_t L_29 = ___maxDisplayLength2;
int32_t L_30 = V_2;
String_t* L_31;
L_31 = MsgUtils_ClipString_mDDF7A1EA555042A0AA1F717A9CA8E33D77B6A9DC(L_28, L_29, L_30, NULL);
*((RuntimeObject**)L_26) = (RuntimeObject*)L_31;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_26, (void*)(RuntimeObject*)L_31);
}
IL_005f:
{
return;
}
}
// System.Int32 NUnit.Framework.Constraints.MsgUtils::FindMismatchPosition(System.String,System.String,System.Int32,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MsgUtils_FindMismatchPosition_mD08CD091CBA29E36DD2B7CB319C1E9C7153C46A7 (String_t* ___expected0, String_t* ___actual1, int32_t ___istart2, bool ___ignoreCase3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
int32_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
bool V_6 = false;
bool V_7 = false;
String_t* G_B3_0 = NULL;
String_t* G_B6_0 = NULL;
{
String_t* L_0 = ___expected0;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
String_t* L_2 = ___actual1;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = Math_Min_m1F346FEDDC77AC1EC0C4EF1AC6BA59F0EC7980F8(L_1, L_3, NULL);
V_0 = L_4;
bool L_5 = ___ignoreCase3;
if (L_5)
{
goto IL_0019;
}
}
{
String_t* L_6 = ___expected0;
G_B3_0 = L_6;
goto IL_001f;
}
IL_0019:
{
String_t* L_7 = ___expected0;
NullCheck(L_7);
String_t* L_8;
L_8 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_7, NULL);
G_B3_0 = L_8;
}
IL_001f:
{
V_1 = G_B3_0;
bool L_9 = ___ignoreCase3;
if (L_9)
{
goto IL_0026;
}
}
{
String_t* L_10 = ___actual1;
G_B6_0 = L_10;
goto IL_002c;
}
IL_0026:
{
String_t* L_11 = ___actual1;
NullCheck(L_11);
String_t* L_12;
L_12 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_11, NULL);
G_B6_0 = L_12;
}
IL_002c:
{
V_2 = G_B6_0;
int32_t L_13 = ___istart2;
V_3 = L_13;
goto IL_0055;
}
IL_0031:
{
String_t* L_14 = V_1;
int32_t L_15 = V_3;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, L_15, NULL);
String_t* L_17 = V_2;
int32_t L_18 = V_3;
NullCheck(L_17);
Il2CppChar L_19;
L_19 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_17, L_18, NULL);
V_4 = (bool)((((int32_t)((((int32_t)L_16) == ((int32_t)L_19))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_20 = V_4;
if (!L_20)
{
goto IL_0050;
}
}
{
int32_t L_21 = V_3;
V_5 = L_21;
goto IL_0080;
}
IL_0050:
{
int32_t L_22 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_22, 1));
}
IL_0055:
{
int32_t L_23 = V_3;
int32_t L_24 = V_0;
V_6 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
bool L_25 = V_6;
if (L_25)
{
goto IL_0031;
}
}
{
String_t* L_26 = ___expected0;
NullCheck(L_26);
int32_t L_27;
L_27 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_26, NULL);
String_t* L_28 = ___actual1;
NullCheck(L_28);
int32_t L_29;
L_29 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_28, NULL);
V_7 = (bool)((((int32_t)((((int32_t)L_27) == ((int32_t)L_29))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_30 = V_7;
if (!L_30)
{
goto IL_007b;
}
}
{
int32_t L_31 = V_0;
V_5 = L_31;
goto IL_0080;
}
IL_007b:
{
V_5 = (-1);
goto IL_0080;
}
IL_0080:
{
int32_t L_32 = V_5;
return L_32;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_0::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_0__ctor_m6652447B72524AE9E524B39A333E9FD60CE022F3 (U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_0::<.cctor>b__11(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_0_U3C_cctorU3Eb__11_mF95D1B717506AED93B4A62AF90C000CEA1737AA0 (U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F*)IsInstClass((RuntimeObject*)L_0, ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_4 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_ValueType_8;
RuntimeObject* L_5 = ___val0;
String_t* L_6;
L_6 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(L_4, L_5, NULL);
G_B3_0 = L_6;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_1::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_1__ctor_mFE32F18A1FD7E3A0A2874219CAAE2B4BC0D27BBF (U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_1::<.cctor>b__12(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_1_U3C_cctorU3Eb__12_m22EF00B9B9AFA8B1C1F40A08DA089273A6C93CD7 (U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatDateTime_m2C709C3C0F2B34EA0BD5222BB8282C324725438E(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), NULL);
G_B3_0 = L_5;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_2::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_2__ctor_m7FAE20A441FC2521160FCC1565BA4412D43245EF (U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_2::<.cctor>b__13(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_2_U3C_cctorU3Eb__13_m359980E4694D64E28BA2914311939869850E7EF3 (U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatDateTimeOffset_m6432B128A05244CD2FEFBEC01621A111FD09D321(((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_4, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))), NULL);
G_B3_0 = L_5;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_3::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_3__ctor_m3922BCDF487B7134620E6170F29BF649A8316091 (U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_3::<.cctor>b__14(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_3_U3C_cctorU3Eb__14_mCC0E9719C13D303C1546A1E3AF937BBBE2EEDDAF (U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatDecimal_m0EE6BF6258EAFD9D9918FCD39C3B12B52526DDEC(((*(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F*)UnBox(L_4, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))), NULL);
G_B3_0 = L_5;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_4::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_4__ctor_mEA5DB75EB4C0C82553E12D7DD6295313C0866D30 (U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_4::<.cctor>b__15(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_4_U3C_cctorU3Eb__15_mD6E0F3AF45B985AE05BA31A6AF4FE70021A50717 (U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatFloat_mE64D67A55E33CF9D90FED310C11DA0EE475F49A9(((*(float*)((float*)(float*)UnBox(L_4, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))), NULL);
G_B3_0 = L_5;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_5::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_5__ctor_m32BE54AC597E2702B7EC2CF487F5CFDC96600B90 (U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_5::<.cctor>b__16(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_5_U3C_cctorU3Eb__16_m4E05DD34165BDF5F9B110A62B1E48290CAC65123 (U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatDouble_mAB5B2449DEB72A139C70FC681370680C877E27A0(((*(double*)((double*)(double*)UnBox(L_4, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))), NULL);
G_B3_0 = L_5;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_6::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_6__ctor_mECCB0599937DE2BC0EFBC028C9E2E0B1B68426D0 (U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_6::<.cctor>b__17(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_6_U3C_cctorU3Eb__17_m711732C06E8A9D704129A9D1258CD3D62673C4A1 (U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_4 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Char_5;
RuntimeObject* L_5 = ___val0;
String_t* L_6;
L_6 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(L_4, L_5, NULL);
G_B3_0 = L_6;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_7::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_7__ctor_m81683E54F55AF8A90FE7497FAAEEC32A69EF58DE (U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_7::<.cctor>b__18(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_7_U3C_cctorU3Eb__18_m7425ABEC11665051150CCCB76E2556821ED17445 (U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((RuntimeObject*)IsInst((RuntimeObject*)L_0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0025;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatCollection_m97DAC016B9B959E59DE2B51127BDD1D33A4F0A32(((RuntimeObject*)Castclass((RuntimeObject*)L_4, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)), ((int64_t)0), ((int32_t)10), NULL);
G_B3_0 = L_5;
}
IL_0025:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_8::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_8__ctor_mB19932011473FDB15172E943FF972EFF821FA074 (U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_8::<.cctor>b__19(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_8_U3C_cctorU3Eb__19_mD175821318C7E5AA698121FB9A7A785C9FB15954 (U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
if (((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_1 = __this->___next_0;
RuntimeObject* L_2 = ___val0;
NullCheck(L_1);
String_t* L_3;
L_3 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_1, L_2, NULL);
G_B3_0 = L_3;
goto IL_0021;
}
IL_0016:
{
RuntimeObject* L_4 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = MsgUtils_FormatString_mF8F46C837936DEDAD4FFDE9528700237AF17735D(((String_t*)CastclassSealed((RuntimeObject*)L_4, String_t_il2cpp_TypeInfo_var)), NULL);
G_B3_0 = L_5;
}
IL_0021:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_9::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass14_9__ctor_m56AE15C0F4A1FE29BBCED5BC1AFE3B1328B4D704 (U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c__DisplayClass14_9::<.cctor>b__20(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec__DisplayClass14_9_U3C_cctorU3Eb__20_mD0849B7CD387D4D98B6FD8298FB05769955E9E5B (U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___val0;
NullCheck(L_0);
Type_t* L_1;
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
NullCheck(L_1);
bool L_2;
L_2 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_1, NULL);
if (L_2)
{
goto IL_001b;
}
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_3 = __this->___next_0;
RuntimeObject* L_4 = ___val0;
NullCheck(L_3);
String_t* L_5;
L_5 = ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline(L_3, L_4, NULL);
G_B3_0 = L_5;
goto IL_0026;
}
IL_001b:
{
RuntimeObject* L_6 = ___val0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_7;
L_7 = MsgUtils_FormatArray_m244613146251B6C84497DC592294FDB037184DED(((RuntimeArray*)CastclassClass((RuntimeObject*)L_6, RuntimeArray_il2cpp_TypeInfo_var)), NULL);
G_B3_0 = L_7;
}
IL_0026:
{
return G_B3_0;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_mF4036F5176085A35326CD441C7CD6A77A2DD941B (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* L_0 = (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6*)il2cpp_codegen_object_new(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__ctor_m9D23035F18D45C67394B68B3C64D25BBD5F337AE(L_0, NULL);
((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Constraints.MsgUtils/<>c::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m9D23035F18D45C67394B68B3C64D25BBD5F337AE (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_0(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3C_cctorU3Eb__14_0_mCFD0C6F92505AB88849A0AF76EBD5B8CF9B9BBDD (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_0 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___Fmt_Default_9;
RuntimeObject* L_1 = ___val0;
String_t* L_2;
L_2 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(L_0, L_1, NULL);
return L_2;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_1(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_1_mA8E1A38AFDEE95272AE2FBD0BC17D19B707A043C (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_0_U3C_cctorU3Eb__11_mF95D1B717506AED93B4A62AF90C000CEA1737AA0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* L_0 = (U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_0__ctor_m6652447B72524AE9E524B39A333E9FD60CE022F3(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_0_t266013F21C4F7C4DCF33C064BEF57F771274764D* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_0_U3C_cctorU3Eb__11_mF95D1B717506AED93B4A62AF90C000CEA1737AA0_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_2(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_2_m46C1FFEDB404DAB2F81D487498F90BBE26734C4D (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_1_U3C_cctorU3Eb__12_m22EF00B9B9AFA8B1C1F40A08DA089273A6C93CD7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* L_0 = (U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_1__ctor_mFE32F18A1FD7E3A0A2874219CAAE2B4BC0D27BBF(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_1_tEB903DD1C17C0F6CF11FA34010A89265DF1DD1AD* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_1_U3C_cctorU3Eb__12_m22EF00B9B9AFA8B1C1F40A08DA089273A6C93CD7_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_3(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_3_m875F69966DD4235BBFD546B51595167237F2D4B4 (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_2_U3C_cctorU3Eb__13_m359980E4694D64E28BA2914311939869850E7EF3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* L_0 = (U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_2__ctor_m7FAE20A441FC2521160FCC1565BA4412D43245EF(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_2_tF7D17E27913372038655A7DE3F2C19AD24EB44F9* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_2_U3C_cctorU3Eb__13_m359980E4694D64E28BA2914311939869850E7EF3_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_4(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_4_m2779423DE5DC890D3E011D8EF8B95EDD7EB4FBAA (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_3_U3C_cctorU3Eb__14_mCC0E9719C13D303C1546A1E3AF937BBBE2EEDDAF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* L_0 = (U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_3__ctor_m3922BCDF487B7134620E6170F29BF649A8316091(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_3_t4183FF75B313F1A996FFB6E1B9DA9CFFBA0D9819* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_3_U3C_cctorU3Eb__14_mCC0E9719C13D303C1546A1E3AF937BBBE2EEDDAF_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_5(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_5_m70CEF8F867B44941E967AE4323C8D725CE6B9560 (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_4_U3C_cctorU3Eb__15_mD6E0F3AF45B985AE05BA31A6AF4FE70021A50717_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* L_0 = (U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_4__ctor_mEA5DB75EB4C0C82553E12D7DD6295313C0866D30(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_4_t671B730706DB75400CDAC62C8AFD76136817937E* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_4_U3C_cctorU3Eb__15_mD6E0F3AF45B985AE05BA31A6AF4FE70021A50717_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_6(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_6_m938146C15752CCAC602BF4FDBE409825C3020CEF (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_5_U3C_cctorU3Eb__16_m4E05DD34165BDF5F9B110A62B1E48290CAC65123_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* L_0 = (U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_5__ctor_m32BE54AC597E2702B7EC2CF487F5CFDC96600B90(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_5_t6CFC1441D6A9CCCB114089C6242F7C3A815BBC33* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_5_U3C_cctorU3Eb__16_m4E05DD34165BDF5F9B110A62B1E48290CAC65123_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_7(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_7_mA476F1B31B1BE5B7E9723FE1BFF1196E6E4557E9 (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_6_U3C_cctorU3Eb__17_m711732C06E8A9D704129A9D1258CD3D62673C4A1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* L_0 = (U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_6__ctor_mECCB0599937DE2BC0EFBC028C9E2E0B1B68426D0(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_6_t38798B3AA75C9C1BC88FDECB23999746A5D4C7E0* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_6_U3C_cctorU3Eb__17_m711732C06E8A9D704129A9D1258CD3D62673C4A1_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_8(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_8_mEE0543AEFE88DAFBF16D562F01BE89F2C02BAC2F (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_7_U3C_cctorU3Eb__18_m7425ABEC11665051150CCCB76E2556821ED17445_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* L_0 = (U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_7__ctor_m81683E54F55AF8A90FE7497FAAEEC32A69EF58DE(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_7_tE674C0D9CE66825894E35B015EF3CECFE14219E6* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_7_U3C_cctorU3Eb__18_m7425ABEC11665051150CCCB76E2556821ED17445_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_9(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_9_m82DBB36839F9CF2DAAD49F5B42E380D82E9CBAFB (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_8_U3C_cctorU3Eb__19_mD175821318C7E5AA698121FB9A7A785C9FB15954_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* L_0 = (U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_8__ctor_mB19932011473FDB15172E943FF972EFF821FA074(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_8_tD5F07446DC7320CB8ACF3B27270B268D6A59AA1C* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_8_U3C_cctorU3Eb__19_mD175821318C7E5AA698121FB9A7A785C9FB15954_RuntimeMethod_var), NULL);
return L_4;
}
}
// NUnit.Framework.Constraints.ValueFormatter NUnit.Framework.Constraints.MsgUtils/<>c::<.cctor>b__14_10(NUnit.Framework.Constraints.ValueFormatter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* U3CU3Ec_U3C_cctorU3Eb__14_10_mB78183EB9E63158E841DA1F7CE1E2800059F1819 (U3CU3Ec_tFDB68C78CEF469D0E50B7F86C4A7D4C8193CEBE6* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_9_U3C_cctorU3Eb__20_mD0849B7CD387D4D98B6FD8298FB05769955E9E5B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* V_0 = NULL;
{
U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* L_0 = (U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD*)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD_il2cpp_TypeInfo_var);
NullCheck(L_0);
U3CU3Ec__DisplayClass14_9__ctor_m56AE15C0F4A1FE29BBCED5BC1AFE3B1328B4D704(L_0, NULL);
V_0 = L_0;
U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* L_1 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_2 = ___next0;
NullCheck(L_1);
L_1->___next_0 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&L_1->___next_0), (void*)L_2);
U3CU3Ec__DisplayClass14_9_t5D8E4F6936C46AA3790F54D24844006BD99719DD* L_3 = V_0;
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_4 = (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6*)il2cpp_codegen_object_new(ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6_il2cpp_TypeInfo_var);
NullCheck(L_4);
ValueFormatter__ctor_mFAB66D34A2B66AE2A6463C3C83157B9630F9D700(L_4, L_3, (intptr_t)((void*)U3CU3Ec__DisplayClass14_9_U3C_cctorU3Eb__20_mD0849B7CD387D4D98B6FD8298FB05769955E9E5B_RuntimeMethod_var), NULL);
return L_4;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.NaNConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NaNConstraint_get_Description_m721A518FA30379B0E4B886A4368BEE68A46FFD55 (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9CA8C44D8001E19877B2F2B86EC61A60048AF615);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral9CA8C44D8001E19877B2F2B86EC61A60048AF615;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.NaNConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* NaNConstraint_ApplyTo_mCEDF90C214FBD2422E1FF57F7C2FBADCB0726665 (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_0 = NULL;
RuntimeObject* G_B2_0 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B2_1 = NULL;
RuntimeObject* G_B1_0 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B1_1 = NULL;
RuntimeObject* G_B6_0 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B6_1 = NULL;
RuntimeObject* G_B4_0 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B4_1 = NULL;
RuntimeObject* G_B3_0 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B3_1 = NULL;
int32_t G_B5_0 = 0;
RuntimeObject* G_B5_1 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B5_2 = NULL;
int32_t G_B7_0 = 0;
RuntimeObject* G_B7_1 = NULL;
NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* G_B7_2 = NULL;
{
RuntimeObject* L_0 = ___actual0;
RuntimeObject* L_1 = ___actual0;
G_B1_0 = L_0;
G_B1_1 = __this;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
G_B2_0 = L_0;
G_B2_1 = __this;
goto IL_0018;
}
}
{
RuntimeObject* L_2 = ___actual0;
bool L_3;
L_3 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(((*(double*)((double*)(double*)UnBox(L_2, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))), NULL);
G_B2_0 = G_B1_0;
G_B2_1 = G_B1_1;
if (L_3)
{
G_B6_0 = G_B1_0;
G_B6_1 = G_B1_1;
goto IL_0030;
}
}
IL_0018:
{
RuntimeObject* L_4 = ___actual0;
G_B3_0 = G_B2_0;
G_B3_1 = G_B2_1;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_4, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))
{
G_B4_0 = G_B2_0;
G_B4_1 = G_B2_1;
goto IL_002d;
}
}
{
RuntimeObject* L_5 = ___actual0;
bool L_6;
L_6 = Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline(((*(float*)((float*)(float*)UnBox(L_5, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))), NULL);
G_B5_0 = ((int32_t)(L_6));
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
goto IL_002e;
}
IL_002d:
{
G_B5_0 = 0;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
}
IL_002e:
{
G_B7_0 = G_B5_0;
G_B7_1 = G_B5_1;
G_B7_2 = G_B5_2;
goto IL_0031;
}
IL_0030:
{
G_B7_0 = 1;
G_B7_1 = G_B6_0;
G_B7_2 = G_B6_1;
}
IL_0031:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_7 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_7);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_7, G_B7_2, G_B7_1, (bool)G_B7_0, NULL);
V_0 = L_7;
goto IL_0039;
}
IL_0039:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8 = V_0;
return L_8;
}
}
// System.Void NUnit.Framework.Constraints.NaNConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NaNConstraint__ctor_mCF0216A5A4D40418C51169252EC5F885B512ABA7 (NaNConstraint_t593F1A2E7F07D16DDA8BB3CA228498633171CC63* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.NoItemConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NoItemConstraint__ctor_m1E49F7E89D3F2AF5DB728152CFB3F03C7D0C3E04 (NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4* __this, RuntimeObject* ___itemConstraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5DF610495CA0C9D54085C58F5281900D7AC04DB0);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___itemConstraint0;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline(__this, _stringLiteral5DF610495CA0C9D54085C58F5281900D7AC04DB0, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.NoItemConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NoItemConstraint_get_DisplayName_mBC3CCE2380C2E89BC8C15B8D86D72B3A544D0DC1 (NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.NoItemConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* NoItemConstraint_ApplyTo_m2EB5340C3477EF877A40584705DCF6452A8BEC04 (NoItemConstraint_t3FA9C55F123D34EE9EE649F1FA318DD0CE00EEF4* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
RuntimeObject* V_5 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0021;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6433242E3AC0818A68685B6BD80954F4AAE48DC)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NoItemConstraint_ApplyTo_m2EB5340C3477EF877A40584705DCF6452A8BEC04_RuntimeMethod_var)));
}
IL_0021:
{
RuntimeObject* L_3 = ___actual0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0062:
{// begin finally (depth: 1)
{
RuntimeObject* L_5 = V_1;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = V_5;
if (!L_6)
{
goto IL_0076;
}
}
{
RuntimeObject* L_7 = V_5;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0076:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0058_1;
}
IL_0030_1:
{
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
V_2 = L_9;
RuntimeObject* L_10;
L_10 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_11 = V_2;
NullCheck(L_10);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12;
L_12 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_10, L_11);
NullCheck(L_12);
bool L_13;
L_13 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_12);
V_3 = L_13;
bool L_14 = V_3;
if (!L_14)
{
goto IL_0058_1;
}
}
{
RuntimeObject* L_15 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_16);
ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE(L_16, __this, L_15, 2, NULL);
V_4 = L_16;
goto IL_0083;
}
IL_0058_1:
{
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
bool L_18;
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0030_1;
}
}
{
goto IL_0077;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0077:
{
RuntimeObject* L_19 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_20 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_20);
ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE(L_20, __this, L_19, 1, NULL);
V_4 = L_20;
goto IL_0083;
}
IL_0083:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_21 = V_4;
return L_21;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.NotConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* __this, RuntimeObject* ___baseConstraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___baseConstraint0;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline(__this, _stringLiteral63FEAE5081ABFB719642D387AE43B7D4DFB3CFEB, NULL);
return;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.NotConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* NotConstraint_ApplyTo_mF88FD31EBAFA4420BB3BF7FFFF7C0E6125D9A5BF (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_0 = NULL;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
{
RuntimeObject* L_0;
L_0 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_1 = ___actual0;
NullCheck(L_0);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_2;
L_2 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0, L_1);
V_0 = L_2;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_3 = V_0;
NullCheck(L_3);
RuntimeObject* L_4;
L_4 = ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline(L_3, NULL);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_5 = V_0;
NullCheck(L_5);
bool L_6;
L_6 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_5);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_7 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_7);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_7, __this, L_4, (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0), NULL);
V_1 = L_7;
goto IL_0026;
}
IL_0026:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8 = V_1;
return L_8;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.NullConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullConstraint__ctor_m084A6A709C33999A6383E8CC5C3B9148C4341131 (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
VirtualActionInvoker1< String_t* >::Invoke(15 /* System.Void NUnit.Framework.Constraints.Constraint::set_Description(System.String) */, __this, _stringLiteral5BEFD8CC60A79699B5BB00E37BAC5B62D371E174);
return;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.NullConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* NullConstraint_ApplyTo_m9C8B77E5E60CD8818AF5D51D0E20CC90543C97A1 (NullConstraint_t30A289E576A5ED85CA3E877A25553BAB417D88ED* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_0 = NULL;
{
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12((&___actual0), NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_RuntimeMethod_var);
RuntimeObject* L_0 = ___actual0;
RuntimeObject* L_1 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_2 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_2);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_2, __this, L_0, (bool)((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0), NULL);
V_0 = L_2;
goto IL_0017;
}
IL_0017:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Boolean NUnit.Framework.Constraints.Numerics::IsNumericType(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116 (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___obj0;
bool L_1;
L_1 = Numerics_IsFloatingPointNumeric_mDF55FE85A2163E179D54113E11A8C3513FE1E15A(L_0, NULL);
if (L_1)
{
goto IL_0011;
}
}
{
RuntimeObject* L_2 = ___obj0;
bool L_3;
L_3 = Numerics_IsFixedPointNumeric_m08E5184AF2BE58E94C73C16A82B83C19D6C33FAA(L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 1;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
goto IL_0015;
}
IL_0015:
{
bool L_4 = V_0;
return L_4;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::IsFloatingPointNumeric(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_IsFloatingPointNumeric_mDF55FE85A2163E179D54113E11A8C3513FE1E15A (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
{
RuntimeObject* L_0 = ___obj0;
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_002d;
}
}
{
RuntimeObject* L_2 = ___obj0;
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_001b;
}
}
{
V_2 = (bool)1;
goto IL_0031;
}
IL_001b:
{
RuntimeObject* L_4 = ___obj0;
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_4, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_002c;
}
}
{
V_2 = (bool)1;
goto IL_0031;
}
IL_002c:
{
}
IL_002d:
{
V_2 = (bool)0;
goto IL_0031;
}
IL_0031:
{
bool L_6 = V_2;
return L_6;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::IsFixedPointNumeric(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_IsFixedPointNumeric_m08E5184AF2BE58E94C73C16A82B83C19D6C33FAA (RuntimeObject* ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
{
RuntimeObject* L_0 = ___obj0;
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_00d1;
}
}
{
RuntimeObject* L_2 = ___obj0;
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_2, Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0021;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_0021:
{
RuntimeObject* L_4 = ___obj0;
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_4, SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_5 = V_3;
if (!L_5)
{
goto IL_0035;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_0035:
{
RuntimeObject* L_6 = ___obj0;
V_4 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_6, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_7 = V_4;
if (!L_7)
{
goto IL_004b;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_004b:
{
RuntimeObject* L_8 = ___obj0;
V_5 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_8, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_9 = V_5;
if (!L_9)
{
goto IL_005e;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_005e:
{
RuntimeObject* L_10 = ___obj0;
V_6 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_10, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_11 = V_6;
if (!L_11)
{
goto IL_0071;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_0071:
{
RuntimeObject* L_12 = ___obj0;
V_7 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_12, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_13 = V_7;
if (!L_13)
{
goto IL_0084;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_0084:
{
RuntimeObject* L_14 = ___obj0;
V_8 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_14, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_15 = V_8;
if (!L_15)
{
goto IL_0097;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_0097:
{
RuntimeObject* L_16 = ___obj0;
V_9 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_16, Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_17 = V_9;
if (!L_17)
{
goto IL_00aa;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_00aa:
{
RuntimeObject* L_18 = ___obj0;
V_10 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_18, UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_19 = V_10;
if (!L_19)
{
goto IL_00bd;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_00bd:
{
RuntimeObject* L_20 = ___obj0;
V_11 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_20, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_21 = V_11;
if (!L_21)
{
goto IL_00d0;
}
}
{
V_2 = (bool)1;
goto IL_00d5;
}
IL_00d0:
{
}
IL_00d1:
{
V_2 = (bool)0;
goto IL_00d5;
}
IL_00d5:
{
bool L_22 = V_2;
return L_22;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m05A5DA797E5183199087C2D14FCE2FFF86E4E292 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B15_0 = 0;
int32_t G_B20_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B30_0 = 0;
{
RuntimeObject* L_0 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)))
{
goto IL_0014;
}
}
{
RuntimeObject* L_1 = ___actual1;
G_B3_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_1, Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 1;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0031;
}
}
{
RuntimeObject* L_3 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_4;
L_4 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_3, NULL);
RuntimeObject* L_5 = ___actual1;
double L_6;
L_6 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_5, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_7 = ___tolerance2;
bool L_8;
L_8 = Numerics_AreEqual_mB8092D12CF79A63D0956228C98CFD75CBC9917BC(L_4, L_6, L_7, NULL);
V_1 = L_8;
goto IL_0153;
}
IL_0031:
{
RuntimeObject* L_9 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_9, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var)))
{
goto IL_0044;
}
}
{
RuntimeObject* L_10 = ___actual1;
G_B8_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_10, Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0045;
}
IL_0044:
{
G_B8_0 = 1;
}
IL_0045:
{
V_2 = (bool)G_B8_0;
bool L_11 = V_2;
if (!L_11)
{
goto IL_0061;
}
}
{
RuntimeObject* L_12 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_13;
L_13 = Convert_ToSingle_m65BB01710E72B9F3DF110EB46392D3AB36978D99(L_12, NULL);
RuntimeObject* L_14 = ___actual1;
float L_15;
L_15 = Convert_ToSingle_m65BB01710E72B9F3DF110EB46392D3AB36978D99(L_14, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_16 = ___tolerance2;
bool L_17;
L_17 = Numerics_AreEqual_m7F1A057D237DE9460841318B6C20A12E91E415DD(L_13, L_15, L_16, NULL);
V_1 = L_17;
goto IL_0153;
}
IL_0061:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_18 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_19 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_18);
NullCheck(L_19);
int32_t L_20;
L_20 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_19, NULL);
V_3 = (bool)((((int32_t)L_20) == ((int32_t)3))? 1 : 0);
bool L_21 = V_3;
if (!L_21)
{
goto IL_007a;
}
}
{
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_22 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
NullCheck(L_22);
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral413E2DE175635C92EB33F23D6687D1CDF4616538)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_m05A5DA797E5183199087C2D14FCE2FFF86E4E292_RuntimeMethod_var)));
}
IL_007a:
{
RuntimeObject* L_23 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_23, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))
{
goto IL_008d;
}
}
{
RuntimeObject* L_24 = ___actual1;
G_B15_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_24, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_008e;
}
IL_008d:
{
G_B15_0 = 1;
}
IL_008e:
{
V_4 = (bool)G_B15_0;
bool L_25 = V_4;
if (!L_25)
{
goto IL_00ad;
}
}
{
RuntimeObject* L_26 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_27;
L_27 = Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E(L_26, NULL);
RuntimeObject* L_28 = ___actual1;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_29;
L_29 = Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E(L_28, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_30 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_31 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_30);
bool L_32;
L_32 = Numerics_AreEqual_mFBF6847028D84AA8C7B5D0084D21295F3C7B5756(L_27, L_29, L_31, NULL);
V_1 = L_32;
goto IL_0153;
}
IL_00ad:
{
RuntimeObject* L_33 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_33, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var)))
{
goto IL_00c0;
}
}
{
RuntimeObject* L_34 = ___actual1;
G_B20_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_34, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_00c1;
}
IL_00c0:
{
G_B20_0 = 1;
}
IL_00c1:
{
V_5 = (bool)G_B20_0;
bool L_35 = V_5;
if (!L_35)
{
goto IL_00dd;
}
}
{
RuntimeObject* L_36 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_37;
L_37 = Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950(L_36, NULL);
RuntimeObject* L_38 = ___actual1;
uint64_t L_39;
L_39 = Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950(L_38, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_40 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_41 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_40);
bool L_42;
L_42 = Numerics_AreEqual_m89F3686BF058048EDD68F230EE5DDC2497B693E9(L_37, L_39, L_41, NULL);
V_1 = L_42;
goto IL_0153;
}
IL_00dd:
{
RuntimeObject* L_43 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_43, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))
{
goto IL_00f0;
}
}
{
RuntimeObject* L_44 = ___actual1;
G_B25_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_44, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_00f1;
}
IL_00f0:
{
G_B25_0 = 1;
}
IL_00f1:
{
V_6 = (bool)G_B25_0;
bool L_45 = V_6;
if (!L_45)
{
goto IL_010d;
}
}
{
RuntimeObject* L_46 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_47;
L_47 = Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D(L_46, NULL);
RuntimeObject* L_48 = ___actual1;
int64_t L_49;
L_49 = Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D(L_48, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_50 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_51 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_50);
bool L_52;
L_52 = Numerics_AreEqual_m4B6694B149D7E9771B05C9ABA02407D7E0B73642(L_47, L_49, L_51, NULL);
V_1 = L_52;
goto IL_0153;
}
IL_010d:
{
RuntimeObject* L_53 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_53, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var)))
{
goto IL_0120;
}
}
{
RuntimeObject* L_54 = ___actual1;
G_B30_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_54, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0121;
}
IL_0120:
{
G_B30_0 = 1;
}
IL_0121:
{
V_7 = (bool)G_B30_0;
bool L_55 = V_7;
if (!L_55)
{
goto IL_013d;
}
}
{
RuntimeObject* L_56 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_57;
L_57 = Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9(L_56, NULL);
RuntimeObject* L_58 = ___actual1;
uint32_t L_59;
L_59 = Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9(L_58, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_60 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_61 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_60);
bool L_62;
L_62 = Numerics_AreEqual_mA999B9742E931E4D646B3EBC8E5E23E1732669FB(L_57, L_59, L_61, NULL);
V_1 = L_62;
goto IL_0153;
}
IL_013d:
{
RuntimeObject* L_63 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_64;
L_64 = Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042(L_63, NULL);
RuntimeObject* L_65 = ___actual1;
int32_t L_66;
L_66 = Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042(L_65, NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_67 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_68 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_67);
bool L_69;
L_69 = Numerics_AreEqual_mDF3E84AFD310790D52E9A0A783E0B805DBF7A882(L_64, L_66, L_68, NULL);
V_1 = L_69;
goto IL_0153;
}
IL_0153:
{
bool L_70 = V_1;
return L_70;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Double,System.Double,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mB8092D12CF79A63D0956228C98CFD75CBC9917BC (double ___expected0, double ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
double V_4 = 0.0;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
int32_t G_B3_0 = 0;
int32_t G_B9_0 = 0;
int32_t G_B14_0 = 0;
{
double L_0 = ___expected0;
bool L_1;
L_1 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(L_0, NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
double L_2 = ___actual1;
bool L_3;
L_3 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 0;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_001d;
}
}
{
V_1 = (bool)1;
goto IL_013c;
}
IL_001d:
{
double L_5 = ___expected0;
bool L_6;
L_6 = Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline(L_5, NULL);
if (L_6)
{
goto IL_0035;
}
}
{
double L_7 = ___expected0;
bool L_8;
L_8 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(L_7, NULL);
if (L_8)
{
goto IL_0035;
}
}
{
double L_9 = ___actual1;
bool L_10;
L_10 = Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline(L_9, NULL);
G_B9_0 = ((int32_t)(L_10));
goto IL_0036;
}
IL_0035:
{
G_B9_0 = 1;
}
IL_0036:
{
V_2 = (bool)G_B9_0;
bool L_11 = V_2;
if (!L_11)
{
goto IL_0049;
}
}
{
double L_12 = ___actual1;
bool L_13;
L_13 = Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138((&___expected0), L_12, NULL);
V_1 = L_13;
goto IL_013c;
}
IL_0049:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_14 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_15 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_14);
NullCheck(L_15);
bool L_16;
L_16 = Tolerance_get_IsUnsetOrDefault_m0F6EF1B95CA3B71154801FA7457C30856908D129(L_15, NULL);
if (!L_16)
{
goto IL_0064;
}
}
{
double L_17 = ((GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_StaticFields*)il2cpp_codegen_static_fields_for(GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var))->___DefaultFloatingPointTolerance_0;
G_B14_0 = ((((double)L_17) > ((double)(0.0)))? 1 : 0);
goto IL_0065;
}
IL_0064:
{
G_B14_0 = 0;
}
IL_0065:
{
V_3 = (bool)G_B14_0;
bool L_18 = V_3;
if (!L_18)
{
goto IL_007a;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_19 = ___tolerance2;
double L_20 = ((GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_StaticFields*)il2cpp_codegen_static_fields_for(GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var))->___DefaultFloatingPointTolerance_0;
double L_21 = L_20;
RuntimeObject* L_22 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_21);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_23 = (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C*)il2cpp_codegen_object_new(Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var);
NullCheck(L_23);
Tolerance__ctor_m7D92C14E9EFF512F4F64AB89F82095FAC8F2BA07(L_23, L_22, NULL);
*((RuntimeObject**)L_19) = (RuntimeObject*)L_23;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_19, (void*)(RuntimeObject*)L_23);
}
IL_007a:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_24 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_25 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_24);
NullCheck(L_25);
int32_t L_26;
L_26 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_25, NULL);
V_6 = L_26;
int32_t L_27 = V_6;
V_5 = L_27;
int32_t L_28 = V_5;
switch (L_28)
{
case 0:
{
goto IL_00a3;
}
case 1:
{
goto IL_00b1;
}
case 2:
{
goto IL_00cd;
}
case 3:
{
goto IL_0116;
}
}
}
{
goto IL_012c;
}
IL_00a3:
{
double L_29 = ___actual1;
bool L_30;
L_30 = Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138((&___expected0), L_29, NULL);
V_1 = L_30;
goto IL_013c;
}
IL_00b1:
{
double L_31 = ___expected0;
double L_32 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_33;
L_33 = fabs(((double)il2cpp_codegen_subtract(L_31, L_32)));
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_34 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_35 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_34);
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_37;
L_37 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_36, NULL);
V_1 = (bool)((((int32_t)((!(((double)L_33) <= ((double)L_37)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_013c;
}
IL_00cd:
{
double L_38 = ___expected0;
V_7 = (bool)((((double)L_38) == ((double)(0.0)))? 1 : 0);
bool L_39 = V_7;
if (!L_39)
{
goto IL_00ea;
}
}
{
double L_40 = ___actual1;
bool L_41;
L_41 = Double_Equals_mAB526D98719C44EA42107A297B23A739F2E14138((&___expected0), L_40, NULL);
V_1 = L_41;
goto IL_013c;
}
IL_00ea:
{
double L_42 = ___expected0;
double L_43 = ___actual1;
double L_44 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_45;
L_45 = fabs(((double)(((double)il2cpp_codegen_subtract(L_42, L_43))/L_44)));
V_4 = L_45;
double L_46 = V_4;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_47 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_48 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_47);
NullCheck(L_48);
RuntimeObject* L_49;
L_49 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_48, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_50;
L_50 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_49, NULL);
V_1 = (bool)((((int32_t)((!(((double)L_46) <= ((double)((double)(L_50/(100.0))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_013c;
}
IL_0116:
{
double L_51 = ___expected0;
double L_52 = ___actual1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_53 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_54 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_53);
NullCheck(L_54);
RuntimeObject* L_55;
L_55 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_54, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_56;
L_56 = Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D(L_55, NULL);
bool L_57;
L_57 = FloatingPointNumerics_AreAlmostEqualUlps_mA25D9D3E837549F74A37961999E8F7B73ED30381(L_51, L_52, L_56, NULL);
V_1 = L_57;
goto IL_013c;
}
IL_012c:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_58 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_58);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_58, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_mB8092D12CF79A63D0956228C98CFD75CBC9917BC_RuntimeMethod_var)));
}
IL_013c:
{
bool L_59 = V_1;
return L_59;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Single,System.Single,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m7F1A057D237DE9460841318B6C20A12E91E415DD (float ___expected0, float ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
float V_4 = 0.0f;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
int32_t G_B3_0 = 0;
int32_t G_B9_0 = 0;
int32_t G_B14_0 = 0;
{
float L_0 = ___expected0;
bool L_1;
L_1 = Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline(L_0, NULL);
if (!L_1)
{
goto IL_0011;
}
}
{
float L_2 = ___actual1;
bool L_3;
L_3 = Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline(L_2, NULL);
G_B3_0 = ((int32_t)(L_3));
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 0;
}
IL_0012:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_001d;
}
}
{
V_1 = (bool)1;
goto IL_0135;
}
IL_001d:
{
float L_5 = ___expected0;
bool L_6;
L_6 = Single_IsInfinity_m500DB7A91ADC75BE691663649FCA28485FA720AB_inline(L_5, NULL);
if (L_6)
{
goto IL_0035;
}
}
{
float L_7 = ___expected0;
bool L_8;
L_8 = Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline(L_7, NULL);
if (L_8)
{
goto IL_0035;
}
}
{
float L_9 = ___actual1;
bool L_10;
L_10 = Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline(L_9, NULL);
G_B9_0 = ((int32_t)(L_10));
goto IL_0036;
}
IL_0035:
{
G_B9_0 = 1;
}
IL_0036:
{
V_2 = (bool)G_B9_0;
bool L_11 = V_2;
if (!L_11)
{
goto IL_0049;
}
}
{
float L_12 = ___actual1;
bool L_13;
L_13 = Single_Equals_m97C79E2B80F39214DB3F7E714FF2BCA45A0A8BF9((&___expected0), L_12, NULL);
V_1 = L_13;
goto IL_0135;
}
IL_0049:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_14 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_15 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_14);
NullCheck(L_15);
bool L_16;
L_16 = Tolerance_get_IsUnsetOrDefault_m0F6EF1B95CA3B71154801FA7457C30856908D129(L_15, NULL);
if (!L_16)
{
goto IL_0064;
}
}
{
double L_17 = ((GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_StaticFields*)il2cpp_codegen_static_fields_for(GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var))->___DefaultFloatingPointTolerance_0;
G_B14_0 = ((((double)L_17) > ((double)(0.0)))? 1 : 0);
goto IL_0065;
}
IL_0064:
{
G_B14_0 = 0;
}
IL_0065:
{
V_3 = (bool)G_B14_0;
bool L_18 = V_3;
if (!L_18)
{
goto IL_007a;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_19 = ___tolerance2;
double L_20 = ((GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_StaticFields*)il2cpp_codegen_static_fields_for(GlobalSettings_t851D58B299ABEBF2EC24A04FDD138730A8529EC4_il2cpp_TypeInfo_var))->___DefaultFloatingPointTolerance_0;
double L_21 = L_20;
RuntimeObject* L_22 = Box(Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var, &L_21);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_23 = (Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C*)il2cpp_codegen_object_new(Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C_il2cpp_TypeInfo_var);
NullCheck(L_23);
Tolerance__ctor_m7D92C14E9EFF512F4F64AB89F82095FAC8F2BA07(L_23, L_22, NULL);
*((RuntimeObject**)L_19) = (RuntimeObject*)L_23;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_19, (void*)(RuntimeObject*)L_23);
}
IL_007a:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_24 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_25 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_24);
NullCheck(L_25);
int32_t L_26;
L_26 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_25, NULL);
V_6 = L_26;
int32_t L_27 = V_6;
V_5 = L_27;
int32_t L_28 = V_5;
switch (L_28)
{
case 0:
{
goto IL_00a3;
}
case 1:
{
goto IL_00b1;
}
case 2:
{
goto IL_00ce;
}
case 3:
{
goto IL_010f;
}
}
}
{
goto IL_0125;
}
IL_00a3:
{
float L_29 = ___actual1;
bool L_30;
L_30 = Single_Equals_m97C79E2B80F39214DB3F7E714FF2BCA45A0A8BF9((&___expected0), L_29, NULL);
V_1 = L_30;
goto IL_0135;
}
IL_00b1:
{
float L_31 = ___expected0;
float L_32 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
float L_33;
L_33 = fabsf(((float)il2cpp_codegen_subtract(L_31, L_32)));
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_34 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_35 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_34);
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_37;
L_37 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_36, NULL);
V_1 = (bool)((((int32_t)((!(((double)((double)L_33)) <= ((double)L_37)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0135;
}
IL_00ce:
{
float L_38 = ___expected0;
V_7 = (bool)((((float)L_38) == ((float)(0.0f)))? 1 : 0);
bool L_39 = V_7;
if (!L_39)
{
goto IL_00e7;
}
}
{
float L_40 = ___actual1;
bool L_41;
L_41 = Single_Equals_m97C79E2B80F39214DB3F7E714FF2BCA45A0A8BF9((&___expected0), L_40, NULL);
V_1 = L_41;
goto IL_0135;
}
IL_00e7:
{
float L_42 = ___expected0;
float L_43 = ___actual1;
float L_44 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
float L_45;
L_45 = fabsf(((float)(((float)il2cpp_codegen_subtract(L_42, L_43))/L_44)));
V_4 = L_45;
float L_46 = V_4;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_47 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_48 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_47);
NullCheck(L_48);
RuntimeObject* L_49;
L_49 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_48, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
float L_50;
L_50 = Convert_ToSingle_m65BB01710E72B9F3DF110EB46392D3AB36978D99(L_49, NULL);
V_1 = (bool)((((int32_t)((!(((float)L_46) <= ((float)((float)(L_50/(100.0f))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0135;
}
IL_010f:
{
float L_51 = ___expected0;
float L_52 = ___actual1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_53 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_54 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_53);
NullCheck(L_54);
RuntimeObject* L_55;
L_55 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_54, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_56;
L_56 = Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042(L_55, NULL);
bool L_57;
L_57 = FloatingPointNumerics_AreAlmostEqualUlps_m4BC63DAF0F848198E0BE5B094309BBFE77AAF60B(L_51, L_52, L_56, NULL);
V_1 = L_57;
goto IL_0135;
}
IL_0125:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_58 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_58);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_58, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_m7F1A057D237DE9460841318B6C20A12E91E415DD_RuntimeMethod_var)));
}
IL_0135:
{
bool L_59 = V_1;
return L_59;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Decimal,System.Decimal,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mFBF6847028D84AA8C7B5D0084D21295F3C7B5756 (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___expected0, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_0;
memset((&V_0), 0, sizeof(V_0));
double V_1 = 0.0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = ___tolerance2;
NullCheck(L_0);
int32_t L_1;
L_1 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_0, NULL);
V_3 = L_1;
int32_t L_2 = V_3;
V_2 = L_2;
int32_t L_3 = V_2;
switch (L_3)
{
case 0:
{
goto IL_0021;
}
case 1:
{
goto IL_0030;
}
case 2:
{
goto IL_006f;
}
}
}
{
goto IL_00c6;
}
IL_0021:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_4 = ___actual1;
bool L_5;
L_5 = Decimal_Equals_m3CB5573B1905D94246A7CFB4B87586769F09F03A((&___expected0), L_4, NULL);
V_4 = L_5;
goto IL_00d6;
}
IL_0030:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_6 = ___tolerance2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_8;
L_8 = Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E(L_7, NULL);
V_0 = L_8;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_9 = V_0;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_10 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3;
bool L_11;
L_11 = Decimal_op_GreaterThan_m2C5A01FFBCF3858E8EF62C569D993EDC1CBC60FA(L_9, L_10, NULL);
V_5 = L_11;
bool L_12 = V_5;
if (!L_12)
{
goto IL_0063;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_13 = ___expected0;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_14 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_15;
L_15 = Decimal_op_Subtraction_m50F5DC718BD003A09A5BC62BAA3DECD0745AD3F1(L_13, L_14, NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_16;
L_16 = Math_Abs_m92EB8C43121E759A8C6F1AB3BC1539419E8848A2_inline(L_15, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_17 = V_0;
bool L_18;
L_18 = Decimal_op_LessThanOrEqual_m224D2D00F7A730482F0B29691C04A1C7177FAEAA(L_16, L_17, NULL);
V_4 = L_18;
goto IL_00d6;
}
IL_0063:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_19 = ___actual1;
bool L_20;
L_20 = Decimal_Equals_m3CB5573B1905D94246A7CFB4B87586769F09F03A((&___expected0), L_19, NULL);
V_4 = L_20;
goto IL_00d6;
}
IL_006f:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_21 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_22 = ((Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_StaticFields*)il2cpp_codegen_static_fields_for(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))->___Zero_3;
bool L_23;
L_23 = Decimal_op_Equality_m48AE8B579CA29541C36D456B707AF9D8015C3558(L_21, L_22, NULL);
V_6 = L_23;
bool L_24 = V_6;
if (!L_24)
{
goto IL_008c;
}
}
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_25 = ___actual1;
bool L_26;
L_26 = Decimal_Equals_m3CB5573B1905D94246A7CFB4B87586769F09F03A((&___expected0), L_25, NULL);
V_4 = L_26;
goto IL_00d6;
}
IL_008c:
{
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_27 = ___expected0;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_28 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_29;
L_29 = Decimal_op_Subtraction_m50F5DC718BD003A09A5BC62BAA3DECD0745AD3F1(L_27, L_28, NULL);
double L_30;
L_30 = Decimal_op_Explicit_mD8E11417E7C50756B8243840D18275050ABABBC6(L_29, NULL);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_31 = ___expected0;
double L_32;
L_32 = Decimal_op_Explicit_mD8E11417E7C50756B8243840D18275050ABABBC6(L_31, NULL);
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_33;
L_33 = fabs(((double)(((double)L_30)/((double)L_32))));
V_1 = L_33;
double L_34 = V_1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_35 = ___tolerance2;
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_37;
L_37 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_36, NULL);
V_4 = (bool)((((int32_t)((!(((double)L_34) <= ((double)((double)(L_37/(100.0))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d6;
}
IL_00c6:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_38 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_38);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_mFBF6847028D84AA8C7B5D0084D21295F3C7B5756_RuntimeMethod_var)));
}
IL_00d6:
{
bool L_39 = V_4;
return L_39;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.UInt64,System.UInt64,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m89F3686BF058048EDD68F230EE5DDC2497B693E9 (uint64_t ___expected0, uint64_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
uint64_t V_1 = 0;
double V_2 = 0.0;
int32_t V_3 = 0;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
uint64_t V_7 = 0;
bool V_8 = false;
int64_t G_B7_0 = 0;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = ___tolerance2;
NullCheck(L_0);
int32_t L_1;
L_1 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_0, NULL);
V_4 = L_1;
int32_t L_2 = V_4;
V_3 = L_2;
int32_t L_3 = V_3;
switch (L_3)
{
case 0:
{
goto IL_0023;
}
case 1:
{
goto IL_0032;
}
case 2:
{
goto IL_0070;
}
}
}
{
goto IL_00c3;
}
IL_0023:
{
uint64_t L_4 = ___actual1;
bool L_5;
L_5 = UInt64_Equals_mB642AC4A6A1261E0FB36D7F1F2D77940790FAA81((&___expected0), L_4, NULL);
V_5 = L_5;
goto IL_00d3;
}
IL_0032:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_6 = ___tolerance2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_8;
L_8 = Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950(L_7, NULL);
V_0 = L_8;
uint64_t L_9 = V_0;
V_6 = (bool)((!(((uint64_t)L_9) <= ((uint64_t)((int64_t)0))))? 1 : 0);
bool L_10 = V_6;
if (!L_10)
{
goto IL_0064;
}
}
{
uint64_t L_11 = ___expected0;
uint64_t L_12 = ___actual1;
if ((!(((uint64_t)L_11) < ((uint64_t)L_12))))
{
goto IL_0053;
}
}
{
uint64_t L_13 = ___actual1;
uint64_t L_14 = ___expected0;
G_B7_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_13, (int64_t)L_14));
goto IL_0056;
}
IL_0053:
{
uint64_t L_15 = ___expected0;
uint64_t L_16 = ___actual1;
G_B7_0 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_15, (int64_t)L_16));
}
IL_0056:
{
V_7 = G_B7_0;
uint64_t L_17 = V_7;
uint64_t L_18 = V_0;
V_5 = (bool)((((int32_t)((!(((uint64_t)L_17) <= ((uint64_t)L_18)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d3;
}
IL_0064:
{
uint64_t L_19 = ___actual1;
bool L_20;
L_20 = UInt64_Equals_mB642AC4A6A1261E0FB36D7F1F2D77940790FAA81((&___expected0), L_19, NULL);
V_5 = L_20;
goto IL_00d3;
}
IL_0070:
{
uint64_t L_21 = ___expected0;
V_8 = (bool)((((int64_t)L_21) == ((int64_t)((int64_t)0)))? 1 : 0);
bool L_22 = V_8;
if (!L_22)
{
goto IL_0087;
}
}
{
uint64_t L_23 = ___actual1;
bool L_24;
L_24 = UInt64_Equals_mB642AC4A6A1261E0FB36D7F1F2D77940790FAA81((&___expected0), L_23, NULL);
V_5 = L_24;
goto IL_00d3;
}
IL_0087:
{
uint64_t L_25 = ___expected0;
uint64_t L_26 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
uint64_t L_27;
L_27 = Math_Max_m6E9AD3CAF9A3F56A3ECD1EA5FE3DBB71BC74CD70(L_25, L_26, NULL);
uint64_t L_28 = ___expected0;
uint64_t L_29 = ___actual1;
uint64_t L_30;
L_30 = Math_Min_m78041E60789B49D08C39924B331E1E1E3F0651E9(L_28, L_29, NULL);
V_1 = ((int64_t)il2cpp_codegen_subtract((int64_t)L_27, (int64_t)L_30));
uint64_t L_31 = V_1;
uint64_t L_32 = ___expected0;
double L_33;
L_33 = fabs(((double)(((double)((double)(uint64_t)L_31))/((double)((double)(uint64_t)L_32)))));
V_2 = L_33;
double L_34 = V_2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_35 = ___tolerance2;
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_37;
L_37 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_36, NULL);
V_5 = (bool)((((int32_t)((!(((double)L_34) <= ((double)((double)(L_37/(100.0))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d3;
}
IL_00c3:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_38 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_38);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_m89F3686BF058048EDD68F230EE5DDC2497B693E9_RuntimeMethod_var)));
}
IL_00d3:
{
bool L_39 = V_5;
return L_39;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Int64,System.Int64,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_m4B6694B149D7E9771B05C9ABA02407D7E0B73642 (int64_t ___expected0, int64_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int64_t V_0 = 0;
double V_1 = 0.0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = ___tolerance2;
NullCheck(L_0);
int32_t L_1;
L_1 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_0, NULL);
V_3 = L_1;
int32_t L_2 = V_3;
V_2 = L_2;
int32_t L_3 = V_2;
switch (L_3)
{
case 0:
{
goto IL_0021;
}
case 1:
{
goto IL_0030;
}
case 2:
{
goto IL_0065;
}
}
}
{
goto IL_00a8;
}
IL_0021:
{
int64_t L_4 = ___actual1;
bool L_5;
L_5 = Int64_Equals_mBAEB8FFBE12F6A5876473B4B40E1BD316658873E((&___expected0), L_4, NULL);
V_4 = L_5;
goto IL_00b8;
}
IL_0030:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_6 = ___tolerance2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_8;
L_8 = Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D(L_7, NULL);
V_0 = L_8;
int64_t L_9 = V_0;
V_5 = (bool)((((int64_t)L_9) > ((int64_t)((int64_t)0)))? 1 : 0);
bool L_10 = V_5;
if (!L_10)
{
goto IL_0059;
}
}
{
int64_t L_11 = ___expected0;
int64_t L_12 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int64_t L_13;
L_13 = il2cpp_codegen_abs(((int64_t)il2cpp_codegen_subtract(L_11, L_12)));
int64_t L_14 = V_0;
V_4 = (bool)((((int32_t)((((int64_t)L_13) > ((int64_t)L_14))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00b8;
}
IL_0059:
{
int64_t L_15 = ___actual1;
bool L_16;
L_16 = Int64_Equals_mBAEB8FFBE12F6A5876473B4B40E1BD316658873E((&___expected0), L_15, NULL);
V_4 = L_16;
goto IL_00b8;
}
IL_0065:
{
int64_t L_17 = ___expected0;
V_6 = (bool)((((int64_t)L_17) == ((int64_t)((int64_t)0)))? 1 : 0);
bool L_18 = V_6;
if (!L_18)
{
goto IL_007c;
}
}
{
int64_t L_19 = ___actual1;
bool L_20;
L_20 = Int64_Equals_mBAEB8FFBE12F6A5876473B4B40E1BD316658873E((&___expected0), L_19, NULL);
V_4 = L_20;
goto IL_00b8;
}
IL_007c:
{
int64_t L_21 = ___expected0;
int64_t L_22 = ___actual1;
int64_t L_23 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_24;
L_24 = fabs(((double)(((double)((int64_t)il2cpp_codegen_subtract(L_21, L_22)))/((double)L_23))));
V_1 = L_24;
double L_25 = V_1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_26 = ___tolerance2;
NullCheck(L_26);
RuntimeObject* L_27;
L_27 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_26, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_28;
L_28 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_27, NULL);
V_4 = (bool)((((int32_t)((!(((double)L_25) <= ((double)((double)(L_28/(100.0))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00b8;
}
IL_00a8:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_29);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_m4B6694B149D7E9771B05C9ABA02407D7E0B73642_RuntimeMethod_var)));
}
IL_00b8:
{
bool L_30 = V_4;
return L_30;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.UInt32,System.UInt32,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mA999B9742E931E4D646B3EBC8E5E23E1732669FB (uint32_t ___expected0, uint32_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint32_t V_0 = 0;
uint32_t V_1 = 0;
double V_2 = 0.0;
int32_t V_3 = 0;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
uint32_t V_7 = 0;
bool V_8 = false;
int32_t G_B7_0 = 0;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = ___tolerance2;
NullCheck(L_0);
int32_t L_1;
L_1 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_0, NULL);
V_4 = L_1;
int32_t L_2 = V_4;
V_3 = L_2;
int32_t L_3 = V_3;
switch (L_3)
{
case 0:
{
goto IL_0023;
}
case 1:
{
goto IL_0032;
}
case 2:
{
goto IL_006f;
}
}
}
{
goto IL_00c1;
}
IL_0023:
{
uint32_t L_4 = ___actual1;
bool L_5;
L_5 = UInt32_Equals_m6BE590F34B71E27978E9146437F73A6448BA01A3((&___expected0), L_4, NULL);
V_5 = L_5;
goto IL_00d1;
}
IL_0032:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_6 = ___tolerance2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_8;
L_8 = Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9(L_7, NULL);
V_0 = L_8;
uint32_t L_9 = V_0;
V_6 = (bool)((!(((uint32_t)L_9) <= ((uint32_t)0)))? 1 : 0);
bool L_10 = V_6;
if (!L_10)
{
goto IL_0063;
}
}
{
uint32_t L_11 = ___expected0;
uint32_t L_12 = ___actual1;
if ((!(((uint32_t)L_11) < ((uint32_t)L_12))))
{
goto IL_0052;
}
}
{
uint32_t L_13 = ___actual1;
uint32_t L_14 = ___expected0;
G_B7_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14));
goto IL_0055;
}
IL_0052:
{
uint32_t L_15 = ___expected0;
uint32_t L_16 = ___actual1;
G_B7_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16));
}
IL_0055:
{
V_7 = G_B7_0;
uint32_t L_17 = V_7;
uint32_t L_18 = V_0;
V_5 = (bool)((((int32_t)((!(((uint32_t)L_17) <= ((uint32_t)L_18)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d1;
}
IL_0063:
{
uint32_t L_19 = ___actual1;
bool L_20;
L_20 = UInt32_Equals_m6BE590F34B71E27978E9146437F73A6448BA01A3((&___expected0), L_19, NULL);
V_5 = L_20;
goto IL_00d1;
}
IL_006f:
{
uint32_t L_21 = ___expected0;
V_8 = (bool)((((int32_t)L_21) == ((int32_t)0))? 1 : 0);
bool L_22 = V_8;
if (!L_22)
{
goto IL_0085;
}
}
{
uint32_t L_23 = ___actual1;
bool L_24;
L_24 = UInt32_Equals_m6BE590F34B71E27978E9146437F73A6448BA01A3((&___expected0), L_23, NULL);
V_5 = L_24;
goto IL_00d1;
}
IL_0085:
{
uint32_t L_25 = ___expected0;
uint32_t L_26 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
uint32_t L_27;
L_27 = Math_Max_mA38EFCCC7E58F8BEEDE1A9F63123302D634E001A(L_25, L_26, NULL);
uint32_t L_28 = ___expected0;
uint32_t L_29 = ___actual1;
uint32_t L_30;
L_30 = Math_Min_m1C7DD94B2E3BECC3C15A8B6899E88178DC539397(L_28, L_29, NULL);
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)L_30));
uint32_t L_31 = V_1;
uint32_t L_32 = ___expected0;
double L_33;
L_33 = fabs(((double)(((double)((double)(uint32_t)L_31))/((double)((double)(uint32_t)L_32)))));
V_2 = L_33;
double L_34 = V_2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_35 = ___tolerance2;
NullCheck(L_35);
RuntimeObject* L_36;
L_36 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_35, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_37;
L_37 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_36, NULL);
V_5 = (bool)((((int32_t)((!(((double)L_34) <= ((double)((double)(L_37/(100.0))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00d1;
}
IL_00c1:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_38 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_38);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_38, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_38, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_mA999B9742E931E4D646B3EBC8E5E23E1732669FB_RuntimeMethod_var)));
}
IL_00d1:
{
bool L_39 = V_5;
return L_39;
}
}
// System.Boolean NUnit.Framework.Constraints.Numerics::AreEqual(System.Int32,System.Int32,NUnit.Framework.Constraints.Tolerance)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Numerics_AreEqual_mDF3E84AFD310790D52E9A0A783E0B805DBF7A882 (int32_t ___expected0, int32_t ___actual1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
double V_1 = 0.0;
int32_t V_2 = 0;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0 = ___tolerance2;
NullCheck(L_0);
int32_t L_1;
L_1 = Tolerance_get_Mode_m6F7CEC0841CFB351BB6B58FC654D54EAC9CD650A(L_0, NULL);
V_3 = L_1;
int32_t L_2 = V_3;
V_2 = L_2;
int32_t L_3 = V_2;
switch (L_3)
{
case 0:
{
goto IL_0021;
}
case 1:
{
goto IL_0030;
}
case 2:
{
goto IL_0064;
}
}
}
{
goto IL_00a6;
}
IL_0021:
{
int32_t L_4 = ___actual1;
bool L_5;
L_5 = Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722((&___expected0), L_4, NULL);
V_4 = L_5;
goto IL_00b6;
}
IL_0030:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_6 = ___tolerance2;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_8;
L_8 = Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042(L_7, NULL);
V_0 = L_8;
int32_t L_9 = V_0;
V_5 = (bool)((((int32_t)L_9) > ((int32_t)0))? 1 : 0);
bool L_10 = V_5;
if (!L_10)
{
goto IL_0058;
}
}
{
int32_t L_11 = ___expected0;
int32_t L_12 = ___actual1;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
int32_t L_13;
L_13 = il2cpp_codegen_abs(((int32_t)il2cpp_codegen_subtract(L_11, L_12)));
int32_t L_14 = V_0;
V_4 = (bool)((((int32_t)((((int32_t)L_13) > ((int32_t)L_14))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00b6;
}
IL_0058:
{
int32_t L_15 = ___actual1;
bool L_16;
L_16 = Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722((&___expected0), L_15, NULL);
V_4 = L_16;
goto IL_00b6;
}
IL_0064:
{
int32_t L_17 = ___expected0;
V_6 = (bool)((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
bool L_18 = V_6;
if (!L_18)
{
goto IL_007a;
}
}
{
int32_t L_19 = ___actual1;
bool L_20;
L_20 = Int32_Equals_mC819D19A661B95BE253FB1769FD4D91961D20722((&___expected0), L_19, NULL);
V_4 = L_20;
goto IL_00b6;
}
IL_007a:
{
int32_t L_21 = ___expected0;
int32_t L_22 = ___actual1;
int32_t L_23 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
double L_24;
L_24 = fabs(((double)(((double)((int32_t)il2cpp_codegen_subtract(L_21, L_22)))/((double)L_23))));
V_1 = L_24;
double L_25 = V_1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_26 = ___tolerance2;
NullCheck(L_26);
RuntimeObject* L_27;
L_27 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_26, NULL);
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_28;
L_28 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_27, NULL);
V_4 = (bool)((((int32_t)((!(((double)L_25) <= ((double)((double)(L_28/(100.0))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_00b6;
}
IL_00a6:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_29);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_29, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6C1D7FE407385F676844A1BA8EC72B63EF2037F2)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAF248E82BE9EBA1ADBF067429FAEE5A5B6E05A74)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_AreEqual_mDF3E84AFD310790D52E9A0A783E0B805DBF7A882_RuntimeMethod_var)));
}
IL_00b6:
{
bool L_30 = V_4;
return L_30;
}
}
// System.Int32 NUnit.Framework.Constraints.Numerics::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Numerics_Compare_mFE1EED2E4772977E3D7CD0986FC67AF6A5E8F1B1 (RuntimeObject* ___expected0, RuntimeObject* ___actual1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
double V_2 = 0.0;
int32_t V_3 = 0;
bool V_4 = false;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F V_5;
memset((&V_5), 0, sizeof(V_5));
bool V_6 = false;
uint64_t V_7 = 0;
bool V_8 = false;
int64_t V_9 = 0;
bool V_10 = false;
uint32_t V_11 = 0;
int32_t V_12 = 0;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
int32_t G_B13_0 = 0;
int32_t G_B18_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B28_0 = 0;
{
RuntimeObject* L_0 = ___expected0;
bool L_1;
L_1 = Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116(L_0, NULL);
if (!L_1)
{
goto IL_0014;
}
}
{
RuntimeObject* L_2 = ___actual1;
bool L_3;
L_3 = Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116(L_2, NULL);
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_0015;
}
IL_0014:
{
G_B3_0 = 1;
}
IL_0015:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0024;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_5);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral705F223D15CECE6FD82ACC19F04AB1793EDD3C3D)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Numerics_Compare_mFE1EED2E4772977E3D7CD0986FC67AF6A5E8F1B1_RuntimeMethod_var)));
}
IL_0024:
{
RuntimeObject* L_6 = ___expected0;
bool L_7;
L_7 = Numerics_IsFloatingPointNumeric_mDF55FE85A2163E179D54113E11A8C3513FE1E15A(L_6, NULL);
if (L_7)
{
goto IL_0034;
}
}
{
RuntimeObject* L_8 = ___actual1;
bool L_9;
L_9 = Numerics_IsFloatingPointNumeric_mDF55FE85A2163E179D54113E11A8C3513FE1E15A(L_8, NULL);
G_B8_0 = ((int32_t)(L_9));
goto IL_0035;
}
IL_0034:
{
G_B8_0 = 1;
}
IL_0035:
{
V_1 = (bool)G_B8_0;
bool L_10 = V_1;
if (!L_10)
{
goto IL_0053;
}
}
{
RuntimeObject* L_11 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
double L_12;
L_12 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_11, NULL);
V_2 = L_12;
RuntimeObject* L_13 = ___actual1;
double L_14;
L_14 = Convert_ToDouble_mE64ED1A9412EA3B16E4C7F1C74655F53DE71C71A(L_13, NULL);
int32_t L_15;
L_15 = Double_CompareTo_m40FD7CA33B178CCFA4B6755267DC67841092CCFC((&V_2), L_14, NULL);
V_3 = L_15;
goto IL_0136;
}
IL_0053:
{
RuntimeObject* L_16 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_16, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var)))
{
goto IL_0066;
}
}
{
RuntimeObject* L_17 = ___actual1;
G_B13_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_17, Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0067;
}
IL_0066:
{
G_B13_0 = 1;
}
IL_0067:
{
V_4 = (bool)G_B13_0;
bool L_18 = V_4;
if (!L_18)
{
goto IL_0088;
}
}
{
RuntimeObject* L_19 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_20;
L_20 = Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E(L_19, NULL);
V_5 = L_20;
RuntimeObject* L_21 = ___actual1;
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_22;
L_22 = Convert_ToDecimal_m1B443B14EA173B3914882B5368B559E5ADB3E71E(L_21, NULL);
int32_t L_23;
L_23 = Decimal_CompareTo_mBD487E0B30C25C43C80F8E7F04B24ECD271263BC((&V_5), L_22, NULL);
V_3 = L_23;
goto IL_0136;
}
IL_0088:
{
RuntimeObject* L_24 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_24, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var)))
{
goto IL_009b;
}
}
{
RuntimeObject* L_25 = ___actual1;
G_B18_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_25, UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_009c;
}
IL_009b:
{
G_B18_0 = 1;
}
IL_009c:
{
V_6 = (bool)G_B18_0;
bool L_26 = V_6;
if (!L_26)
{
goto IL_00ba;
}
}
{
RuntimeObject* L_27 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint64_t L_28;
L_28 = Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950(L_27, NULL);
V_7 = L_28;
RuntimeObject* L_29 = ___actual1;
uint64_t L_30;
L_30 = Convert_ToUInt64_mC1875D406056690604DF2C04374B33EF1029E950(L_29, NULL);
int32_t L_31;
L_31 = UInt64_CompareTo_m1292E47C1FE2A1FC5BC5E6E2EB9C1FCDCEFE7745((&V_7), L_30, NULL);
V_3 = L_31;
goto IL_0136;
}
IL_00ba:
{
RuntimeObject* L_32 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_32, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var)))
{
goto IL_00cd;
}
}
{
RuntimeObject* L_33 = ___actual1;
G_B23_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_33, Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_00ce;
}
IL_00cd:
{
G_B23_0 = 1;
}
IL_00ce:
{
V_8 = (bool)G_B23_0;
bool L_34 = V_8;
if (!L_34)
{
goto IL_00ec;
}
}
{
RuntimeObject* L_35 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int64_t L_36;
L_36 = Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D(L_35, NULL);
V_9 = L_36;
RuntimeObject* L_37 = ___actual1;
int64_t L_38;
L_38 = Convert_ToInt64_mC34CCA8720E7032D4CFA51E522DB99EC6F07F16D(L_37, NULL);
int32_t L_39;
L_39 = Int64_CompareTo_m63A0BDA03C5B1DEB7387B1C53D6BFD961E4F5490((&V_9), L_38, NULL);
V_3 = L_39;
goto IL_0136;
}
IL_00ec:
{
RuntimeObject* L_40 = ___expected0;
if (((RuntimeObject*)IsInstSealed((RuntimeObject*)L_40, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var)))
{
goto IL_00ff;
}
}
{
RuntimeObject* L_41 = ___actual1;
G_B28_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_41, UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0100;
}
IL_00ff:
{
G_B28_0 = 1;
}
IL_0100:
{
V_10 = (bool)G_B28_0;
bool L_42 = V_10;
if (!L_42)
{
goto IL_011e;
}
}
{
RuntimeObject* L_43 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
uint32_t L_44;
L_44 = Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9(L_43, NULL);
V_11 = L_44;
RuntimeObject* L_45 = ___actual1;
uint32_t L_46;
L_46 = Convert_ToUInt32_m3882AC06C9D9E2CA1740A79B49C695FE541D8AC9(L_45, NULL);
int32_t L_47;
L_47 = UInt32_CompareTo_mC96F15BE2B06C0268AD1D110D3251CE4DBA43907((&V_11), L_46, NULL);
V_3 = L_47;
goto IL_0136;
}
IL_011e:
{
RuntimeObject* L_48 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(Convert_t7097FF336D592F7C06D88A98349A44646F91EFFC_il2cpp_TypeInfo_var);
int32_t L_49;
L_49 = Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042(L_48, NULL);
V_12 = L_49;
RuntimeObject* L_50 = ___actual1;
int32_t L_51;
L_51 = Convert_ToInt32_m6CCBC0A6ED81DAF7191F4C4F55CA038AF9B1E042(L_50, NULL);
int32_t L_52;
L_52 = Int32_CompareTo_mFA011811D4447442ED442B4A507BD4267621C586((&V_12), L_51, NULL);
V_3 = L_52;
goto IL_0136;
}
IL_0136:
{
int32_t L_53 = V_3;
return L_53;
}
}
// System.Void NUnit.Framework.Constraints.Numerics::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Numerics__ctor_mFD82AAA85C253379DD18A4176E9D887529E37555 (Numerics_tEE4729C3EE8975478415F49EA688D38834639957* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.NUnitComparer NUnit.Framework.Constraints.NUnitComparer::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* NUnitComparer_get_Default_m4D1974388FE381448C2B50580E53CD5EC443C85F (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* V_0 = NULL;
{
NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* L_0 = (NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03*)il2cpp_codegen_object_new(NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitComparer__ctor_mFECF1D18385AACEDE55C88E99F474BEC773F8362(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Constraints.NUnitComparer::Compare(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NUnitComparer_Compare_m5027057896703C0B69E76C29AD4C8514B44B8D25 (NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral80E45506581C5D717F5A34695C7F748F933761C5);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
Type_t* V_1 = NULL;
MethodInfo_t* V_2 = NULL;
bool V_3 = false;
int32_t V_4 = 0;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
int32_t G_B4_0 = 0;
int32_t G_B10_0 = 0;
int32_t G_B14_0 = 0;
int32_t G_B18_0 = 0;
{
RuntimeObject* L_0 = ___x0;
V_3 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_0017;
}
}
{
RuntimeObject* L_2 = ___y1;
if (!L_2)
{
goto IL_000f;
}
}
{
G_B4_0 = (-1);
goto IL_0010;
}
IL_000f:
{
G_B4_0 = 0;
}
IL_0010:
{
V_4 = G_B4_0;
goto IL_0154;
}
IL_0017:
{
RuntimeObject* L_3 = ___y1;
V_5 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_4 = V_5;
if (!L_4)
{
goto IL_0029;
}
}
{
V_4 = 1;
goto IL_0154;
}
IL_0029:
{
RuntimeObject* L_5 = ___x0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_5, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))
{
goto IL_003c;
}
}
{
RuntimeObject* L_6 = ___y1;
G_B10_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_6, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_003d;
}
IL_003c:
{
G_B10_0 = 0;
}
IL_003d:
{
V_6 = (bool)G_B10_0;
bool L_7 = V_6;
if (!L_7)
{
goto IL_005c;
}
}
{
RuntimeObject* L_8 = ___x0;
RuntimeObject* L_9 = ___y1;
if ((((int32_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_8, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))))) == ((int32_t)((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_9, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))))))
{
goto IL_0054;
}
}
{
G_B14_0 = 1;
goto IL_0055;
}
IL_0054:
{
G_B14_0 = 0;
}
IL_0055:
{
V_4 = G_B14_0;
goto IL_0154;
}
IL_005c:
{
RuntimeObject* L_10 = ___x0;
bool L_11;
L_11 = Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116(L_10, NULL);
if (!L_11)
{
goto IL_006c;
}
}
{
RuntimeObject* L_12 = ___y1;
bool L_13;
L_13 = Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116(L_12, NULL);
G_B18_0 = ((int32_t)(L_13));
goto IL_006d;
}
IL_006c:
{
G_B18_0 = 0;
}
IL_006d:
{
V_7 = (bool)G_B18_0;
bool L_14 = V_7;
if (!L_14)
{
goto IL_0081;
}
}
{
RuntimeObject* L_15 = ___x0;
RuntimeObject* L_16 = ___y1;
int32_t L_17;
L_17 = Numerics_Compare_mFE1EED2E4772977E3D7CD0986FC67AF6A5E8F1B1(L_15, L_16, NULL);
V_4 = L_17;
goto IL_0154;
}
IL_0081:
{
RuntimeObject* L_18 = ___x0;
V_8 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_18, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_19 = V_8;
if (!L_19)
{
goto IL_00a3;
}
}
{
RuntimeObject* L_20 = ___x0;
RuntimeObject* L_21 = ___y1;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_20, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var)));
int32_t L_22;
L_22 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_20, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var)), L_21);
V_4 = L_22;
goto IL_0154;
}
IL_00a3:
{
RuntimeObject* L_23 = ___y1;
V_9 = (bool)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_23, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_24 = V_9;
if (!L_24)
{
goto IL_00c6;
}
}
{
RuntimeObject* L_25 = ___y1;
RuntimeObject* L_26 = ___x0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_25, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var)));
int32_t L_27;
L_27 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(0 /* System.Int32 System.IComparable::CompareTo(System.Object) */, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_25, IComparable_t4D82A120347A28A1042C1563720033B8DA6E5C21_il2cpp_TypeInfo_var)), L_26);
V_4 = ((-L_27));
goto IL_0154;
}
IL_00c6:
{
RuntimeObject* L_28 = ___x0;
NullCheck(L_28);
Type_t* L_29;
L_29 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_28, NULL);
V_0 = L_29;
RuntimeObject* L_30 = ___y1;
NullCheck(L_30);
Type_t* L_31;
L_31 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_30, NULL);
V_1 = L_31;
Type_t* L_32 = V_0;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_33 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_34 = L_33;
Type_t* L_35 = V_1;
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_35);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_35);
NullCheck(L_32);
MethodInfo_t* L_36;
L_36 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_32, _stringLiteral80E45506581C5D717F5A34695C7F748F933761C5, L_34, NULL);
V_2 = L_36;
MethodInfo_t* L_37 = V_2;
V_10 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_37) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_38 = V_10;
if (!L_38)
{
goto IL_010e;
}
}
{
MethodInfo_t* L_39 = V_2;
RuntimeObject* L_40 = ___x0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_42 = L_41;
RuntimeObject* L_43 = ___y1;
NullCheck(L_42);
ArrayElementTypeCheck (L_42, L_43);
(L_42)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_43);
NullCheck(L_39);
RuntimeObject* L_44;
L_44 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_39, L_40, L_42, NULL);
V_4 = ((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_44, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))));
goto IL_0154;
}
IL_010e:
{
Type_t* L_45 = V_1;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_46 = (TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB*)SZArrayNew(TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB_il2cpp_TypeInfo_var, (uint32_t)1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_47 = L_46;
Type_t* L_48 = V_0;
NullCheck(L_47);
ArrayElementTypeCheck (L_47, L_48);
(L_47)->SetAt(static_cast<il2cpp_array_size_t>(0), (Type_t*)L_48);
NullCheck(L_45);
MethodInfo_t* L_49;
L_49 = Type_GetMethod_m9E8E55EC8316CE8A2851B62AD4C73E841FEAC2EA(L_45, _stringLiteral80E45506581C5D717F5A34695C7F748F933761C5, L_47, NULL);
V_2 = L_49;
MethodInfo_t* L_50 = V_2;
V_11 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_50) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_51 = V_11;
if (!L_51)
{
goto IL_0149;
}
}
{
MethodInfo_t* L_52 = V_2;
RuntimeObject* L_53 = ___y1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_54 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_55 = L_54;
RuntimeObject* L_56 = ___x0;
NullCheck(L_55);
ArrayElementTypeCheck (L_55, L_56);
(L_55)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_56);
NullCheck(L_52);
RuntimeObject* L_57;
L_57 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_52, L_53, L_55, NULL);
V_4 = ((-((*(int32_t*)((int32_t*)(int32_t*)UnBox(L_57, Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_il2cpp_TypeInfo_var))))));
goto IL_0154;
}
IL_0149:
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_58 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_58);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_58, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral31E68E5C77267F19BCCBF1A3D58AF78AF5F7B4FE)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_58, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NUnitComparer_Compare_m5027057896703C0B69E76C29AD4C8514B44B8D25_RuntimeMethod_var)));
}
IL_0154:
{
int32_t L_59 = V_4;
return L_59;
}
}
// System.Void NUnit.Framework.Constraints.NUnitComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitComparer__ctor_mFECF1D18385AACEDE55C88E99F474BEC773F8362 (NUnitComparer_tB2D15DAD80D36550F547F3D879483D4CB61B4D03* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.NUnitEqualityComparer NUnit.Framework.Constraints.NUnitEqualityComparer::get_Default()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* NUnitEqualityComparer_get_Default_m6A60DD26DF114A891ACD028E4ABD4AEBAB45BCB1 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* V_0 = NULL;
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_0 = (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746*)il2cpp_codegen_object_new(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
NullCheck(L_0);
NUnitEqualityComparer__ctor_m1E29B6EEFCB7D99BB00E2EBA8E9B163C59B594B3(L_0, NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_get_IgnoreCase_m33A07E5605876DBE9B9371F0997F2F78540F2F93 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0 = __this->___caseInsensitive_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
bool L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::set_IgnoreCase(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_IgnoreCase_mB429070FD90395F5F0E9A97E00CEE5D813294BE1 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___caseInsensitive_0 = L_0;
return;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::get_CompareAsCollection()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_get_CompareAsCollection_m7DA4AF166AC88A56962410E5AC19CC36C28EC9CE (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0 = __this->___compareAsCollection_1;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
bool L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::set_CompareAsCollection(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_CompareAsCollection_m856CD551970439567C00C69C7A359BB988A3B629 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___compareAsCollection_1 = L_0;
return;
}
}
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.EqualityAdapter> NUnit.Framework.Constraints.NUnitEqualityComparer::get_ExternalComparers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NUnitEqualityComparer_get_ExternalComparers_m64D04A9BE2E018FA0228191538D1D3C0E3C8A7DB (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* L_0 = __this->___externalComparers_2;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Collections.Generic.IList`1<NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint> NUnit.Framework.Constraints.NUnitEqualityComparer::get_FailurePoints()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NUnitEqualityComparer_get_FailurePoints_mA4C20C0343EEAB004033167743B550B43F23DF7B (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* L_0 = __this->___failurePoints_3;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::get_WithSameOffset()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_get_WithSameOffset_m033A4D8CB57EEBD8E366645F36EF110A158CE703 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CWithSameOffsetU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::set_WithSameOffset(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_WithSameOffset_m8D1EE77C5254CF6379ACE66C6320AADC5AC4D966 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CWithSameOffsetU3Ek__BackingField_5 = L_0;
return;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::AreEqual(System.Object,System.Object,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_t6B67F15F63BF2F3C9BF0458C0AA16F217BE189F0_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m723A9C79EDAB71B090B316E621F59716DB771ACD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeArray_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
Type_t* V_1 = NULL;
Type_t* V_2 = NULL;
Type_t* V_3 = NULL;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* V_4 = NULL;
MethodInfo_t* V_5 = NULL;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
bool V_14 = false;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* V_15 = NULL;
RuntimeObject* V_16 = NULL;
RuntimeObject* V_17 = NULL;
RuntimeObject* V_18 = NULL;
RuntimeObject* V_19 = NULL;
bool V_20 = false;
bool V_21 = false;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
bool V_25 = false;
bool V_26 = false;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_27;
memset((&V_27), 0, sizeof(V_27));
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 V_28;
memset((&V_28), 0, sizeof(V_28));
bool V_29 = false;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_30;
memset((&V_30), 0, sizeof(V_30));
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_31;
memset((&V_31), 0, sizeof(V_31));
bool V_32 = false;
bool V_33 = false;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A V_34;
memset((&V_34), 0, sizeof(V_34));
bool V_35 = false;
bool V_36 = false;
bool V_37 = false;
bool V_38 = false;
bool V_39 = false;
int32_t G_B3_0 = 0;
int32_t G_B8_0 = 0;
Type_t* G_B15_0 = NULL;
Type_t* G_B18_0 = NULL;
int32_t G_B24_0 = 0;
int32_t G_B29_0 = 0;
int32_t G_B34_0 = 0;
int32_t G_B39_0 = 0;
int32_t G_B43_0 = 0;
int32_t G_B47_0 = 0;
int32_t G_B52_0 = 0;
int32_t G_B57_0 = 0;
int32_t G_B62_0 = 0;
int32_t G_B67_0 = 0;
int32_t G_B72_0 = 0;
int32_t G_B76_0 = 0;
int32_t G_B82_0 = 0;
int32_t G_B88_0 = 0;
int32_t G_B92_0 = 0;
int32_t G_B97_0 = 0;
int32_t G_B105_0 = 0;
int32_t G_B110_0 = 0;
{
List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* L_0 = (List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2*)il2cpp_codegen_object_new(List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_m723A9C79EDAB71B090B316E621F59716DB771ACD(L_0, List_1__ctor_m723A9C79EDAB71B090B316E621F59716DB771ACD_RuntimeMethod_var);
__this->___failurePoints_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___failurePoints_3), (void*)L_0);
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12((&___x0), NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_RuntimeMethod_var);
NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12((&___y1), NUnitEqualityComparer_CheckGameObjectReference_TisRuntimeObject_m6DE424E6CBD46C14CB790AA5C86D0CF9BE743B12_RuntimeMethod_var);
RuntimeObject* L_1 = ___x0;
if (L_1)
{
goto IL_0025;
}
}
{
RuntimeObject* L_2 = ___y1;
G_B3_0 = ((((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_0026;
}
IL_0025:
{
G_B3_0 = 0;
}
IL_0026:
{
V_6 = (bool)G_B3_0;
bool L_3 = V_6;
if (!L_3)
{
goto IL_0034;
}
}
{
V_7 = (bool)1;
goto IL_04e0;
}
IL_0034:
{
RuntimeObject* L_4 = ___x0;
if (!L_4)
{
goto IL_003d;
}
}
{
RuntimeObject* L_5 = ___y1;
G_B8_0 = ((((RuntimeObject*)(RuntimeObject*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_003e;
}
IL_003d:
{
G_B8_0 = 1;
}
IL_003e:
{
V_8 = (bool)G_B8_0;
bool L_6 = V_8;
if (!L_6)
{
goto IL_004c;
}
}
{
V_7 = (bool)0;
goto IL_04e0;
}
IL_004c:
{
RuntimeObject* L_7 = ___x0;
RuntimeObject* L_8 = ___y1;
V_9 = (bool)((((RuntimeObject*)(RuntimeObject*)L_7) == ((RuntimeObject*)(RuntimeObject*)L_8))? 1 : 0);
bool L_9 = V_9;
if (!L_9)
{
goto IL_005e;
}
}
{
V_7 = (bool)1;
goto IL_04e0;
}
IL_005e:
{
RuntimeObject* L_10 = ___x0;
NullCheck(L_10);
Type_t* L_11;
L_11 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_10, NULL);
V_0 = L_11;
RuntimeObject* L_12 = ___y1;
NullCheck(L_12);
Type_t* L_13;
L_13 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_12, NULL);
V_1 = L_13;
Type_t* L_14 = V_0;
Type_t* L_15;
L_15 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_14, NULL);
NullCheck(L_15);
bool L_16;
L_16 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_15);
if (L_16)
{
goto IL_007c;
}
}
{
G_B15_0 = ((Type_t*)(NULL));
goto IL_0082;
}
IL_007c:
{
Type_t* L_17 = V_0;
NullCheck(L_17);
Type_t* L_18;
L_18 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_17);
G_B15_0 = L_18;
}
IL_0082:
{
V_2 = G_B15_0;
Type_t* L_19 = V_1;
Type_t* L_20;
L_20 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_19, NULL);
NullCheck(L_20);
bool L_21;
L_21 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_20);
if (L_21)
{
goto IL_0093;
}
}
{
G_B18_0 = ((Type_t*)(NULL));
goto IL_0099;
}
IL_0093:
{
Type_t* L_22 = V_1;
NullCheck(L_22);
Type_t* L_23;
L_23 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_22);
G_B18_0 = L_23;
}
IL_0099:
{
V_3 = G_B18_0;
RuntimeObject* L_24 = ___x0;
RuntimeObject* L_25 = ___y1;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_26;
L_26 = NUnitEqualityComparer_GetExternalComparer_mC5FF4C401B0A8969EB08FCC88BCCE42BC9CE25D2(__this, L_24, L_25, NULL);
V_4 = L_26;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_27 = V_4;
V_10 = (bool)((!(((RuntimeObject*)(EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C*)L_27) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_28 = V_10;
if (!L_28)
{
goto IL_00bf;
}
}
{
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_29 = V_4;
RuntimeObject* L_30 = ___x0;
RuntimeObject* L_31 = ___y1;
NullCheck(L_29);
bool L_32;
L_32 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.EqualityAdapter::AreEqual(System.Object,System.Object) */, L_29, L_30, L_31);
V_7 = L_32;
goto IL_04e0;
}
IL_00bf:
{
Type_t* L_33 = V_0;
NullCheck(L_33);
bool L_34;
L_34 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_33, NULL);
if (!L_34)
{
goto IL_00da;
}
}
{
Type_t* L_35 = V_1;
NullCheck(L_35);
bool L_36;
L_36 = Type_get_IsArray_mB9B8CA713B2AA9D6AFECC24E05AF78D22532B673(L_35, NULL);
if (!L_36)
{
goto IL_00da;
}
}
{
bool L_37 = __this->___compareAsCollection_1;
G_B24_0 = ((((int32_t)L_37) == ((int32_t)0))? 1 : 0);
goto IL_00db;
}
IL_00da:
{
G_B24_0 = 0;
}
IL_00db:
{
V_11 = (bool)G_B24_0;
bool L_38 = V_11;
if (!L_38)
{
goto IL_00fb;
}
}
{
RuntimeObject* L_39 = ___x0;
RuntimeObject* L_40 = ___y1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_41 = ___tolerance2;
bool L_42;
L_42 = NUnitEqualityComparer_ArraysEqual_mC2EC880935DCFBB4B48D6D4F75433999D0DB5172(__this, ((RuntimeArray*)CastclassClass((RuntimeObject*)L_39, RuntimeArray_il2cpp_TypeInfo_var)), ((RuntimeArray*)CastclassClass((RuntimeObject*)L_40, RuntimeArray_il2cpp_TypeInfo_var)), L_41, NULL);
V_7 = L_42;
goto IL_04e0;
}
IL_00fb:
{
RuntimeObject* L_43 = ___x0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_43, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var)))
{
goto IL_010e;
}
}
{
RuntimeObject* L_44 = ___y1;
G_B29_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_44, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_010f;
}
IL_010e:
{
G_B29_0 = 0;
}
IL_010f:
{
V_12 = (bool)G_B29_0;
bool L_45 = V_12;
if (!L_45)
{
goto IL_012f;
}
}
{
RuntimeObject* L_46 = ___x0;
RuntimeObject* L_47 = ___y1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_48 = ___tolerance2;
bool L_49;
L_49 = NUnitEqualityComparer_DictionariesEqual_m8B00FF4AA0345AA1725CC3F6D221C4B3404E0FE0(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_46, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_47, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var)), L_48, NULL);
V_7 = L_49;
goto IL_04e0;
}
IL_012f:
{
RuntimeObject* L_50 = ___x0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_50, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var)))
{
goto IL_0142;
}
}
{
RuntimeObject* L_51 = ___y1;
G_B34_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_51, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0143;
}
IL_0142:
{
G_B34_0 = 0;
}
IL_0143:
{
V_13 = (bool)G_B34_0;
bool L_52 = V_13;
if (!L_52)
{
goto IL_0163;
}
}
{
RuntimeObject* L_53 = ___x0;
RuntimeObject* L_54 = ___y1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_55 = ___tolerance2;
bool L_56;
L_56 = NUnitEqualityComparer_DictionaryEntriesEqual_mFC7643DD5BA8FA8C3E0DFC2B06EFA0D00D95A69D(__this, ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_53, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var)))), ((*(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)((DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB*)UnBox(L_54, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var)))), L_55, NULL);
V_7 = L_56;
goto IL_04e0;
}
IL_0163:
{
Type_t* L_57 = V_2;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_58 = { reinterpret_cast<intptr_t> (KeyValuePair_2_t6B67F15F63BF2F3C9BF0458C0AA16F217BE189F0_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_59;
L_59 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_58, NULL);
if ((!(((RuntimeObject*)(Type_t*)L_57) == ((RuntimeObject*)(Type_t*)L_59))))
{
goto IL_017f;
}
}
{
Type_t* L_60 = V_3;
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_61 = { reinterpret_cast<intptr_t> (KeyValuePair_2_t6B67F15F63BF2F3C9BF0458C0AA16F217BE189F0_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_62;
L_62 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_61, NULL);
G_B39_0 = ((((RuntimeObject*)(Type_t*)L_60) == ((RuntimeObject*)(Type_t*)L_62))? 1 : 0);
goto IL_0180;
}
IL_017f:
{
G_B39_0 = 0;
}
IL_0180:
{
V_14 = (bool)G_B39_0;
bool L_63 = V_14;
if (!L_63)
{
goto IL_0201;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_64;
L_64 = Tolerance_get_Exact_mCF02AD0D3468C736F6F7ECCB051756FB74C3BE07(NULL);
V_15 = L_64;
Type_t* L_65 = V_0;
NullCheck(L_65);
PropertyInfo_t* L_66;
L_66 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_65, _stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07, NULL);
RuntimeObject* L_67 = ___x0;
NullCheck(L_66);
RuntimeObject* L_68;
L_68 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_66, L_67, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_16 = L_68;
Type_t* L_69 = V_1;
NullCheck(L_69);
PropertyInfo_t* L_70;
L_70 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_69, _stringLiteralB720A9AE58815DFF5576319E5228D318E7899C07, NULL);
RuntimeObject* L_71 = ___y1;
NullCheck(L_70);
RuntimeObject* L_72;
L_72 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_70, L_71, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_17 = L_72;
Type_t* L_73 = V_0;
NullCheck(L_73);
PropertyInfo_t* L_74;
L_74 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_73, _stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3, NULL);
RuntimeObject* L_75 = ___x0;
NullCheck(L_74);
RuntimeObject* L_76;
L_76 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_74, L_75, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_18 = L_76;
Type_t* L_77 = V_1;
NullCheck(L_77);
PropertyInfo_t* L_78;
L_78 = Type_GetProperty_mD183124FC8A89121E8368058B327A7750B14281D(L_77, _stringLiteral86FADB31129B6F40C720A97600D69389EA3567E3, NULL);
RuntimeObject* L_79 = ___y1;
NullCheck(L_78);
RuntimeObject* L_80;
L_80 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_78, L_79, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
V_19 = L_80;
RuntimeObject* L_81 = V_16;
RuntimeObject* L_82 = V_17;
bool L_83;
L_83 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_81, L_82, (&V_15), NULL);
if (!L_83)
{
goto IL_01f9;
}
}
{
RuntimeObject* L_84 = V_18;
RuntimeObject* L_85 = V_19;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_86 = ___tolerance2;
bool L_87;
L_87 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_84, L_85, L_86, NULL);
G_B43_0 = ((int32_t)(L_87));
goto IL_01fa;
}
IL_01f9:
{
G_B43_0 = 0;
}
IL_01fa:
{
V_7 = (bool)G_B43_0;
goto IL_04e0;
}
IL_0201:
{
RuntimeObject* L_88 = ___x0;
if (!((String_t*)IsInstSealed((RuntimeObject*)L_88, String_t_il2cpp_TypeInfo_var)))
{
goto IL_0214;
}
}
{
RuntimeObject* L_89 = ___y1;
G_B47_0 = ((!(((RuntimeObject*)(String_t*)((String_t*)IsInstSealed((RuntimeObject*)L_89, String_t_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0215;
}
IL_0214:
{
G_B47_0 = 0;
}
IL_0215:
{
V_20 = (bool)G_B47_0;
bool L_90 = V_20;
if (!L_90)
{
goto IL_0234;
}
}
{
RuntimeObject* L_91 = ___x0;
RuntimeObject* L_92 = ___y1;
bool L_93;
L_93 = NUnitEqualityComparer_StringsEqual_m2CA67F0271EEFF95F3EB662CEA5EC47936EE17D2(__this, ((String_t*)CastclassSealed((RuntimeObject*)L_91, String_t_il2cpp_TypeInfo_var)), ((String_t*)CastclassSealed((RuntimeObject*)L_92, String_t_il2cpp_TypeInfo_var)), NULL);
V_7 = L_93;
goto IL_04e0;
}
IL_0234:
{
RuntimeObject* L_94 = ___x0;
if (!((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)IsInstClass((RuntimeObject*)L_94, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)))
{
goto IL_0247;
}
}
{
RuntimeObject* L_95 = ___y1;
G_B52_0 = ((!(((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)IsInstClass((RuntimeObject*)L_95, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0248;
}
IL_0247:
{
G_B52_0 = 0;
}
IL_0248:
{
V_21 = (bool)G_B52_0;
bool L_96 = V_21;
if (!L_96)
{
goto IL_0267;
}
}
{
RuntimeObject* L_97 = ___x0;
RuntimeObject* L_98 = ___y1;
bool L_99;
L_99 = NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B(__this, ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_97, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)), ((Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)CastclassClass((RuntimeObject*)L_98, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_il2cpp_TypeInfo_var)), NULL);
V_7 = L_99;
goto IL_04e0;
}
IL_0267:
{
RuntimeObject* L_100 = ___x0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_100, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))
{
goto IL_027a;
}
}
{
RuntimeObject* L_101 = ___y1;
G_B57_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_101, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_027b;
}
IL_027a:
{
G_B57_0 = 0;
}
IL_027b:
{
V_22 = (bool)G_B57_0;
bool L_102 = V_22;
if (!L_102)
{
goto IL_029a;
}
}
{
RuntimeObject* L_103 = ___x0;
RuntimeObject* L_104 = ___y1;
bool L_105;
L_105 = NUnitEqualityComparer_CharsEqual_mFA9C49BF88594AEC4FEB5AF1D909983A5F034CCC(__this, ((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_103, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))), ((*(Il2CppChar*)((Il2CppChar*)(Il2CppChar*)UnBox(L_104, Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var)))), NULL);
V_7 = L_105;
goto IL_04e0;
}
IL_029a:
{
RuntimeObject* L_106 = ___x0;
if (!((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)IsInstSealed((RuntimeObject*)L_106, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var)))
{
goto IL_02ad;
}
}
{
RuntimeObject* L_107 = ___y1;
G_B62_0 = ((!(((RuntimeObject*)(DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)IsInstSealed((RuntimeObject*)L_107, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_02ae;
}
IL_02ad:
{
G_B62_0 = 0;
}
IL_02ae:
{
V_23 = (bool)G_B62_0;
bool L_108 = V_23;
if (!L_108)
{
goto IL_02cc;
}
}
{
RuntimeObject* L_109 = ___x0;
RuntimeObject* L_110 = ___y1;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
bool L_111;
L_111 = NUnitEqualityComparer_DirectoriesEqual_mA6213226D19C29A59A073F32ADC889AC47AD8991(((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)CastclassSealed((RuntimeObject*)L_109, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var)), ((DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2*)CastclassSealed((RuntimeObject*)L_110, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2_il2cpp_TypeInfo_var)), NULL);
V_7 = L_111;
goto IL_04e0;
}
IL_02cc:
{
RuntimeObject* L_112 = ___x0;
bool L_113;
L_113 = Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116(L_112, NULL);
if (!L_113)
{
goto IL_02dc;
}
}
{
RuntimeObject* L_114 = ___y1;
bool L_115;
L_115 = Numerics_IsNumericType_m6A39ACAE41BD0642244A3A85A23DE8D70F230116(L_114, NULL);
G_B67_0 = ((int32_t)(L_115));
goto IL_02dd;
}
IL_02dc:
{
G_B67_0 = 0;
}
IL_02dd:
{
V_24 = (bool)G_B67_0;
bool L_116 = V_24;
if (!L_116)
{
goto IL_02f2;
}
}
{
RuntimeObject* L_117 = ___x0;
RuntimeObject* L_118 = ___y1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_119 = ___tolerance2;
bool L_120;
L_120 = Numerics_AreEqual_m05A5DA797E5183199087C2D14FCE2FFF86E4E292(L_117, L_118, L_119, NULL);
V_7 = L_120;
goto IL_04e0;
}
IL_02f2:
{
RuntimeObject* L_121 = ___x0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_121, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var)))
{
goto IL_0305;
}
}
{
RuntimeObject* L_122 = ___y1;
G_B72_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_122, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0306;
}
IL_0305:
{
G_B72_0 = 0;
}
IL_0306:
{
V_25 = (bool)G_B72_0;
bool L_123 = V_25;
if (!L_123)
{
goto IL_03a9;
}
}
{
RuntimeObject* L_124 = ___x0;
V_27 = ((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_124, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))));
RuntimeObject* L_125 = ___y1;
V_28 = ((*(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)((DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4*)UnBox(L_125, DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var))));
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_126 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_127 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_126);
if (!L_127)
{
goto IL_0335;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_128 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_129 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_128);
NullCheck(L_129);
RuntimeObject* L_130;
L_130 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_129, NULL);
G_B76_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_130, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0336;
}
IL_0335:
{
G_B76_0 = 0;
}
IL_0336:
{
V_29 = (bool)G_B76_0;
bool L_131 = V_29;
if (!L_131)
{
goto IL_0369;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_132 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_133 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_132);
NullCheck(L_133);
RuntimeObject* L_134;
L_134 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_133, NULL);
V_30 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_134, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))));
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_135 = V_27;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_136 = V_28;
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_137;
L_137 = DateTimeOffset_op_Subtraction_mAF7218EC4755BB73B6532FBF9DD9874A71BA2D3A(L_135, L_136, NULL);
V_31 = L_137;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_138;
L_138 = TimeSpan_Duration_mC2D681D5F4A015951F71863CEADD49EBAA932132((&V_31), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_139 = V_30;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
bool L_140;
L_140 = TimeSpan_op_LessThanOrEqual_m15A091041A6E53861348784744744319A33AA9EA(L_138, L_139, NULL);
V_26 = L_140;
goto IL_0376;
}
IL_0369:
{
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_141 = V_27;
DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4 L_142 = V_28;
il2cpp_codegen_runtime_class_init_inline(DateTimeOffset_t4EE701FE2F386D6F932FAC9B11E4B74A5B30F0A4_il2cpp_TypeInfo_var);
bool L_143;
L_143 = DateTimeOffset_op_Equality_m33318CE5D85584EA3D2A6EAAD0E522ED9C4D7A63(L_141, L_142, NULL);
V_26 = L_143;
}
IL_0376:
{
bool L_144 = V_26;
if (!L_144)
{
goto IL_0382;
}
}
{
bool L_145;
L_145 = NUnitEqualityComparer_get_WithSameOffset_m033A4D8CB57EEBD8E366645F36EF110A158CE703_inline(__this, NULL);
G_B82_0 = ((int32_t)(L_145));
goto IL_0383;
}
IL_0382:
{
G_B82_0 = 0;
}
IL_0383:
{
V_32 = (bool)G_B82_0;
bool L_146 = V_32;
if (!L_146)
{
goto IL_03a0;
}
}
{
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_147;
L_147 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4((&V_27), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_148;
L_148 = DateTimeOffset_get_Offset_mE90E2548227F1EE8BF4A6A5EB71B32D48D3035A4((&V_28), NULL);
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
bool L_149;
L_149 = TimeSpan_op_Equality_m482BBD58F00FA3924F9AFD66F249274039197F1C(L_147, L_148, NULL);
V_26 = L_149;
}
IL_03a0:
{
bool L_150 = V_26;
V_7 = L_150;
goto IL_04e0;
}
IL_03a9:
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_151 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_152 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_151);
if (!L_152)
{
goto IL_03be;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_153 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_154 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_153);
NullCheck(L_154);
RuntimeObject* L_155;
L_155 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_154, NULL);
G_B88_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_155, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_03bf;
}
IL_03be:
{
G_B88_0 = 0;
}
IL_03bf:
{
V_33 = (bool)G_B88_0;
bool L_156 = V_33;
if (!L_156)
{
goto IL_045c;
}
}
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_157 = ___tolerance2;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_158 = *((Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C**)L_157);
NullCheck(L_158);
RuntimeObject* L_159;
L_159 = Tolerance_get_Value_m897CF21D2BAF48C3CE6C1556E92E508CEB12ECC2(L_158, NULL);
V_34 = ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_159, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))));
RuntimeObject* L_160 = ___x0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_160, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))
{
goto IL_03ea;
}
}
{
RuntimeObject* L_161 = ___y1;
G_B92_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_161, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_03eb;
}
IL_03ea:
{
G_B92_0 = 0;
}
IL_03eb:
{
V_35 = (bool)G_B92_0;
bool L_162 = V_35;
if (!L_162)
{
goto IL_0419;
}
}
{
RuntimeObject* L_163 = ___x0;
RuntimeObject* L_164 = ___y1;
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_165;
L_165 = DateTime_op_Subtraction_m41335EF0E6DCD52B23C64916CB973A0B4A9E0387(((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_163, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), ((*(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)((DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D*)UnBox(L_164, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var)))), NULL);
V_31 = L_165;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_166;
L_166 = TimeSpan_Duration_mC2D681D5F4A015951F71863CEADD49EBAA932132((&V_31), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_167 = V_34;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
bool L_168;
L_168 = TimeSpan_op_LessThanOrEqual_m15A091041A6E53861348784744744319A33AA9EA(L_166, L_167, NULL);
V_7 = L_168;
goto IL_04e0;
}
IL_0419:
{
RuntimeObject* L_169 = ___x0;
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_169, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))
{
goto IL_042c;
}
}
{
RuntimeObject* L_170 = ___y1;
G_B97_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInstSealed((RuntimeObject*)L_170, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_042d;
}
IL_042c:
{
G_B97_0 = 0;
}
IL_042d:
{
V_36 = (bool)G_B97_0;
bool L_171 = V_36;
if (!L_171)
{
goto IL_045b;
}
}
{
RuntimeObject* L_172 = ___x0;
RuntimeObject* L_173 = ___y1;
il2cpp_codegen_runtime_class_init_inline(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_174;
L_174 = TimeSpan_op_Subtraction_mFFB8933364C5E1E2187CA0605445893F2872FBB8(((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_172, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), ((*(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)((TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)(TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A*)UnBox(L_173, TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A_il2cpp_TypeInfo_var)))), NULL);
V_31 = L_174;
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_175;
L_175 = TimeSpan_Duration_mC2D681D5F4A015951F71863CEADD49EBAA932132((&V_31), NULL);
TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A L_176 = V_34;
bool L_177;
L_177 = TimeSpan_op_LessThanOrEqual_m15A091041A6E53861348784744744319A33AA9EA(L_175, L_176, NULL);
V_7 = L_177;
goto IL_04e0;
}
IL_045b:
{
}
IL_045c:
{
Type_t* L_178 = V_0;
Type_t* L_179 = V_1;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
MethodInfo_t* L_180;
L_180 = NUnitEqualityComparer_FirstImplementsIEquatableOfSecond_m12B26578504022589EE5EB1824525B7D82568D73(L_178, L_179, NULL);
V_5 = L_180;
MethodInfo_t* L_181 = V_5;
V_37 = (bool)((!(((RuntimeObject*)(MethodInfo_t*)L_181) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_182 = V_37;
if (!L_182)
{
goto IL_047d;
}
}
{
RuntimeObject* L_183 = ___x0;
RuntimeObject* L_184 = ___y1;
MethodInfo_t* L_185 = V_5;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
bool L_186;
L_186 = NUnitEqualityComparer_InvokeFirstIEquatableEqualsSecond_m65FE39AED1BFD210D6BFA1233D5903EE6805F814(L_183, L_184, L_185, NULL);
V_7 = L_186;
goto IL_04e0;
}
IL_047d:
{
Type_t* L_187 = V_0;
Type_t* L_188 = V_1;
if ((((RuntimeObject*)(Type_t*)L_187) == ((RuntimeObject*)(Type_t*)L_188)))
{
goto IL_0490;
}
}
{
Type_t* L_189 = V_1;
Type_t* L_190 = V_0;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
MethodInfo_t* L_191;
L_191 = NUnitEqualityComparer_FirstImplementsIEquatableOfSecond_m12B26578504022589EE5EB1824525B7D82568D73(L_189, L_190, NULL);
MethodInfo_t* L_192 = L_191;
V_5 = L_192;
G_B105_0 = ((!(((RuntimeObject*)(MethodInfo_t*)L_192) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_0491;
}
IL_0490:
{
G_B105_0 = 0;
}
IL_0491:
{
V_38 = (bool)G_B105_0;
bool L_193 = V_38;
if (!L_193)
{
goto IL_04a4;
}
}
{
RuntimeObject* L_194 = ___y1;
RuntimeObject* L_195 = ___x0;
MethodInfo_t* L_196 = V_5;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
bool L_197;
L_197 = NUnitEqualityComparer_InvokeFirstIEquatableEqualsSecond_m65FE39AED1BFD210D6BFA1233D5903EE6805F814(L_194, L_195, L_196, NULL);
V_7 = L_197;
goto IL_04e0;
}
IL_04a4:
{
RuntimeObject* L_198 = ___x0;
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_198, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)))
{
goto IL_04b7;
}
}
{
RuntimeObject* L_199 = ___y1;
G_B110_0 = ((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_199, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_04b8;
}
IL_04b7:
{
G_B110_0 = 0;
}
IL_04b8:
{
V_39 = (bool)G_B110_0;
bool L_200 = V_39;
if (!L_200)
{
goto IL_04d5;
}
}
{
RuntimeObject* L_201 = ___x0;
RuntimeObject* L_202 = ___y1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_203 = ___tolerance2;
bool L_204;
L_204 = NUnitEqualityComparer_EnumerablesEqual_mD3AD62E938427C5548187D26B464E87D71C6C86B(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_201, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)), ((RuntimeObject*)Castclass((RuntimeObject*)L_202, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)), L_203, NULL);
V_7 = L_204;
goto IL_04e0;
}
IL_04d5:
{
RuntimeObject* L_205 = ___x0;
RuntimeObject* L_206 = ___y1;
NullCheck(L_205);
bool L_207;
L_207 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_205, L_206);
V_7 = L_207;
goto IL_04e0;
}
IL_04e0:
{
bool L_208 = V_7;
return L_208;
}
}
// System.Reflection.MethodInfo NUnit.Framework.Constraints.NUnitEqualityComparer::FirstImplementsIEquatableOfSecond(System.Type,System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t* NUnitEqualityComparer_FirstImplementsIEquatableOfSecond_m12B26578504022589EE5EB1824525B7D82568D73 (Type_t* ___first0, Type_t* ___second1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t0E49AD026B2C06381C0A0049B25C680E618ACACD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t445729BDB018BA7EE00800359194E88C078C5D0A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_mF0112805A31528C27337365D8BCAF66893AB1043_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB V_0;
memset((&V_0), 0, sizeof(V_0));
RuntimeObject* V_1 = NULL;
KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB V_2;
memset((&V_2), 0, sizeof(V_2));
bool V_3 = false;
bool V_4 = false;
MethodInfo_t* V_5 = NULL;
int32_t G_B6_0 = 0;
{
il2cpp_codegen_initobj((&V_0), sizeof(KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB));
Type_t* L_0 = ___first0;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
RuntimeObject* L_1;
L_1 = NUnitEqualityComparer_GetEquatableGenericArguments_mD66E53CA7E3ACD0A3369D7C9A700F21CE9D88329(L_0, NULL);
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>::GetEnumerator() */, IEnumerable_1_t0E49AD026B2C06381C0A0049B25C680E618ACACD_il2cpp_TypeInfo_var, L_1);
V_1 = L_2;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0061:
{// begin finally (depth: 1)
{
RuntimeObject* L_3 = V_1;
if (!L_3)
{
goto IL_006b;
}
}
{
RuntimeObject* L_4 = V_1;
NullCheck(L_4);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_4);
}
IL_006b:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0057_1;
}
IL_0018_1:
{
RuntimeObject* L_5 = V_1;
NullCheck(L_5);
KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB L_6;
L_6 = InterfaceFuncInvoker0< KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB >::Invoke(0 /* T System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>>::get_Current() */, IEnumerator_1_t445729BDB018BA7EE00800359194E88C078C5D0A_il2cpp_TypeInfo_var, L_5);
V_2 = L_6;
Type_t* L_7;
L_7 = KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_inline((&V_2), KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_RuntimeMethod_var);
Type_t* L_8 = ___second1;
NullCheck(L_7);
bool L_9;
L_9 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_7, L_8);
V_3 = L_9;
bool L_10 = V_3;
if (!L_10)
{
goto IL_0057_1;
}
}
{
Type_t* L_11;
L_11 = KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_inline((&V_0), KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_RuntimeMethod_var);
if (!L_11)
{
goto IL_004e_1;
}
}
{
Type_t* L_12;
L_12 = KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_inline((&V_0), KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_RuntimeMethod_var);
Type_t* L_13;
L_13 = KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_inline((&V_2), KeyValuePair_2_get_Key_mD6753E9A3B0F68965B5D94178E33D5A66558226E_RuntimeMethod_var);
NullCheck(L_12);
bool L_14;
L_14 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(22 /* System.Boolean System.Type::IsAssignableFrom(System.Type) */, L_12, L_13);
G_B6_0 = ((int32_t)(L_14));
goto IL_004f_1;
}
IL_004e_1:
{
G_B6_0 = 1;
}
IL_004f_1:
{
V_4 = (bool)G_B6_0;
bool L_15 = V_4;
if (!L_15)
{
goto IL_0057_1;
}
}
{
KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB L_16 = V_2;
V_0 = L_16;
}
IL_0057_1:
{
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
bool L_18;
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0018_1;
}
}
{
goto IL_006c;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_006c:
{
MethodInfo_t* L_19;
L_19 = KeyValuePair_2_get_Value_mF0112805A31528C27337365D8BCAF66893AB1043_inline((&V_0), KeyValuePair_2_get_Value_mF0112805A31528C27337365D8BCAF66893AB1043_RuntimeMethod_var);
V_5 = L_19;
goto IL_0077;
}
IL_0077:
{
MethodInfo_t* L_20 = V_5;
return L_20;
}
}
// System.Collections.Generic.IList`1<System.Collections.Generic.KeyValuePair`2<System.Type,System.Reflection.MethodInfo>> NUnit.Framework.Constraints.NUnitEqualityComparer::GetEquatableGenericArguments(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NUnitEqualityComparer_GetEquatableGenericArguments_mD66E53CA7E3ACD0A3369D7C9A700F21CE9D88329 (Type_t* ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEquatable_1_tFEFF3D0D9006789C86A917B9EE3BA20A6C63C82D_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2__ctor_m3F7B62EE24E4D4D7C92ACEA0017D2391FC09BDA3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m4D70D2E18A8E3D8C03FFFCD6EAC9F6814C649174_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mB0D00F42652D83E1BF3080C2F9C5772E920F9AD8_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA851E31651A2D0B1B2CB61676A144AB45DF71D1D);
s_Il2CppMethodInitialized = true;
}
List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299* V_0 = NULL;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* V_1 = NULL;
int32_t V_2 = 0;
Type_t* V_3 = NULL;
bool V_4 = false;
RuntimeObject* V_5 = NULL;
int32_t G_B4_0 = 0;
{
List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299* L_0 = (List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299*)il2cpp_codegen_object_new(List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_mB0D00F42652D83E1BF3080C2F9C5772E920F9AD8(L_0, List_1__ctor_mB0D00F42652D83E1BF3080C2F9C5772E920F9AD8_RuntimeMethod_var);
V_0 = L_0;
Type_t* L_1 = ___type0;
NullCheck(L_1);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_2;
L_2 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(117 /* System.Type[] System.Type::GetInterfaces() */, L_1);
V_1 = L_2;
V_2 = 0;
goto IL_0069;
}
IL_0013:
{
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
Type_t* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = L_6;
Type_t* L_7 = V_3;
Type_t* L_8;
L_8 = TypeExtensions_GetTypeInfo_mDFB3F622488E9591C38A1817CA957029FDECE4DA(L_7, NULL);
NullCheck(L_8);
bool L_9;
L_9 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_8);
if (!L_9)
{
goto IL_003c;
}
}
{
Type_t* L_10 = V_3;
NullCheck(L_10);
Type_t* L_11;
L_11 = VirtualFuncInvoker0< Type_t* >::Invoke(48 /* System.Type System.Type::GetGenericTypeDefinition() */, L_10);
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_12 = { reinterpret_cast<intptr_t> (IEquatable_1_tFEFF3D0D9006789C86A917B9EE3BA20A6C63C82D_0_0_0_var) };
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_13;
L_13 = Type_GetTypeFromHandle_m2570A2A5B32A5E9D9F0F38B37459DA18736C823E(L_12, NULL);
NullCheck(L_11);
bool L_14;
L_14 = VirtualFuncInvoker1< bool, Type_t* >::Invoke(127 /* System.Boolean System.Type::Equals(System.Type) */, L_11, L_13);
G_B4_0 = ((int32_t)(L_14));
goto IL_003d;
}
IL_003c:
{
G_B4_0 = 0;
}
IL_003d:
{
V_4 = (bool)G_B4_0;
bool L_15 = V_4;
if (!L_15)
{
goto IL_0064;
}
}
{
List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299* L_16 = V_0;
Type_t* L_17 = V_3;
NullCheck(L_17);
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_18;
L_18 = VirtualFuncInvoker0< TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* >::Invoke(50 /* System.Type[] System.Type::GetGenericArguments() */, L_17);
NullCheck(L_18);
int32_t L_19 = 0;
Type_t* L_20 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_19));
Type_t* L_21 = V_3;
NullCheck(L_21);
MethodInfo_t* L_22;
L_22 = Type_GetMethod_m66AD062187F19497DBCA900823B0C268322DC231(L_21, _stringLiteralA851E31651A2D0B1B2CB61676A144AB45DF71D1D, NULL);
KeyValuePair_2_t86EEF28143F6D09171E18B71DEB2A679FFEB73CB L_23;
memset((&L_23), 0, sizeof(L_23));
KeyValuePair_2__ctor_m3F7B62EE24E4D4D7C92ACEA0017D2391FC09BDA3((&L_23), L_20, L_22, /*hidden argument*/KeyValuePair_2__ctor_m3F7B62EE24E4D4D7C92ACEA0017D2391FC09BDA3_RuntimeMethod_var);
NullCheck(L_16);
List_1_Add_m4D70D2E18A8E3D8C03FFFCD6EAC9F6814C649174_inline(L_16, L_23, List_1_Add_m4D70D2E18A8E3D8C03FFFCD6EAC9F6814C649174_RuntimeMethod_var);
}
IL_0064:
{
int32_t L_24 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_24, 1));
}
IL_0069:
{
int32_t L_25 = V_2;
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* L_26 = V_1;
NullCheck(L_26);
if ((((int32_t)L_25) < ((int32_t)((int32_t)(((RuntimeArray*)L_26)->max_length)))))
{
goto IL_0013;
}
}
{
List_1_tC53EBD33629270A226E08F0B2EFC9A317DE49299* L_27 = V_0;
V_5 = L_27;
goto IL_0074;
}
IL_0074:
{
RuntimeObject* L_28 = V_5;
return L_28;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::InvokeFirstIEquatableEqualsSecond(System.Object,System.Object,System.Reflection.MethodInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_InvokeFirstIEquatableEqualsSecond_m65FE39AED1BFD210D6BFA1233D5903EE6805F814 (RuntimeObject* ___first0, RuntimeObject* ___second1, MethodInfo_t* ___equals2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
int32_t G_B4_0 = 0;
{
}
try
{// begin try (depth: 1)
{
MethodInfo_t* L_0 = ___equals2;
if (L_0)
{
goto IL_0008_1;
}
}
{
G_B4_0 = 0;
goto IL_001e_1;
}
IL_0008_1:
{
MethodInfo_t* L_1 = ___equals2;
RuntimeObject* L_2 = ___first0;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = L_3;
RuntimeObject* L_5 = ___second1;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_5);
NullCheck(L_1);
RuntimeObject* L_6;
L_6 = MethodBase_Invoke_mEEF3218648F111A8C338001A7804091A0747C826(L_1, L_2, L_4, NULL);
G_B4_0 = ((int32_t)(((*(bool*)((bool*)(bool*)UnBox(L_6, Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_il2cpp_TypeInfo_var))))));
}
IL_001e_1:
{
V_0 = (bool)G_B4_0;
goto IL_002d;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TargetInvocationException_t46C470A37ED9947AFD45BD814387DF64665B69F2_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0021;
}
throw e;
}
CATCH_0021:
{// begin catch(System.Reflection.TargetInvocationException)
RuntimeObject* L_7 = ___first0;
RuntimeObject* L_8 = ___second1;
NullCheck(L_7);
bool L_9;
L_9 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_7, L_8);
V_0 = L_9;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002d;
}// end catch (depth: 1)
IL_002d:
{
bool L_10 = V_0;
return L_10;
}
}
// NUnit.Framework.Constraints.EqualityAdapter NUnit.Framework.Constraints.NUnitEqualityComparer::GetExternalComparer(System.Object,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* NUnitEqualityComparer_GetExternalComparer_mC5FF4C401B0A8969EB08FCC88BCCE42BC9CE25D2 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m8334A72F9492DC38EAAE05EEBFB6A0B8D4634F4D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m6AF6E20F8844E50C909620AD4AA5704F41672B9D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mBC614A4CD4D47E71EA274FAB2F5E4A50790FE05A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mD222163019328A154004E23FD2FFDB8AAED10C0D_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE V_0;
memset((&V_0), 0, sizeof(V_0));
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* V_1 = NULL;
bool V_2 = false;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* V_3 = NULL;
{
List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* L_0 = __this->___externalComparers_2;
NullCheck(L_0);
Enumerator_t1A91D8CE27B3271E73CD418030C716A034E410BE L_1;
L_1 = List_1_GetEnumerator_mD222163019328A154004E23FD2FFDB8AAED10C0D(L_0, List_1_GetEnumerator_mD222163019328A154004E23FD2FFDB8AAED10C0D_RuntimeMethod_var);
V_0 = L_1;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0033:
{// begin finally (depth: 1)
Enumerator_Dispose_m8334A72F9492DC38EAAE05EEBFB6A0B8D4634F4D((&V_0), Enumerator_Dispose_m8334A72F9492DC38EAAE05EEBFB6A0B8D4634F4D_RuntimeMethod_var);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0028_1;
}
IL_0010_1:
{
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_2;
L_2 = Enumerator_get_Current_mBC614A4CD4D47E71EA274FAB2F5E4A50790FE05A_inline((&V_0), Enumerator_get_Current_mBC614A4CD4D47E71EA274FAB2F5E4A50790FE05A_RuntimeMethod_var);
V_1 = L_2;
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_3 = V_1;
RuntimeObject* L_4 = ___x0;
RuntimeObject* L_5 = ___y1;
NullCheck(L_3);
bool L_6;
L_6 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(5 /* System.Boolean NUnit.Framework.Constraints.EqualityAdapter::CanCompare(System.Object,System.Object) */, L_3, L_4, L_5);
V_2 = L_6;
bool L_7 = V_2;
if (!L_7)
{
goto IL_0028_1;
}
}
{
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_8 = V_1;
V_3 = L_8;
goto IL_0046;
}
IL_0028_1:
{
bool L_9;
L_9 = Enumerator_MoveNext_m6AF6E20F8844E50C909620AD4AA5704F41672B9D((&V_0), Enumerator_MoveNext_m6AF6E20F8844E50C909620AD4AA5704F41672B9D_RuntimeMethod_var);
if (L_9)
{
goto IL_0010_1;
}
}
{
goto IL_0042;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0042:
{
V_3 = (EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C*)NULL;
goto IL_0046;
}
IL_0046:
{
EqualityAdapter_t5F910A097F0FA8CEB3C8FBC3E7F4B1E6D0EFE68C* L_10 = V_3;
return L_10;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::ArraysEqual(System.Array,System.Array,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_ArraysEqual_mC2EC880935DCFBB4B48D6D4F75433999D0DB5172 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeArray* ___x0, RuntimeArray* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
{
RuntimeArray* L_0 = ___x0;
NullCheck(L_0);
int32_t L_1;
L_1 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_0, NULL);
V_0 = L_1;
int32_t L_2 = V_0;
RuntimeArray* L_3 = ___y1;
NullCheck(L_3);
int32_t L_4;
L_4 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_3, NULL);
V_1 = (bool)((((int32_t)((((int32_t)L_2) == ((int32_t)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_001c;
}
}
{
V_2 = (bool)0;
goto IL_0057;
}
IL_001c:
{
V_3 = 1;
goto IL_0041;
}
IL_0020:
{
RuntimeArray* L_6 = ___x0;
int32_t L_7 = V_3;
NullCheck(L_6);
int32_t L_8;
L_8 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_6, L_7, NULL);
RuntimeArray* L_9 = ___y1;
int32_t L_10 = V_3;
NullCheck(L_9);
int32_t L_11;
L_11 = Array_GetLength_mFE7A9FE891DE1E07795230BE09854441CDD0E935(L_9, L_10, NULL);
V_4 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_11))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_12 = V_4;
if (!L_12)
{
goto IL_003d;
}
}
{
V_2 = (bool)0;
goto IL_0057;
}
IL_003d:
{
int32_t L_13 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add(L_13, 1));
}
IL_0041:
{
int32_t L_14 = V_3;
int32_t L_15 = V_0;
V_5 = (bool)((((int32_t)L_14) < ((int32_t)L_15))? 1 : 0);
bool L_16 = V_5;
if (L_16)
{
goto IL_0020;
}
}
{
RuntimeArray* L_17 = ___x0;
RuntimeArray* L_18 = ___y1;
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_19 = ___tolerance2;
bool L_20;
L_20 = NUnitEqualityComparer_EnumerablesEqual_mD3AD62E938427C5548187D26B464E87D71C6C86B(__this, L_17, L_18, L_19, NULL);
V_2 = L_20;
goto IL_0057;
}
IL_0057:
{
bool L_21 = V_2;
return L_21;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::DictionariesEqual(System.Collections.IDictionary,System.Collections.IDictionary,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_DictionariesEqual_m8B00FF4AA0345AA1725CC3F6D221C4B3404E0FE0 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
RuntimeObject* V_4 = NULL;
RuntimeObject* V_5 = NULL;
bool V_6 = false;
RuntimeObject* V_7 = NULL;
int32_t G_B5_0 = 0;
{
RuntimeObject* L_0 = ___x0;
NullCheck(L_0);
int32_t L_1;
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
RuntimeObject* L_2 = ___y1;
NullCheck(L_2);
int32_t L_3;
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_2);
V_1 = (bool)((((int32_t)((((int32_t)L_1) == ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_001d;
}
}
{
V_2 = (bool)0;
goto IL_00ae;
}
IL_001d:
{
RuntimeObject* L_5 = ___x0;
NullCheck(L_5);
RuntimeObject* L_6;
L_6 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.ICollection System.Collections.IDictionary::get_Keys() */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_5);
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_7 = (CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9*)il2cpp_codegen_object_new(CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9_il2cpp_TypeInfo_var);
NullCheck(L_7);
CollectionTally__ctor_m21CFBFBBC15F27DA0008AE83A1C31DC41F2F8328(L_7, __this, L_6, NULL);
V_0 = L_7;
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_8 = V_0;
RuntimeObject* L_9 = ___y1;
NullCheck(L_9);
RuntimeObject* L_10;
L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.ICollection System.Collections.IDictionary::get_Keys() */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_9);
NullCheck(L_8);
bool L_11;
L_11 = CollectionTally_TryRemove_m39DB0584B95285F688F631A8FA5ADC2883EA3B0D(L_8, L_10, NULL);
if (!L_11)
{
goto IL_0043;
}
}
{
CollectionTally_tE481C19C7311854A403EEAF4E59BD31A5C8699F9* L_12 = V_0;
NullCheck(L_12);
int32_t L_13;
L_13 = CollectionTally_get_Count_mD6F314D427AE5132606A1B41120C502ABF3A4E0B(L_12, NULL);
G_B5_0 = ((((int32_t)L_13) > ((int32_t)0))? 1 : 0);
goto IL_0044;
}
IL_0043:
{
G_B5_0 = 1;
}
IL_0044:
{
V_3 = (bool)G_B5_0;
bool L_14 = V_3;
if (!L_14)
{
goto IL_004c;
}
}
{
V_2 = (bool)0;
goto IL_00ae;
}
IL_004c:
{
RuntimeObject* L_15 = ___x0;
NullCheck(L_15);
RuntimeObject* L_16;
L_16 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2 /* System.Collections.ICollection System.Collections.IDictionary::get_Keys() */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_15);
NullCheck(L_16);
RuntimeObject* L_17;
L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_16);
V_4 = L_17;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0094:
{// begin finally (depth: 1)
{
RuntimeObject* L_18 = V_4;
V_7 = ((RuntimeObject*)IsInst((RuntimeObject*)L_18, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_19 = V_7;
if (!L_19)
{
goto IL_00a9;
}
}
{
RuntimeObject* L_20 = V_7;
NullCheck(L_20);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_20);
}
IL_00a9:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0089_1;
}
IL_005c_1:
{
RuntimeObject* L_21 = V_4;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
V_5 = L_22;
RuntimeObject* L_23 = ___x0;
RuntimeObject* L_24 = V_5;
NullCheck(L_23);
RuntimeObject* L_25;
L_25 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_23, L_24);
RuntimeObject* L_26 = ___y1;
RuntimeObject* L_27 = V_5;
NullCheck(L_26);
RuntimeObject* L_28;
L_28 = InterfaceFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(0 /* System.Object System.Collections.IDictionary::get_Item(System.Object) */, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_26, L_27);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_29 = ___tolerance2;
bool L_30;
L_30 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_25, L_28, L_29, NULL);
V_6 = (bool)((((int32_t)L_30) == ((int32_t)0))? 1 : 0);
bool L_31 = V_6;
if (!L_31)
{
goto IL_0089_1;
}
}
{
V_2 = (bool)0;
goto IL_00ae;
}
IL_0089_1:
{
RuntimeObject* L_32 = V_4;
NullCheck(L_32);
bool L_33;
L_33 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_32);
if (L_33)
{
goto IL_005c_1;
}
}
{
goto IL_00aa;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_00aa:
{
V_2 = (bool)1;
goto IL_00ae;
}
IL_00ae:
{
bool L_34 = V_2;
return L_34;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::DictionaryEntriesEqual(System.Collections.DictionaryEntry,System.Collections.DictionaryEntry,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_DictionaryEntriesEqual_mFC7643DD5BA8FA8C3E0DFC2B06EFA0D00D95A69D (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB ___x0, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* V_0 = NULL;
bool V_1 = false;
int32_t G_B3_0 = 0;
{
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C* L_0;
L_0 = Tolerance_get_Exact_mCF02AD0D3468C736F6F7ECCB051756FB74C3BE07(NULL);
V_0 = L_0;
RuntimeObject* L_1;
L_1 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&___x0), NULL);
RuntimeObject* L_2;
L_2 = DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline((&___y1), NULL);
bool L_3;
L_3 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_1, L_2, (&V_0), NULL);
if (!L_3)
{
goto IL_0036;
}
}
{
RuntimeObject* L_4;
L_4 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&___x0), NULL);
RuntimeObject* L_5;
L_5 = DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline((&___y1), NULL);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_6 = ___tolerance2;
bool L_7;
L_7 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_4, L_5, L_6, NULL);
G_B3_0 = ((int32_t)(L_7));
goto IL_0037;
}
IL_0036:
{
G_B3_0 = 0;
}
IL_0037:
{
V_1 = (bool)G_B3_0;
goto IL_003a;
}
IL_003a:
{
bool L_8 = V_1;
return L_8;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::CollectionsEqual(System.Collections.ICollection,System.Collections.ICollection,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_CollectionsEqual_m62FC16D84D5A3984967876D966D7DBCE695F5AE2 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
RuntimeObject* V_11 = NULL;
RuntimeObject* V_12 = NULL;
bool V_13 = false;
bool V_14 = false;
int32_t G_B5_0 = 0;
int32_t G_B10_0 = 0;
{
V_0 = (RuntimeObject*)NULL;
V_1 = (RuntimeObject*)NULL;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00d1:
{// begin finally (depth: 1)
{
RuntimeObject* L_0 = V_0;
V_11 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_11;
V_13 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_13;
if (!L_2)
{
goto IL_00ed;
}
}
{
RuntimeObject* L_3 = V_11;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_00ed:
{
RuntimeObject* L_4 = V_1;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_12;
V_14 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_5) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_6 = V_14;
if (!L_6)
{
goto IL_0108;
}
}
{
RuntimeObject* L_7 = V_12;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0108:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_8 = ___x0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_8);
V_0 = L_9;
RuntimeObject* L_10 = ___y1;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_10);
V_1 = L_11;
V_2 = 0;
goto IL_00cc_1;
}
IL_001b_1:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
bool L_13;
L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_12);
V_3 = L_13;
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
bool L_15;
L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_14);
V_4 = L_15;
bool L_16 = V_3;
if (L_16)
{
goto IL_0035_1;
}
}
{
bool L_17 = V_4;
G_B5_0 = ((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
goto IL_0036_1;
}
IL_0035_1:
{
G_B5_0 = 0;
}
IL_0036_1:
{
V_5 = (bool)G_B5_0;
bool L_18 = V_5;
if (!L_18)
{
goto IL_0044_1;
}
}
{
V_6 = (bool)1;
goto IL_010a;
}
IL_0044_1:
{
bool L_19 = V_3;
bool L_20 = V_4;
if ((!(((uint32_t)L_19) == ((uint32_t)L_20))))
{
goto IL_0061_1;
}
}
{
RuntimeObject* L_21 = V_0;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
RuntimeObject* L_23 = V_1;
NullCheck(L_23);
RuntimeObject* L_24;
L_24 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_25 = ___tolerance2;
bool L_26;
L_26 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_22, L_24, L_25, NULL);
G_B10_0 = ((((int32_t)L_26) == ((int32_t)0))? 1 : 0);
goto IL_0062_1;
}
IL_0061_1:
{
G_B10_0 = 1;
}
IL_0062_1:
{
V_7 = (bool)G_B10_0;
bool L_27 = V_7;
if (!L_27)
{
goto IL_00c7_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_28 = (FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*)il2cpp_codegen_object_new(FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var);
NullCheck(L_28);
FailurePoint__ctor_m74E65C9481D77AA3E124A07A1CB8B0D97CBF9E1B(L_28, NULL);
V_8 = L_28;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_29 = V_8;
int32_t L_30 = V_2;
NullCheck(L_29);
L_29->___Position_0 = ((int64_t)L_30);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_31 = V_8;
bool L_32 = V_3;
NullCheck(L_31);
L_31->___ExpectedHasData_3 = L_32;
bool L_33 = V_3;
V_9 = L_33;
bool L_34 = V_9;
if (!L_34)
{
goto IL_0095_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_35 = V_8;
RuntimeObject* L_36 = V_0;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_36);
NullCheck(L_35);
L_35->___ExpectedValue_1 = L_37;
Il2CppCodeGenWriteBarrier((void**)(&L_35->___ExpectedValue_1), (void*)L_37);
}
IL_0095_1:
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_38 = V_8;
bool L_39 = V_4;
NullCheck(L_38);
L_38->___ActualHasData_4 = L_39;
bool L_40 = V_4;
V_10 = L_40;
bool L_41 = V_10;
if (!L_41)
{
goto IL_00b3_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_42 = V_8;
RuntimeObject* L_43 = V_1;
NullCheck(L_43);
RuntimeObject* L_44;
L_44 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_43);
NullCheck(L_42);
L_42->___ActualValue_2 = L_44;
Il2CppCodeGenWriteBarrier((void**)(&L_42->___ActualValue_2), (void*)L_44);
}
IL_00b3_1:
{
List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* L_45 = __this->___failurePoints_3;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_46 = V_8;
NullCheck(L_45);
List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD(L_45, 0, L_46, List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var);
V_6 = (bool)0;
goto IL_010a;
}
IL_00c7_1:
{
int32_t L_47 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_47, 1));
}
IL_00cc_1:
{
goto IL_001b_1;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_010a:
{
bool L_48 = V_6;
return L_48;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::StringsEqual(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_StringsEqual_m2CA67F0271EEFF95F3EB662CEA5EC47936EE17D2 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, String_t* ___x0, String_t* ___y1, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
String_t* G_B3_0 = NULL;
String_t* G_B6_0 = NULL;
{
bool L_0 = __this->___caseInsensitive_0;
if (L_0)
{
goto IL_000c;
}
}
{
String_t* L_1 = ___x0;
G_B3_0 = L_1;
goto IL_0012;
}
IL_000c:
{
String_t* L_2 = ___x0;
NullCheck(L_2);
String_t* L_3;
L_3 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_2, NULL);
G_B3_0 = L_3;
}
IL_0012:
{
V_0 = G_B3_0;
bool L_4 = __this->___caseInsensitive_0;
if (L_4)
{
goto IL_001e;
}
}
{
String_t* L_5 = ___y1;
G_B6_0 = L_5;
goto IL_0024;
}
IL_001e:
{
String_t* L_6 = ___y1;
NullCheck(L_6);
String_t* L_7;
L_7 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_6, NULL);
G_B6_0 = L_7;
}
IL_0024:
{
V_1 = G_B6_0;
String_t* L_8 = V_0;
String_t* L_9 = V_1;
NullCheck(L_8);
bool L_10;
L_10 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_8, L_9, NULL);
V_2 = L_10;
goto IL_002f;
}
IL_002f:
{
bool L_11 = V_2;
return L_11;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::CharsEqual(System.Char,System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_CharsEqual_mFA9C49BF88594AEC4FEB5AF1D909983A5F034CCC (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, Il2CppChar ___x0, Il2CppChar ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Il2CppChar V_0 = 0x0;
Il2CppChar V_1 = 0x0;
bool V_2 = false;
Il2CppChar G_B3_0 = 0x0;
Il2CppChar G_B6_0 = 0x0;
{
bool L_0 = __this->___caseInsensitive_0;
if (L_0)
{
goto IL_000c;
}
}
{
Il2CppChar L_1 = ___x0;
G_B3_0 = L_1;
goto IL_0012;
}
IL_000c:
{
Il2CppChar L_2 = ___x0;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
Il2CppChar L_3;
L_3 = Char_ToLower_m643675C4A50AD39A7BE3F5C3F40A1BFD547FF957(L_2, NULL);
G_B3_0 = L_3;
}
IL_0012:
{
V_0 = G_B3_0;
bool L_4 = __this->___caseInsensitive_0;
if (L_4)
{
goto IL_001e;
}
}
{
Il2CppChar L_5 = ___y1;
G_B6_0 = L_5;
goto IL_0024;
}
IL_001e:
{
Il2CppChar L_6 = ___y1;
il2cpp_codegen_runtime_class_init_inline(Char_t521A6F19B456D956AF452D926C32709DC03D6B17_il2cpp_TypeInfo_var);
Il2CppChar L_7;
L_7 = Char_ToLower_m643675C4A50AD39A7BE3F5C3F40A1BFD547FF957(L_6, NULL);
G_B6_0 = L_7;
}
IL_0024:
{
V_1 = G_B6_0;
Il2CppChar L_8 = V_0;
Il2CppChar L_9 = V_1;
V_2 = (bool)((((int32_t)L_8) == ((int32_t)L_9))? 1 : 0);
goto IL_002c;
}
IL_002c:
{
bool L_10 = V_2;
return L_10;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::EnumerablesEqual(System.Collections.IEnumerable,System.Collections.IEnumerable,NUnit.Framework.Constraints.Tolerance&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_EnumerablesEqual_mD3AD62E938427C5548187D26B464E87D71C6C86B (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, RuntimeObject* ___x0, RuntimeObject* ___y1, Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** ___tolerance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
bool V_7 = false;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* V_8 = NULL;
bool V_9 = false;
bool V_10 = false;
RuntimeObject* V_11 = NULL;
RuntimeObject* V_12 = NULL;
bool V_13 = false;
bool V_14 = false;
int32_t G_B5_0 = 0;
int32_t G_B10_0 = 0;
{
V_0 = (RuntimeObject*)NULL;
V_1 = (RuntimeObject*)NULL;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_00d1:
{// begin finally (depth: 1)
{
RuntimeObject* L_0 = V_0;
V_11 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = V_11;
V_13 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_2 = V_13;
if (!L_2)
{
goto IL_00ed;
}
}
{
RuntimeObject* L_3 = V_11;
NullCheck(L_3);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
}
IL_00ed:
{
RuntimeObject* L_4 = V_1;
V_12 = ((RuntimeObject*)IsInst((RuntimeObject*)L_4, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_5 = V_12;
V_14 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_5) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
bool L_6 = V_14;
if (!L_6)
{
goto IL_0108;
}
}
{
RuntimeObject* L_7 = V_12;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0108:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
RuntimeObject* L_8 = ___x0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_8);
V_0 = L_9;
RuntimeObject* L_10 = ___y1;
NullCheck(L_10);
RuntimeObject* L_11;
L_11 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_10);
V_1 = L_11;
V_2 = 0;
goto IL_00cc_1;
}
IL_001b_1:
{
RuntimeObject* L_12 = V_0;
NullCheck(L_12);
bool L_13;
L_13 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_12);
V_3 = L_13;
RuntimeObject* L_14 = V_1;
NullCheck(L_14);
bool L_15;
L_15 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_14);
V_4 = L_15;
bool L_16 = V_3;
if (L_16)
{
goto IL_0035_1;
}
}
{
bool L_17 = V_4;
G_B5_0 = ((((int32_t)L_17) == ((int32_t)0))? 1 : 0);
goto IL_0036_1;
}
IL_0035_1:
{
G_B5_0 = 0;
}
IL_0036_1:
{
V_5 = (bool)G_B5_0;
bool L_18 = V_5;
if (!L_18)
{
goto IL_0044_1;
}
}
{
V_6 = (bool)1;
goto IL_010a;
}
IL_0044_1:
{
bool L_19 = V_3;
bool L_20 = V_4;
if ((!(((uint32_t)L_19) == ((uint32_t)L_20))))
{
goto IL_0061_1;
}
}
{
RuntimeObject* L_21 = V_0;
NullCheck(L_21);
RuntimeObject* L_22;
L_22 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_21);
RuntimeObject* L_23 = V_1;
NullCheck(L_23);
RuntimeObject* L_24;
L_24 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_23);
Tolerance_t5399BA060C4044029E69DF0C29128B605A2FF10C** L_25 = ___tolerance2;
bool L_26;
L_26 = NUnitEqualityComparer_AreEqual_m150A75676C48F1030E21ED8C1FFB8F89FDF06ECC(__this, L_22, L_24, L_25, NULL);
G_B10_0 = ((((int32_t)L_26) == ((int32_t)0))? 1 : 0);
goto IL_0062_1;
}
IL_0061_1:
{
G_B10_0 = 1;
}
IL_0062_1:
{
V_7 = (bool)G_B10_0;
bool L_27 = V_7;
if (!L_27)
{
goto IL_00c7_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_28 = (FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*)il2cpp_codegen_object_new(FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var);
NullCheck(L_28);
FailurePoint__ctor_m74E65C9481D77AA3E124A07A1CB8B0D97CBF9E1B(L_28, NULL);
V_8 = L_28;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_29 = V_8;
int32_t L_30 = V_2;
NullCheck(L_29);
L_29->___Position_0 = ((int64_t)L_30);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_31 = V_8;
bool L_32 = V_3;
NullCheck(L_31);
L_31->___ExpectedHasData_3 = L_32;
bool L_33 = V_3;
V_9 = L_33;
bool L_34 = V_9;
if (!L_34)
{
goto IL_0095_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_35 = V_8;
RuntimeObject* L_36 = V_0;
NullCheck(L_36);
RuntimeObject* L_37;
L_37 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_36);
NullCheck(L_35);
L_35->___ExpectedValue_1 = L_37;
Il2CppCodeGenWriteBarrier((void**)(&L_35->___ExpectedValue_1), (void*)L_37);
}
IL_0095_1:
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_38 = V_8;
bool L_39 = V_4;
NullCheck(L_38);
L_38->___ActualHasData_4 = L_39;
bool L_40 = V_4;
V_10 = L_40;
bool L_41 = V_10;
if (!L_41)
{
goto IL_00b3_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_42 = V_8;
RuntimeObject* L_43 = V_1;
NullCheck(L_43);
RuntimeObject* L_44;
L_44 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_43);
NullCheck(L_42);
L_42->___ActualValue_2 = L_44;
Il2CppCodeGenWriteBarrier((void**)(&L_42->___ActualValue_2), (void*)L_44);
}
IL_00b3_1:
{
List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* L_45 = __this->___failurePoints_3;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_46 = V_8;
NullCheck(L_45);
List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD(L_45, 0, L_46, List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var);
V_6 = (bool)0;
goto IL_010a;
}
IL_00c7_1:
{
int32_t L_47 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_47, 1));
}
IL_00cc_1:
{
goto IL_001b_1;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_010a:
{
bool L_48 = V_6;
return L_48;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::DirectoriesEqual(System.IO.DirectoryInfo,System.IO.DirectoryInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_DirectoriesEqual_mA6213226D19C29A59A073F32ADC889AC47AD8991 (DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___x0, DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_0 = ___x0;
NullCheck(L_0);
int32_t L_1;
L_1 = FileSystemInfo_get_Attributes_m38971A5B147214C5EE193CE9F60628EA834EF6DA(L_0, NULL);
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_2 = ___y1;
NullCheck(L_2);
int32_t L_3;
L_3 = FileSystemInfo_get_Attributes_m38971A5B147214C5EE193CE9F60628EA834EF6DA(L_2, NULL);
if ((!(((uint32_t)L_1) == ((uint32_t)L_3))))
{
goto IL_0035;
}
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_4 = ___x0;
NullCheck(L_4);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5;
L_5 = FileSystemInfo_get_CreationTime_mA78EF1799DC6825E70182125DD20BC6B37A850F4(L_4, NULL);
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_6 = ___y1;
NullCheck(L_6);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_7;
L_7 = FileSystemInfo_get_CreationTime_mA78EF1799DC6825E70182125DD20BC6B37A850F4(L_6, NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
bool L_8;
L_8 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_5, L_7, NULL);
if (L_8)
{
goto IL_0035;
}
}
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_9 = ___x0;
NullCheck(L_9);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_10;
L_10 = FileSystemInfo_get_LastAccessTime_mA514BB980D71BA1902E31F016578212754AF193D(L_9, NULL);
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_11 = ___y1;
NullCheck(L_11);
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_12;
L_12 = FileSystemInfo_get_LastAccessTime_mA514BB980D71BA1902E31F016578212754AF193D(L_11, NULL);
il2cpp_codegen_runtime_class_init_inline(DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_il2cpp_TypeInfo_var);
bool L_13;
L_13 = DateTime_op_Inequality_mC39C15A648628974D533B4E2D4EDBD091EA3E1B7(L_10, L_12, NULL);
G_B4_0 = ((int32_t)(L_13));
goto IL_0036;
}
IL_0035:
{
G_B4_0 = 1;
}
IL_0036:
{
V_0 = (bool)G_B4_0;
bool L_14 = V_0;
if (!L_14)
{
goto IL_003f;
}
}
{
V_1 = (bool)0;
goto IL_005d;
}
IL_003f:
{
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_15 = ___x0;
NullCheck(L_15);
String_t* L_16;
L_16 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.IO.FileSystemInfo::get_FullName() */, L_15);
SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* L_17 = (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3*)il2cpp_codegen_object_new(SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3_il2cpp_TypeInfo_var);
NullCheck(L_17);
SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985(L_17, L_16, NULL);
DirectoryInfo_tEAEEC018EB49B4A71907FFEAFE935FAA8F9C1FE2* L_18 = ___y1;
NullCheck(L_18);
String_t* L_19;
L_19 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.IO.FileSystemInfo::get_FullName() */, L_18);
NullCheck(L_17);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_20;
L_20 = VirtualFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(16 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.Constraint::ApplyTo(System.Object) */, L_17, L_19);
NullCheck(L_20);
bool L_21;
L_21 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_20);
V_1 = L_21;
goto IL_005d;
}
IL_005d:
{
bool L_22 = V_1;
return L_22;
}
}
// System.Boolean NUnit.Framework.Constraints.NUnitEqualityComparer::StreamsEqual(System.IO.Stream,System.IO.Stream)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___x0, Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___y1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* V_2 = NULL;
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* V_3 = NULL;
int64_t V_4 = 0;
int64_t V_5 = 0;
bool V_6 = false;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
int64_t V_13 = 0;
int32_t V_14 = 0;
bool V_15 = false;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* V_16 = NULL;
bool V_17 = false;
bool V_18 = false;
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_0 = ___x0;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_1 = ___y1;
V_6 = (bool)((((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_0) == ((RuntimeObject*)(Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE*)L_1))? 1 : 0);
bool L_2 = V_6;
if (!L_2)
{
goto IL_0013;
}
}
{
V_7 = (bool)1;
goto IL_01ee;
}
IL_0013:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_3 = ___x0;
NullCheck(L_3);
bool L_4;
L_4 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_3);
V_8 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
bool L_5 = V_8;
if (!L_5)
{
goto IL_0032;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_6);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDEDCF37206A03E4CE4438C517B164F328C678509)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB339D905726376F3A334344838DECFB8AD39826C)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B_RuntimeMethod_var)));
}
IL_0032:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_7 = ___y1;
NullCheck(L_7);
bool L_8;
L_8 = VirtualFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_7);
V_9 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
bool L_9 = V_9;
if (!L_9)
{
goto IL_0051;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_10 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_10);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_10, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDEDCF37206A03E4CE4438C517B164F328C678509)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B_RuntimeMethod_var)));
}
IL_0051:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_11 = ___x0;
NullCheck(L_11);
bool L_12;
L_12 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_11);
V_10 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
bool L_13 = V_10;
if (!L_13)
{
goto IL_0070;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_14);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84F05EF3D32F6C094DA89EA10A37B802F4B9D906)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB339D905726376F3A334344838DECFB8AD39826C)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B_RuntimeMethod_var)));
}
IL_0070:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_15 = ___y1;
NullCheck(L_15);
bool L_16;
L_16 = VirtualFuncInvoker0< bool >::Invoke(8 /* System.Boolean System.IO.Stream::get_CanSeek() */, L_15);
V_11 = (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
bool L_17 = V_11;
if (!L_17)
{
goto IL_008f;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_18 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_18);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral84F05EF3D32F6C094DA89EA10A37B802F4B9D906)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NUnitEqualityComparer_StreamsEqual_mCA1B2E77EF56EC8AA6AAD26F15640E8284BB589B_RuntimeMethod_var)));
}
IL_008f:
{
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_19 = ___x0;
NullCheck(L_19);
int64_t L_20;
L_20 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_19);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_21 = ___y1;
NullCheck(L_21);
int64_t L_22;
L_22 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_21);
V_12 = (bool)((((int32_t)((((int64_t)L_20) == ((int64_t)L_22))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_23 = V_12;
if (!L_23)
{
goto IL_00ae;
}
}
{
V_7 = (bool)0;
goto IL_01ee;
}
IL_00ae:
{
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
int32_t L_24 = ((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_25 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_24);
V_0 = L_25;
int32_t L_26 = ((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)L_26);
V_1 = L_27;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_28 = ___x0;
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_29 = (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158*)il2cpp_codegen_object_new(BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
NullCheck(L_29);
BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F(L_29, L_28, NULL);
V_2 = L_29;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_30 = ___y1;
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_31 = (BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158*)il2cpp_codegen_object_new(BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158_il2cpp_TypeInfo_var);
NullCheck(L_31);
BinaryReader__ctor_m898732FE0DBEDD480B24F6DE45A9AC696E44CC0F(L_31, L_30, NULL);
V_3 = L_31;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_32 = ___x0;
NullCheck(L_32);
int64_t L_33;
L_33 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_32);
V_4 = L_33;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_34 = ___y1;
NullCheck(L_34);
int64_t L_35;
L_35 = VirtualFuncInvoker0< int64_t >::Invoke(12 /* System.Int64 System.IO.Stream::get_Position() */, L_34);
V_5 = L_35;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_01d4:
{// begin finally (depth: 1)
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_36 = ___x0;
int64_t L_37 = V_4;
NullCheck(L_36);
VirtualActionInvoker1< int64_t >::Invoke(13 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_36, L_37);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_38 = ___y1;
int64_t L_39 = V_5;
NullCheck(L_38);
VirtualActionInvoker1< int64_t >::Invoke(13 /* System.Void System.IO.Stream::set_Position(System.Int64) */, L_38, L_39);
return;
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_40 = V_2;
NullCheck(L_40);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_41;
L_41 = VirtualFuncInvoker0< Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_40);
NullCheck(L_41);
int64_t L_42;
L_42 = VirtualFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(30 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_41, ((int64_t)0), 0);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_43 = V_3;
NullCheck(L_43);
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_44;
L_44 = VirtualFuncInvoker0< Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* >::Invoke(5 /* System.IO.Stream System.IO.BinaryReader::get_BaseStream() */, L_43);
NullCheck(L_44);
int64_t L_45;
L_45 = VirtualFuncInvoker2< int64_t, int64_t, int32_t >::Invoke(30 /* System.Int64 System.IO.Stream::Seek(System.Int64,System.IO.SeekOrigin) */, L_44, ((int64_t)0), 0);
V_13 = ((int64_t)0);
goto IL_01be_1;
}
IL_010a_1:
{
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_46 = V_2;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_47 = V_0;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
int32_t L_48 = ((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4;
NullCheck(L_46);
int32_t L_49;
L_49 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(24 /* System.Int32 System.IO.BinaryReader::Read(System.Byte[],System.Int32,System.Int32) */, L_46, L_47, 0, L_48);
BinaryReader_t9A6D85F0FE9AE4EBB5E8D66997DFD1D84939E158* L_50 = V_3;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_51 = V_1;
int32_t L_52 = ((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4;
NullCheck(L_50);
int32_t L_53;
L_53 = VirtualFuncInvoker3< int32_t, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(24 /* System.Int32 System.IO.BinaryReader::Read(System.Byte[],System.Int32,System.Int32) */, L_50, L_51, 0, L_52);
V_14 = 0;
goto IL_01a0_1;
}
IL_012c_1:
{
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_54 = V_0;
int32_t L_55 = V_14;
NullCheck(L_54);
int32_t L_56 = L_55;
uint8_t L_57 = (L_54)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_58 = V_1;
int32_t L_59 = V_14;
NullCheck(L_58);
int32_t L_60 = L_59;
uint8_t L_61 = (L_58)->GetAt(static_cast<il2cpp_array_size_t>(L_60));
V_15 = (bool)((((int32_t)((((int32_t)L_57) == ((int32_t)L_61))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_62 = V_15;
if (!L_62)
{
goto IL_0199_1;
}
}
{
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_63 = (FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1*)il2cpp_codegen_object_new(FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1_il2cpp_TypeInfo_var);
NullCheck(L_63);
FailurePoint__ctor_m74E65C9481D77AA3E124A07A1CB8B0D97CBF9E1B(L_63, NULL);
V_16 = L_63;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_64 = V_16;
int64_t L_65 = V_13;
int32_t L_66 = V_14;
NullCheck(L_64);
L_64->___Position_0 = ((int64_t)il2cpp_codegen_add(L_65, ((int64_t)L_66)));
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_67 = V_16;
NullCheck(L_67);
L_67->___ExpectedHasData_3 = (bool)1;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_68 = V_16;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_69 = V_0;
int32_t L_70 = V_14;
NullCheck(L_69);
int32_t L_71 = L_70;
uint8_t L_72 = (L_69)->GetAt(static_cast<il2cpp_array_size_t>(L_71));
uint8_t L_73 = L_72;
RuntimeObject* L_74 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_73);
NullCheck(L_68);
L_68->___ExpectedValue_1 = L_74;
Il2CppCodeGenWriteBarrier((void**)(&L_68->___ExpectedValue_1), (void*)L_74);
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_75 = V_16;
NullCheck(L_75);
L_75->___ActualHasData_4 = (bool)1;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_76 = V_16;
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_77 = V_1;
int32_t L_78 = V_14;
NullCheck(L_77);
int32_t L_79 = L_78;
uint8_t L_80 = (L_77)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
uint8_t L_81 = L_80;
RuntimeObject* L_82 = Box(Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_il2cpp_TypeInfo_var, &L_81);
NullCheck(L_76);
L_76->___ActualValue_2 = L_82;
Il2CppCodeGenWriteBarrier((void**)(&L_76->___ActualValue_2), (void*)L_82);
List_1_t8A0FF314780F24F7654319D0D4398052F9C4D0B2* L_83 = __this->___failurePoints_3;
FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* L_84 = V_16;
NullCheck(L_83);
List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD(L_83, 0, L_84, List_1_Insert_mFF8F8165B9BA717B6329036F7A4D18A0FAB146FD_RuntimeMethod_var);
V_7 = (bool)0;
goto IL_01ee;
}
IL_0199_1:
{
int32_t L_85 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add(L_85, 1));
}
IL_01a0_1:
{
int32_t L_86 = V_14;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
int32_t L_87 = ((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4;
V_17 = (bool)((((int32_t)L_86) < ((int32_t)L_87))? 1 : 0);
bool L_88 = V_17;
if (L_88)
{
goto IL_012c_1;
}
}
{
int64_t L_89 = V_13;
il2cpp_codegen_runtime_class_init_inline(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
int32_t L_90 = ((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4;
V_13 = ((int64_t)il2cpp_codegen_add(L_89, ((int64_t)L_90)));
}
IL_01be_1:
{
int64_t L_91 = V_13;
Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* L_92 = ___x0;
NullCheck(L_92);
int64_t L_93;
L_93 = VirtualFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Length() */, L_92);
V_18 = (bool)((((int64_t)L_91) < ((int64_t)L_93))? 1 : 0);
bool L_94 = V_18;
if (L_94)
{
goto IL_010a_1;
}
}
{
goto IL_01e9;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_01e9:
{
V_7 = (bool)1;
goto IL_01ee;
}
IL_01ee:
{
bool L_95 = V_7;
return L_95;
}
}
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer__ctor_m1E29B6EEFCB7D99BB00E2EBA8E9B163C59B594B3 (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA59BB9747605BD5A01B294B5C36E2C8FA628B757_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0* L_0 = (List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0*)il2cpp_codegen_object_new(List_1_tC702584556C2095B1910B0463E3AC5EB3934E6B0_il2cpp_TypeInfo_var);
NullCheck(L_0);
List_1__ctor_mA59BB9747605BD5A01B294B5C36E2C8FA628B757(L_0, List_1__ctor_mA59BB9747605BD5A01B294B5C36E2C8FA628B757_RuntimeMethod_var);
__this->___externalComparers_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___externalComparers_2), (void*)L_0);
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NUnitEqualityComparer__cctor_m050A390E5156EEE61977AEA2DBD74E34FF91FFDA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer__cctor_m050A390E5156EEE61977AEA2DBD74E34FF91FFDA_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCCA28E049F7E6BAF5A9EBCD862D875431CD944EB);
s_Il2CppMethodInitialized = true;
}
{
((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___BUFFER_SIZE_4 = ((int32_t)4096);
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
Type_t* L_0;
L_0 = il2cpp_codegen_get_type(_stringLiteralCCA28E049F7E6BAF5A9EBCD862D875431CD944EB, Type_GetType_m80C621C4D91A89DDEE6D3DDF343925B30F99BC45_RuntimeMethod_var, NUnitEqualityComparer__cctor_m050A390E5156EEE61977AEA2DBD74E34FF91FFDA_RuntimeMethod_var);
((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___GameObjectType_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_StaticFields*)il2cpp_codegen_static_fields_for(NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746_il2cpp_TypeInfo_var))->___GameObjectType_6), (void*)L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.NUnitEqualityComparer/FailurePoint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FailurePoint__ctor_m74E65C9481D77AA3E124A07A1CB8B0D97CBF9E1B (FailurePoint_t5EC8E94B38192C8BBBFC4F056E823D97008633D1* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AndOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndOperator__ctor_m5B7DFD6B2B3E2CACC2B7CFE8B6CDE53C8F88E312 (AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
BinaryOperator__ctor_m125FC5D98AD32F411F5D2E6D2A40DF3D121F8607(__this, NULL);
int32_t L_0 = 2;
V_0 = L_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = L_0;
int32_t L_1 = V_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = L_1;
return;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.AndOperator::ApplyOperator(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* AndOperator_ApplyOperator_mE89F4A2467E259E7C30B0FC1AE31E3C9D46EFCCA (AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___left0;
RuntimeObject* L_1 = ___right1;
AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C* L_2 = (AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C*)il2cpp_codegen_object_new(AndConstraint_t1E4DA87E0DB0793B88BBDD078178EA39A388B83C_il2cpp_TypeInfo_var);
NullCheck(L_2);
AndConstraint__ctor_m8F7D63F6B6CDED1C979E60A87A796F10BC663A91(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_000b;
}
IL_000b:
{
RuntimeObject* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.AttributeOperator::.ctor(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeOperator__ctor_mC68998E8278AB6C49DE355A1A6812A12A616C6FE (AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA* __this, Type_t* ___type0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SelfResolvingOperator__ctor_mB2FE9B663736D1A29BC270543458874476578926(__this, NULL);
Type_t* L_0 = ___type0;
__this->___type_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___type_4), (void*)L_0);
int32_t L_1 = 1;
V_0 = L_1;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = L_1;
int32_t L_2 = V_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.Constraints.AttributeOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AttributeOperator_Reduce_mA1D4ABEF7602A01BFA5500301D689EE33C05CF7D (AttributeOperator_tFF15EB215EB49C761DE2D25E7CAA8151315D74AA* __this, ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* ___stack0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0;
L_0 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
if (!L_0)
{
goto IL_0019;
}
}
{
RuntimeObject* L_1;
L_1 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
G_B3_0 = ((!(((RuntimeObject*)(BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4*)((BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4*)IsInstClass((RuntimeObject*)L_1, BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_001a;
}
IL_0019:
{
G_B3_0 = 1;
}
IL_001a:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0032;
}
}
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_3 = ___stack0;
Type_t* L_4 = __this->___type_4;
AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0* L_5 = (AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0*)il2cpp_codegen_object_new(AttributeExistsConstraint_t747C6894042C920ED92B2FD6944BECEC7DD532E0_il2cpp_TypeInfo_var);
NullCheck(L_5);
AttributeExistsConstraint__ctor_mF00CA21E7FB17774D6073E68B286563240D7C31D(L_5, L_4, NULL);
NullCheck(L_3);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_3, L_5, NULL);
goto IL_004a;
}
IL_0032:
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_6 = ___stack0;
Type_t* L_7 = __this->___type_4;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_8 = ___stack0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_8, NULL);
AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9* L_10 = (AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9*)il2cpp_codegen_object_new(AttributeConstraint_t3548430B17853C4C990E77333E2CE5B03E8568E9_il2cpp_TypeInfo_var);
NullCheck(L_10);
AttributeConstraint__ctor_mD7EC35DA07C505F9FDF44DB414EEF462FB905BBC(L_10, L_7, L_9, NULL);
NullCheck(L_6);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_6, L_10, NULL);
}
IL_004a:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.BinaryOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryOperator_Reduce_m3C1F8B66E19B49D8A2433CF9EF789374A67F312D (BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4* __this, ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* ___stack0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_0 = ___stack0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_0, NULL);
V_0 = L_1;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_2 = ___stack0;
NullCheck(L_2);
RuntimeObject* L_3;
L_3 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_2, NULL);
V_1 = L_3;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_4 = ___stack0;
RuntimeObject* L_5 = V_1;
RuntimeObject* L_6 = V_0;
RuntimeObject* L_7;
L_7 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, RuntimeObject* >::Invoke(7 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.BinaryOperator::ApplyOperator(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint) */, __this, L_5, L_6);
NullCheck(L_4);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_4, L_7, NULL);
return;
}
}
// System.Int32 NUnit.Framework.Constraints.BinaryOperator::get_LeftPrecedence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryOperator_get_LeftPrecedence_m6AF5E5E1191CE814789DCA6CFF72F7F113E73703 (BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0;
L_0 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
if (((CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E*)IsInstClass((RuntimeObject*)L_0, CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
int32_t L_1;
L_1 = ConstraintOperator_get_LeftPrecedence_mF4981116B78BE7232DCF95DE1B4261ABB1738273(__this, NULL);
G_B3_0 = L_1;
goto IL_001f;
}
IL_0016:
{
int32_t L_2;
L_2 = ConstraintOperator_get_LeftPrecedence_mF4981116B78BE7232DCF95DE1B4261ABB1738273(__this, NULL);
G_B3_0 = ((int32_t)il2cpp_codegen_add(L_2, ((int32_t)10)));
}
IL_001f:
{
V_0 = G_B3_0;
goto IL_0022;
}
IL_0022:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 NUnit.Framework.Constraints.BinaryOperator::get_RightPrecedence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryOperator_get_RightPrecedence_mDD813FD3C80408EA683697FC99118D1178F6FB74 (BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0;
L_0 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
if (((CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E*)IsInstClass((RuntimeObject*)L_0, CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E_il2cpp_TypeInfo_var)))
{
goto IL_0016;
}
}
{
int32_t L_1;
L_1 = ConstraintOperator_get_RightPrecedence_mFDB9F744E8761D2FF1194EB86E9DBD6000436255(__this, NULL);
G_B3_0 = L_1;
goto IL_001f;
}
IL_0016:
{
int32_t L_2;
L_2 = ConstraintOperator_get_RightPrecedence_mFDB9F744E8761D2FF1194EB86E9DBD6000436255(__this, NULL);
G_B3_0 = ((int32_t)il2cpp_codegen_add(L_2, ((int32_t)10)));
}
IL_001f:
{
V_0 = G_B3_0;
goto IL_0022;
}
IL_0022:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Void NUnit.Framework.Constraints.BinaryOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BinaryOperator__ctor_m125FC5D98AD32F411F5D2E6D2A40DF3D121F8607 (BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4* __this, const RuntimeMethod* method)
{
{
ConstraintOperator__ctor_mA29583514623715B03066977E3263B45E3825B66(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.CollectionOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CollectionOperator__ctor_m71C252AF8ACAAD5E9BB659F4B801FA7891FC70B6 (CollectionOperator_t982E0D7B3F4AC4F852232076BF360EBC0D46780E* __this, const RuntimeMethod* method)
{
{
PrefixOperator__ctor_m8E85321266A978C148BAAE256D4E2E960D75562D(__this, NULL);
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = 1;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = ((int32_t)10);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object NUnit.Framework.Constraints.ConstraintOperator::get_LeftContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintOperator_get_LeftContext_mDB110A18F4B10B2F5774DF5299119263480C5708 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = __this->___leftContext_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintOperator::set_LeftContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintOperator_set_LeftContext_m1C80FAF18DD613F5EB0DB47BC3F1C50E878BD8D9 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___leftContext_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___leftContext_0), (void*)L_0);
return;
}
}
// System.Object NUnit.Framework.Constraints.ConstraintOperator::get_RightContext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = __this->___rightContext_1;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintOperator::set_RightContext(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintOperator_set_RightContext_m228AF815B16151EF8C21233DAF59B762C3EAB812 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___rightContext_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___rightContext_1), (void*)L_0);
return;
}
}
// System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_LeftPrecedence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConstraintOperator_get_LeftPrecedence_mF4981116B78BE7232DCF95DE1B4261ABB1738273 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___left_precedence_2;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 NUnit.Framework.Constraints.ConstraintOperator::get_RightPrecedence()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConstraintOperator_get_RightPrecedence_mFDB9F744E8761D2FF1194EB86E9DBD6000436255 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->___right_precedence_3;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Constraints.ConstraintOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConstraintOperator__ctor_mA29583514623715B03066977E3263B45E3825B66 (ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02* __this, const RuntimeMethod* method)
{
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.NotOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotOperator__ctor_m6980C91768CB5EE95C316E6A3DE4B262A7515022 (NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
PrefixOperator__ctor_m8E85321266A978C148BAAE256D4E2E960D75562D(__this, NULL);
int32_t L_0 = 1;
V_0 = L_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = L_0;
int32_t L_1 = V_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = L_1;
return;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.NotOperator::ApplyPrefix(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NotOperator_ApplyPrefix_mFED1216940E5809F4F26A510C1017C802D81E05A (NotOperator_t61954C29B9A249AE9FC05F83E7C6C901C70DFCF0* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79* L_1 = (NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79*)il2cpp_codegen_object_new(NotConstraint_t85FC2F182A4BA9C1FADB6D157D6B80B1CDB9AD79_il2cpp_TypeInfo_var);
NullCheck(L_1);
NotConstraint__ctor_m3E1463ABC04A2290CFD141B2512018EA59CE987C(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.OrOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrOperator__ctor_m970F375DFA2B6C2344A5FDDF071E52C41CDDD24F (OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B* __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
BinaryOperator__ctor_m125FC5D98AD32F411F5D2E6D2A40DF3D121F8607(__this, NULL);
int32_t L_0 = 3;
V_0 = L_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = L_0;
int32_t L_1 = V_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = L_1;
return;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.OrOperator::ApplyOperator(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrOperator_ApplyOperator_m6AE750989F6F396A907D97247B12E7328C0032F1 (OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___left0;
RuntimeObject* L_1 = ___right1;
OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D* L_2 = (OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D*)il2cpp_codegen_object_new(OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D_il2cpp_TypeInfo_var);
NullCheck(L_2);
OrConstraint__ctor_m9F1EBB58248F30BF76A1022CEDBE0551A7C59F8F(L_2, L_0, L_1, NULL);
V_0 = L_2;
goto IL_000b;
}
IL_000b:
{
RuntimeObject* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.PrefixOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixOperator_Reduce_mA11B602BCE21CCE688C6C90B617F751FC5D2637F (PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213* __this, ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* ___stack0, const RuntimeMethod* method)
{
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_0 = ___stack0;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_1 = ___stack0;
NullCheck(L_1);
RuntimeObject* L_2;
L_2 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_1, NULL);
RuntimeObject* L_3;
L_3 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(7 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.PrefixOperator::ApplyPrefix(NUnit.Framework.Constraints.IConstraint) */, __this, L_2);
NullCheck(L_0);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_0, L_3, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.PrefixOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixOperator__ctor_m8E85321266A978C148BAAE256D4E2E960D75562D (PrefixOperator_tA39E25220666353E1E7DA575054043569DF24213* __this, const RuntimeMethod* method)
{
{
ConstraintOperator__ctor_mA29583514623715B03066977E3263B45E3825B66(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.PropOperator::get_Name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropOperator_get_Name_m9FA10D4615309EB8D236FE70224300E305CA27CD (PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___name_4;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Void NUnit.Framework.Constraints.PropOperator::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropOperator__ctor_m89B8508B2FF861C3C678796EFFBACBFB0D78A77B (PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B* __this, String_t* ___name0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
SelfResolvingOperator__ctor_mB2FE9B663736D1A29BC270543458874476578926(__this, NULL);
String_t* L_0 = ___name0;
__this->___name_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_4), (void*)L_0);
int32_t L_1 = 1;
V_0 = L_1;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = L_1;
int32_t L_2 = V_0;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = L_2;
return;
}
}
// System.Void NUnit.Framework.Constraints.PropOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropOperator_Reduce_m6E8E53C537E30B226401AFD3C9D6B0624076EADE (PropOperator_t31ABA19B00DB8A6D3207DD7E5B4D0BC69692806B* __this, ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* ___stack0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0;
L_0 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
if (!L_0)
{
goto IL_0019;
}
}
{
RuntimeObject* L_1;
L_1 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
G_B3_0 = ((!(((RuntimeObject*)(BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4*)((BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4*)IsInstClass((RuntimeObject*)L_1, BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_001a;
}
IL_0019:
{
G_B3_0 = 1;
}
IL_001a:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0032;
}
}
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_3 = ___stack0;
String_t* L_4 = __this->___name_4;
PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60* L_5 = (PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60*)il2cpp_codegen_object_new(PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60_il2cpp_TypeInfo_var);
NullCheck(L_5);
PropertyExistsConstraint__ctor_m1CA761B0B5B71D04A98AA0244C86AF29521C3B7F(L_5, L_4, NULL);
NullCheck(L_3);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_3, L_5, NULL);
goto IL_004a;
}
IL_0032:
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_6 = ___stack0;
String_t* L_7 = __this->___name_4;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_8 = ___stack0;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_8, NULL);
PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57* L_10 = (PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57*)il2cpp_codegen_object_new(PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57_il2cpp_TypeInfo_var);
NullCheck(L_10);
PropertyConstraint__ctor_mEE1AE0D4F6570AA85C9455D9EB1E6D40DB648C4C(L_10, L_7, L_9, NULL);
NullCheck(L_6);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_6, L_10, NULL);
}
IL_004a:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.SelfResolvingOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SelfResolvingOperator__ctor_mB2FE9B663736D1A29BC270543458874476578926 (SelfResolvingOperator_t22226963C67814036CB6BACE7B2CE0F823F62D88* __this, const RuntimeMethod* method)
{
{
ConstraintOperator__ctor_mA29583514623715B03066977E3263B45E3825B66(__this, NULL);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ThrowsOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsOperator__ctor_m3B665B24104698576AAA7F83FE2FB7D85F10AB41 (ThrowsOperator_t801DD32B57E15D034CEBD381C73B3DCF7B2262F0* __this, const RuntimeMethod* method)
{
{
SelfResolvingOperator__ctor_mB2FE9B663736D1A29BC270543458874476578926(__this, NULL);
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = 1;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = ((int32_t)100);
return;
}
}
// System.Void NUnit.Framework.Constraints.ThrowsOperator::Reduce(NUnit.Framework.Constraints.ConstraintBuilder/ConstraintStack)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowsOperator_Reduce_m481A2962EA900675339718B08C70B0A7851C48A0 (ThrowsOperator_t801DD32B57E15D034CEBD381C73B3DCF7B2262F0* __this, ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* ___stack0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0;
L_0 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
if (!L_0)
{
goto IL_0019;
}
}
{
RuntimeObject* L_1;
L_1 = ConstraintOperator_get_RightContext_m462A33B82053E8BA30210ACEC17DF1504D8A604D(__this, NULL);
G_B3_0 = ((!(((RuntimeObject*)(BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4*)((BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4*)IsInstClass((RuntimeObject*)L_1, BinaryOperator_tE4A2D0990799D75B854605362BFDC864C4208DE4_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
goto IL_001a;
}
IL_0019:
{
G_B3_0 = 1;
}
IL_001a:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002c;
}
}
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_3 = ___stack0;
ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1* L_4 = (ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1*)il2cpp_codegen_object_new(ThrowsExceptionConstraint_t5C8CCD7A92D8D528B3935BC071323F62804125B1_il2cpp_TypeInfo_var);
NullCheck(L_4);
ThrowsExceptionConstraint__ctor_m8AAAE0E81FA64C60260D4DE9D91AF11DE02C2832(L_4, NULL);
NullCheck(L_3);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_3, L_4, NULL);
goto IL_003e;
}
IL_002c:
{
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_5 = ___stack0;
ConstraintStack_t6864D1B8BF12F3FF06696A50756CCA5DEBB74970* L_6 = ___stack0;
NullCheck(L_6);
RuntimeObject* L_7;
L_7 = ConstraintStack_Pop_m87D0B62A66B8FC577BFCFD55A068755FA83B354F(L_6, NULL);
ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374* L_8 = (ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374*)il2cpp_codegen_object_new(ThrowsConstraint_t48831FC87B782B37459BC28D0A0095F023C0A374_il2cpp_TypeInfo_var);
NullCheck(L_8);
ThrowsConstraint__ctor_mA7B2A0D0263F18CC0ADABBA776F614B4D7188DB4(L_8, L_7, NULL);
NullCheck(L_5);
ConstraintStack_Push_m87C9719EC8D4732B581AE7B5B40ADE82352EF9FA(L_5, L_8, NULL);
}
IL_003e:
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.WithOperator::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WithOperator__ctor_m130FFC6BB99A088B1E4C28A5DA0B49F6119B9438 (WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E* __this, const RuntimeMethod* method)
{
{
PrefixOperator__ctor_m8E85321266A978C148BAAE256D4E2E960D75562D(__this, NULL);
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___left_precedence_2 = 1;
((ConstraintOperator_t0D1218804741E02D36C00C31F1E6B733224A6C02*)__this)->___right_precedence_3 = 4;
return;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.WithOperator::ApplyPrefix(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* WithOperator_ApplyPrefix_mF7529622195E677A1609C0CB5C7BBD2D330D7011 (WithOperator_t7F5F97D933C1818566B0192F3418A1B2B925822E* __this, RuntimeObject* ___constraint0, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = ___constraint0;
V_0 = L_0;
goto IL_0005;
}
IL_0005:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.OrConstraint::.ctor(NUnit.Framework.Constraints.IConstraint,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OrConstraint__ctor_m9F1EBB58248F30BF76A1022CEDBE0551A7C59F8F (OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D* __this, RuntimeObject* ___left0, RuntimeObject* ___right1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___left0;
RuntimeObject* L_1 = ___right1;
BinaryConstraint__ctor_m7CF3098D259E649C7CA3A956D43B2EBB10C38FAA(__this, L_0, L_1, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.OrConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OrConstraint_get_Description_m11109AF710AC849865C5AB5100B6D509686FD518 (OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE885205DA2ED2F044021264F91527DF50C05E68);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Left_4;
NullCheck(L_0);
String_t* L_1;
L_1 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0);
RuntimeObject* L_2 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Right_5;
NullCheck(L_2);
String_t* L_3;
L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_2);
String_t* L_4;
L_4 = String_Concat_m9B13B47FCB3DF61144D9647DDA05F527377251B0(L_1, _stringLiteralFE885205DA2ED2F044021264F91527DF50C05E68, L_3, NULL);
V_0 = L_4;
goto IL_0024;
}
IL_0024:
{
String_t* L_5 = V_0;
return L_5;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.OrConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* OrConstraint_ApplyTo_mA0DEAE32C55A5CDF7F1DB448D3A643F809037C56 (OrConstraint_t4C32D29D76ED9DDDF13B8C5B57EF36ACA26A4B5D* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Left_4;
RuntimeObject* L_1 = ___actual0;
NullCheck(L_0);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_2;
L_2 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_0, L_1);
NullCheck(L_2);
bool L_3;
L_3 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_2);
if (L_3)
{
goto IL_0027;
}
}
{
RuntimeObject* L_4 = ((BinaryConstraint_t34DDC58E4932506D90BD5232E40B73753AA7EB04*)__this)->___Right_5;
RuntimeObject* L_5 = ___actual0;
NullCheck(L_4);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_6;
L_6 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_4, L_5);
NullCheck(L_6);
bool L_7;
L_7 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_6);
G_B3_0 = ((int32_t)(L_7));
goto IL_0028;
}
IL_0027:
{
G_B3_0 = 1;
}
IL_0028:
{
V_0 = (bool)G_B3_0;
RuntimeObject* L_8 = ___actual0;
bool L_9 = V_0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_10 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_10);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_10, __this, L_8, L_9, NULL);
V_1 = L_10;
goto IL_0034;
}
IL_0034:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_11 = V_1;
return L_11;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.PathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathConstraint__ctor_m6242998BDF8309B40C0B4D4E6D43E9A5A78FFFF8 (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
StringConstraint__ctor_mBF764F38023531DF1A50A499825A325CEE869536(__this, L_0, NULL);
String_t* L_1 = ___expected0;
((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4), (void*)L_1);
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_2 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5 = (bool)((((int32_t)L_2) == ((int32_t)((int32_t)92)))? 1 : 0);
return;
}
}
// NUnit.Framework.Constraints.PathConstraint NUnit.Framework.Constraints.PathConstraint::get_RespectCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* PathConstraint_get_RespectCase_m607B5667D698AB97C0DF97013898AFBF19E43816 (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, const RuntimeMethod* method)
{
PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* V_0 = NULL;
{
((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5 = (bool)0;
V_0 = __this;
goto IL_000c;
}
IL_000c:
{
PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* L_0 = V_0;
return L_0;
}
}
// System.String NUnit.Framework.Constraints.PathConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PathConstraint_GetStringRepresentation_m6BCA96CD4AF19E1210FBC0A0678EFB4AE8E3F042 (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral705B2FB975EB4F1AB7CC1FD4400BA6F59449BFD3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral737BEB9BE9CEFC63A888D759629AC77296E6B129);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CA515047CD74299658D5F44D61290D4C47B2248);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B2_1 = NULL;
String_t* G_B2_2 = NULL;
String_t* G_B1_0 = NULL;
String_t* G_B1_1 = NULL;
String_t* G_B1_2 = NULL;
String_t* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B3_2 = NULL;
String_t* G_B3_3 = NULL;
{
String_t* L_0;
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(13 /* System.String NUnit.Framework.Constraints.Constraint::get_DisplayName() */, __this);
NullCheck(L_0);
String_t* L_1;
L_1 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_0, NULL);
String_t* L_2 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
bool L_3 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
G_B1_0 = L_2;
G_B1_1 = L_1;
G_B1_2 = _stringLiteral7CA515047CD74299658D5F44D61290D4C47B2248;
if (L_3)
{
G_B2_0 = L_2;
G_B2_1 = L_1;
G_B2_2 = _stringLiteral7CA515047CD74299658D5F44D61290D4C47B2248;
goto IL_0026;
}
}
{
G_B3_0 = _stringLiteral705B2FB975EB4F1AB7CC1FD4400BA6F59449BFD3;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
goto IL_002b;
}
IL_0026:
{
G_B3_0 = _stringLiteral737BEB9BE9CEFC63A888D759629AC77296E6B129;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
}
IL_002b:
{
String_t* L_4;
L_4 = String_Format_m76BF8F3A6AD789E38B708848A2688D400AAC250A(G_B3_3, G_B3_2, G_B3_1, G_B3_0, NULL);
V_0 = L_4;
goto IL_0033;
}
IL_0033:
{
String_t* L_5 = V_0;
return L_5;
}
}
// System.String NUnit.Framework.Constraints.PathConstraint::Canonicalize(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8 (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, String_t* ___path0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral26DC9E6A16A2B862023CCDC29E42E5404E9ACD4F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_1 = NULL;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
String_t* V_5 = NULL;
int32_t V_6 = 0;
Il2CppChar V_7 = 0x0;
bool V_8 = false;
Il2CppChar V_9 = 0x0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_10 = NULL;
int32_t V_11 = 0;
String_t* V_12 = NULL;
String_t* V_13 = NULL;
String_t* V_14 = NULL;
bool V_15 = false;
bool V_16 = false;
String_t* V_17 = NULL;
int32_t G_B6_0 = 0;
{
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_0 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
Il2CppChar L_1 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___AltDirectorySeparatorChar_1;
V_4 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_2 = V_4;
if (!L_2)
{
goto IL_0028;
}
}
{
String_t* L_3 = ___path0;
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_4 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___AltDirectorySeparatorChar_1;
Il2CppChar L_5 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
NullCheck(L_3);
String_t* L_6;
L_6 = String_Replace_m86403DC5F422D8D5E1CFAAF255B103CB807EDAAF(L_3, L_4, L_5, NULL);
___path0 = L_6;
}
IL_0028:
{
V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
String_t* L_7 = ___path0;
V_5 = L_7;
V_6 = 0;
goto IL_007a;
}
IL_0037:
{
String_t* L_8 = V_5;
int32_t L_9 = V_6;
NullCheck(L_8);
Il2CppChar L_10;
L_10 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_8, L_9, NULL);
V_7 = L_10;
Il2CppChar L_11 = V_7;
if ((((int32_t)L_11) == ((int32_t)((int32_t)92))))
{
goto IL_0051;
}
}
{
Il2CppChar L_12 = V_7;
G_B6_0 = ((((int32_t)L_12) == ((int32_t)((int32_t)47)))? 1 : 0);
goto IL_0052;
}
IL_0051:
{
G_B6_0 = 1;
}
IL_0052:
{
V_8 = (bool)G_B6_0;
bool L_13 = V_8;
if (!L_13)
{
goto IL_0071;
}
}
{
String_t* L_14 = V_0;
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_15 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
V_9 = L_15;
String_t* L_16;
L_16 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_9), NULL);
String_t* L_17;
L_17 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_14, L_16, NULL);
V_0 = L_17;
goto IL_0073;
}
IL_0071:
{
goto IL_0085;
}
IL_0073:
{
int32_t L_18 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add(L_18, 1));
}
IL_007a:
{
int32_t L_19 = V_6;
String_t* L_20 = V_5;
NullCheck(L_20);
int32_t L_21;
L_21 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_20, NULL);
if ((((int32_t)L_19) < ((int32_t)L_21)))
{
goto IL_0037;
}
}
IL_0085:
{
String_t* L_22 = ___path0;
il2cpp_codegen_runtime_class_init_inline(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_23 = ((PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_StaticFields*)il2cpp_codegen_static_fields_for(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var))->___DirectorySeparatorChars_9;
NullCheck(L_22);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_24;
L_24 = String_Split_m6811F7CF4DE7C68019D76E9DC6D17B2293BA8B12(L_22, L_23, 1, NULL);
V_1 = L_24;
V_2 = 0;
V_3 = (bool)0;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_25 = V_1;
V_10 = L_25;
V_11 = 0;
goto IL_0109;
}
IL_009f:
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_26 = V_10;
int32_t L_27 = V_11;
NullCheck(L_26);
int32_t L_28 = L_27;
String_t* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
V_12 = L_29;
String_t* L_30 = V_12;
V_14 = L_30;
String_t* L_31 = V_14;
V_13 = L_31;
String_t* L_32 = V_13;
bool L_33;
L_33 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_32, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, NULL);
if (L_33)
{
goto IL_00da;
}
}
{
String_t* L_34 = V_13;
if (!L_34)
{
goto IL_00ca;
}
}
{
String_t* L_35 = V_13;
NullCheck(L_35);
int32_t L_36;
L_36 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_35, NULL);
if (!L_36)
{
goto IL_00da;
}
}
IL_00ca:
{
String_t* L_37 = V_13;
bool L_38;
L_38 = String_op_Equality_m0D685A924E5CD78078F248ED1726DA5A9D7D6AC0(L_37, _stringLiteral26DC9E6A16A2B862023CCDC29E42E5404E9ACD4F, NULL);
if (L_38)
{
goto IL_00de;
}
}
{
goto IL_00f0;
}
IL_00da:
{
V_3 = (bool)1;
goto IL_0102;
}
IL_00de:
{
V_3 = (bool)1;
int32_t L_39 = V_2;
V_15 = (bool)((((int32_t)L_39) > ((int32_t)0))? 1 : 0);
bool L_40 = V_15;
if (!L_40)
{
goto IL_00ee;
}
}
{
int32_t L_41 = V_2;
V_2 = ((int32_t)il2cpp_codegen_subtract(L_41, 1));
}
IL_00ee:
{
goto IL_0102;
}
IL_00f0:
{
bool L_42 = V_3;
V_16 = L_42;
bool L_43 = V_16;
if (!L_43)
{
goto IL_00fc;
}
}
{
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_44 = V_1;
int32_t L_45 = V_2;
String_t* L_46 = V_12;
NullCheck(L_44);
ArrayElementTypeCheck (L_44, L_46);
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(L_45), (String_t*)L_46);
}
IL_00fc:
{
int32_t L_47 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add(L_47, 1));
goto IL_0102;
}
IL_0102:
{
int32_t L_48 = V_11;
V_11 = ((int32_t)il2cpp_codegen_add(L_48, 1));
}
IL_0109:
{
int32_t L_49 = V_11;
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = V_10;
NullCheck(L_50);
if ((((int32_t)L_49) < ((int32_t)((int32_t)(((RuntimeArray*)L_50)->max_length)))))
{
goto IL_009f;
}
}
{
String_t* L_51 = V_0;
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_52 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
V_9 = L_52;
String_t* L_53;
L_53 = Char_ToString_m2A308731F9577C06AF3C0901234E2EAC8327410C((&V_9), NULL);
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = V_1;
int32_t L_55 = V_2;
String_t* L_56;
L_56 = String_Join_m9FD21210E351374C67CD671692B866CA6B02E3EF(L_53, L_54, 0, L_55, NULL);
String_t* L_57;
L_57 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_51, L_56, NULL);
V_17 = L_57;
goto IL_0131;
}
IL_0131:
{
String_t* L_58 = V_17;
return L_58;
}
}
// System.Boolean NUnit.Framework.Constraints.PathConstraint::IsSubPath(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PathConstraint_IsSubPath_m822A5D0E9EBDD075FAE704498E3A9629C4B2E04D (PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96* __this, String_t* ___path10, String_t* ___path21, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
int32_t G_B7_0 = 0;
{
String_t* L_0 = ___path10;
NullCheck(L_0);
int32_t L_1;
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
V_0 = L_1;
String_t* L_2 = ___path21;
NullCheck(L_2);
int32_t L_3;
L_3 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_2, NULL);
V_1 = L_3;
int32_t L_4 = V_0;
int32_t L_5 = V_1;
V_2 = (bool)((((int32_t)((((int32_t)L_4) < ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_6 = V_2;
if (!L_6)
{
goto IL_001e;
}
}
{
V_3 = (bool)0;
goto IL_0063;
}
IL_001e:
{
String_t* L_7 = ___path10;
String_t* L_8 = ___path21;
int32_t L_9 = V_0;
NullCheck(L_8);
String_t* L_10;
L_10 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_8, 0, L_9, NULL);
bool L_11 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
bool L_12;
L_12 = StringUtil_StringsEqual_mDD0D7E0A881B18A64E6FC3F8FF3689C78AFDB7C8(L_7, L_10, L_11, NULL);
V_4 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
bool L_13 = V_4;
if (!L_13)
{
goto IL_003f;
}
}
{
V_3 = (bool)0;
goto IL_0063;
}
IL_003f:
{
String_t* L_14 = ___path21;
int32_t L_15 = V_0;
NullCheck(L_14);
Il2CppChar L_16;
L_16 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_14, ((int32_t)il2cpp_codegen_subtract(L_15, 1)), NULL);
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_17 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
if ((((int32_t)L_16) == ((int32_t)L_17)))
{
goto IL_005f;
}
}
{
String_t* L_18 = ___path21;
int32_t L_19 = V_0;
NullCheck(L_18);
Il2CppChar L_20;
L_20 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_18, L_19, NULL);
il2cpp_codegen_runtime_class_init_inline(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var);
Il2CppChar L_21 = ((Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_StaticFields*)il2cpp_codegen_static_fields_for(Path_t8A38A801D0219E8209C1B1D90D82D4D755D998BC_il2cpp_TypeInfo_var))->___DirectorySeparatorChar_2;
G_B7_0 = ((((int32_t)L_20) == ((int32_t)L_21))? 1 : 0);
goto IL_0060;
}
IL_005f:
{
G_B7_0 = 1;
}
IL_0060:
{
V_3 = (bool)G_B7_0;
goto IL_0063;
}
IL_0063:
{
bool L_22 = V_3;
return L_22;
}
}
// System.Void NUnit.Framework.Constraints.PathConstraint::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PathConstraint__cctor_mD996E10B73508E83C1037042247CBA6658D97ECE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = L_0;
NullCheck(L_1);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)92));
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_2 = L_1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)47));
((PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_StaticFields*)il2cpp_codegen_static_fields_for(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var))->___DirectorySeparatorChars_9 = L_2;
Il2CppCodeGenWriteBarrier((void**)(&((PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_StaticFields*)il2cpp_codegen_static_fields_for(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var))->___DirectorySeparatorChars_9), (void*)L_2);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.PrefixConstraint::get_BaseConstraint()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1 (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CBaseConstraintU3Ek__BackingField_4;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.PrefixConstraint::set_BaseConstraint(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixConstraint_set_BaseConstraint_mAACC8E0FBDC69E98183BF056BF37858AC2484B0C (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CBaseConstraintU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBaseConstraintU3Ek__BackingField_4), (void*)L_0);
return;
}
}
// System.String NUnit.Framework.Constraints.PrefixConstraint::get_DescriptionPrefix()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PrefixConstraint_get_DescriptionPrefix_mE7FF5F0A9A0A37B1374634559303EBAE0AB9DE8D (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CDescriptionPrefixU3Ek__BackingField_5;
return L_0;
}
}
// System.Void NUnit.Framework.Constraints.PrefixConstraint::set_DescriptionPrefix(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CDescriptionPrefixU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CDescriptionPrefixU3Ek__BackingField_5), (void*)L_0);
return;
}
}
// System.Void NUnit.Framework.Constraints.PrefixConstraint::.ctor(NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1 (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, RuntimeObject* ___baseConstraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral23BF8FD25A828F6DBCCA76378D92162A3DE223F2);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___baseConstraint0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
RuntimeObject* L_3 = ___baseConstraint0;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_3, _stringLiteral23BF8FD25A828F6DBCCA76378D92162A3DE223F2, NULL);
RuntimeObject* L_4 = ___baseConstraint0;
NullCheck(L_4);
RuntimeObject* L_5;
L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_4);
PrefixConstraint_set_BaseConstraint_mAACC8E0FBDC69E98183BF056BF37858AC2484B0C_inline(__this, L_5, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.PrefixConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PrefixConstraint_get_Description_m99F80FEAB0ECD5B2A8559B8B33886D1F80E015AE (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral090CA016944FD09E7DA1A2D7A2EA0B29EA18F6A6);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E752B76D455A50FE476984D4B09A7CDBF2A753E);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0;
L_0 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
if (((EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7*)IsInstClass((RuntimeObject*)L_0, EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7_il2cpp_TypeInfo_var)))
{
goto IL_0015;
}
}
{
G_B3_0 = _stringLiteral8E752B76D455A50FE476984D4B09A7CDBF2A753E;
goto IL_001a;
}
IL_0015:
{
G_B3_0 = _stringLiteral090CA016944FD09E7DA1A2D7A2EA0B29EA18F6A6;
}
IL_001a:
{
String_t* L_1;
L_1 = PrefixConstraint_get_DescriptionPrefix_mE7FF5F0A9A0A37B1374634559303EBAE0AB9DE8D_inline(__this, NULL);
RuntimeObject* L_2;
L_2 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
NullCheck(L_2);
String_t* L_3;
L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String NUnit.Framework.Constraints.IConstraint::get_Description() */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_2);
String_t* L_4;
L_4 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(G_B3_0, L_1, L_3, NULL);
V_0 = L_4;
goto IL_0033;
}
IL_0033:
{
String_t* L_5 = V_0;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.PropertyConstraint::.ctor(System.String,NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyConstraint__ctor_mEE1AE0D4F6570AA85C9455D9EB1E6D40DB648C4C (PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57* __this, String_t* ___name0, RuntimeObject* ___baseConstraint1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral555117A57EC907CF1C274F338FFE628883D08964);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___baseConstraint1;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
String_t* L_1 = ___name0;
__this->___name_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_6), (void*)L_1);
String_t* L_2 = ___name0;
String_t* L_3;
L_3 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral555117A57EC907CF1C274F338FFE628883D08964, L_2, NULL);
PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline(__this, L_3, NULL);
return;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.PropertyConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* PropertyConstraint_ApplyTo_mC079FA235E94B15CFF15581730522B5EE958851B (PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272);
s_Il2CppMethodInitialized = true;
}
Type_t* V_0 = NULL;
PropertyInfo_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
{
RuntimeObject* L_0 = ___actual0;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_0, _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272, NULL);
RuntimeObject* L_1 = ___actual0;
V_0 = ((Type_t*)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var));
Type_t* L_2 = V_0;
V_2 = (bool)((((RuntimeObject*)(Type_t*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_3 = V_2;
if (!L_3)
{
goto IL_0023;
}
}
{
RuntimeObject* L_4 = ___actual0;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
V_0 = L_5;
}
IL_0023:
{
Type_t* L_6 = V_0;
String_t* L_7 = __this->___name_6;
NullCheck(L_6);
PropertyInfo_t* L_8;
L_8 = Type_GetProperty_m6E63875E6098E89250149F4E76FAD40844708391(L_6, L_7, ((int32_t)52), NULL);
V_1 = L_8;
PropertyInfo_t* L_9 = V_1;
V_3 = (bool)((((RuntimeObject*)(PropertyInfo_t*)L_9) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_10 = V_3;
if (!L_10)
{
goto IL_0055;
}
}
{
String_t* L_11 = __this->___name_6;
String_t* L_12;
L_12 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral96ACA358B7A4C86713EE6CB047D9D1531A642BB1)), L_11, NULL);
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_13);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_13, L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PropertyConstraint_ApplyTo_mC079FA235E94B15CFF15581730522B5EE958851B_RuntimeMethod_var)));
}
IL_0055:
{
PropertyInfo_t* L_14 = V_1;
RuntimeObject* L_15 = ___actual0;
NullCheck(L_14);
RuntimeObject* L_16;
L_16 = VirtualFuncInvoker2< RuntimeObject*, RuntimeObject*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(24 /* System.Object System.Reflection.PropertyInfo::GetValue(System.Object,System.Object[]) */, L_14, L_15, (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL);
__this->___propValue_7 = L_16;
Il2CppCodeGenWriteBarrier((void**)(&__this->___propValue_7), (void*)L_16);
RuntimeObject* L_17 = __this->___propValue_7;
RuntimeObject* L_18;
L_18 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_19 = __this->___propValue_7;
NullCheck(L_18);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_20;
L_20 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_18, L_19);
NullCheck(L_20);
bool L_21;
L_21 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_20);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_22 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_22);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_22, __this, L_17, L_21, NULL);
V_4 = L_22;
goto IL_0089;
}
IL_0089:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_23 = V_4;
return L_23;
}
}
// System.String NUnit.Framework.Constraints.PropertyConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyConstraint_GetStringRepresentation_m23A6AD502DF091112F228BFBDE598F2A86DD878F (PropertyConstraint_tE91B85D6F74551731502BD33FA5C814CDB31BB57* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA88C47E0CA742ED28830DC367F3C1DE8E582B00);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___name_6;
RuntimeObject* L_1;
L_1 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteralAA88C47E0CA742ED28830DC367F3C1DE8E582B00, L_0, L_1, NULL);
V_0 = L_2;
goto IL_001a;
}
IL_001a:
{
String_t* L_3 = V_0;
return L_3;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.PropertyExistsConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyExistsConstraint__ctor_m1CA761B0B5B71D04A98AA0244C86AF29521C3B7F (PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60* __this, String_t* ___name0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
String_t* L_2 = ___name0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
String_t* L_3 = ___name0;
__this->___name_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___name_4), (void*)L_3);
return;
}
}
// System.String NUnit.Framework.Constraints.PropertyExistsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyExistsConstraint_get_Description_mBC3BBBCC58F184FCD15D082ECAD80753A7F6267C (PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral555117A57EC907CF1C274F338FFE628883D08964);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___name_4;
String_t* L_1;
L_1 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral555117A57EC907CF1C274F338FFE628883D08964, L_0, NULL);
V_0 = L_1;
goto IL_0014;
}
IL_0014:
{
String_t* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.PropertyExistsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* PropertyExistsConstraint_ApplyTo_mF26E4FDAC585A33F024A77BF70AE80CC0E6E9F59 (PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272);
s_Il2CppMethodInitialized = true;
}
PropertyInfo_t* V_0 = NULL;
bool V_1 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
{
RuntimeObject* L_0 = ___actual0;
Guard_ArgumentNotNull_m91148707199D5B5630CECEAB568D6183CE240987(L_0, _stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272, NULL);
RuntimeObject* L_1 = ___actual0;
__this->___actualType_5 = ((Type_t*)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var));
Il2CppCodeGenWriteBarrier((void**)(&__this->___actualType_5), (void*)((Type_t*)IsInstClass((RuntimeObject*)L_1, Type_t_il2cpp_TypeInfo_var)));
Type_t* L_2 = __this->___actualType_5;
V_1 = (bool)((((RuntimeObject*)(Type_t*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_0032;
}
}
{
RuntimeObject* L_4 = ___actual0;
NullCheck(L_4);
Type_t* L_5;
L_5 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_4, NULL);
__this->___actualType_5 = L_5;
Il2CppCodeGenWriteBarrier((void**)(&__this->___actualType_5), (void*)L_5);
}
IL_0032:
{
Type_t* L_6 = __this->___actualType_5;
String_t* L_7 = __this->___name_4;
NullCheck(L_6);
PropertyInfo_t* L_8;
L_8 = Type_GetProperty_m6E63875E6098E89250149F4E76FAD40844708391(L_6, L_7, ((int32_t)52), NULL);
V_0 = L_8;
Type_t* L_9 = __this->___actualType_5;
PropertyInfo_t* L_10 = V_0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_11 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_11);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_11, __this, L_9, (bool)((!(((RuntimeObject*)(PropertyInfo_t*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0), NULL);
V_2 = L_11;
goto IL_0059;
}
IL_0059:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12 = V_2;
return L_12;
}
}
// System.String NUnit.Framework.Constraints.PropertyExistsConstraint::GetStringRepresentation()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PropertyExistsConstraint_GetStringRepresentation_mF0A83DC5F63F52C6C616A589D79057770FB5A1AF (PropertyExistsConstraint_tD7F46FDFD324DFA3FAA27CBE6F47B882DD871D60* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E4CD365CFDF0CB418E16B327830A68928BE9721);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = __this->___name_4;
String_t* L_1;
L_1 = String_Format_m8C122B26BC5AA10E2550AECA16E57DAE10F07E30(_stringLiteral1E4CD365CFDF0CB418E16B327830A68928BE9721, L_0, NULL);
V_0 = L_1;
goto IL_0014;
}
IL_0014:
{
String_t* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.RangeConstraint::.ctor(System.IComparable,System.IComparable)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73 (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* __this, RuntimeObject* ___from0, RuntimeObject* ___to1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_0;
L_0 = ComparisonAdapter_get_Default_m744091F5E4EC179D1781D7CD04C8E3B63C38526C(NULL);
__this->___comparer_6 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_6), (void*)L_0);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1;
RuntimeObject* L_3 = ___from0;
NullCheck(L_2);
ArrayElementTypeCheck (L_2, L_3);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_3);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = L_2;
RuntimeObject* L_5 = ___to1;
NullCheck(L_4);
ArrayElementTypeCheck (L_4, L_5);
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_5);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_4, NULL);
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_6 = __this->___comparer_6;
RuntimeObject* L_7 = ___from0;
RuntimeObject* L_8 = ___to1;
NullCheck(L_6);
int32_t L_9;
L_9 = VirtualFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ComparisonAdapter::Compare(System.Object,System.Object) */, L_6, L_7, L_8);
V_0 = (bool)((((int32_t)L_9) > ((int32_t)0))? 1 : 0);
bool L_10 = V_0;
if (!L_10)
{
goto IL_0040;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_11);
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE373004A1536E747D5BBE90ED2AA7529BD820326)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RangeConstraint__ctor_mFE3E6BA2F728EC73F47275A9B1887E6FA6517E73_RuntimeMethod_var)));
}
IL_0040:
{
RuntimeObject* L_12 = ___from0;
__this->___from_4 = L_12;
Il2CppCodeGenWriteBarrier((void**)(&__this->___from_4), (void*)L_12);
RuntimeObject* L_13 = ___to1;
__this->___to_5 = L_13;
Il2CppCodeGenWriteBarrier((void**)(&__this->___to_5), (void*)L_13);
return;
}
}
// System.String NUnit.Framework.Constraints.RangeConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* RangeConstraint_get_Description_m323D051D8CB2F32DE1FD1DF3AB2051D01CD91111 (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7BD18D652B63753A6350BAEB937B759F70318792);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->___from_4;
RuntimeObject* L_1 = __this->___to_5;
String_t* L_2;
L_2 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral7BD18D652B63753A6350BAEB937B759F70318792, L_0, L_1, NULL);
V_0 = L_2;
goto IL_001a;
}
IL_001a:
{
String_t* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.RangeConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* RangeConstraint_ApplyTo_mE7300E367872B527BA7D05670B928839838F847F (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
int32_t G_B4_0 = 0;
int32_t G_B9_0 = 0;
{
RuntimeObject* L_0 = __this->___from_4;
if (!L_0)
{
goto IL_0017;
}
}
{
RuntimeObject* L_1 = __this->___to_5;
if (!L_1)
{
goto IL_0017;
}
}
{
RuntimeObject* L_2 = ___actual0;
G_B4_0 = ((((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_0018;
}
IL_0017:
{
G_B4_0 = 1;
}
IL_0018:
{
V_1 = (bool)G_B4_0;
bool L_3 = V_1;
if (!L_3)
{
goto IL_002c;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral229BEE113FBCACF7F41DDC83AE77A478BC4B5823)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RangeConstraint_ApplyTo_mE7300E367872B527BA7D05670B928839838F847F_RuntimeMethod_var)));
}
IL_002c:
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_5 = __this->___comparer_6;
RuntimeObject* L_6 = __this->___from_4;
RuntimeObject* L_7 = ___actual0;
NullCheck(L_5);
int32_t L_8;
L_8 = VirtualFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ComparisonAdapter::Compare(System.Object,System.Object) */, L_5, L_6, L_7);
if ((((int32_t)L_8) > ((int32_t)0)))
{
goto IL_005b;
}
}
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_9 = __this->___comparer_6;
RuntimeObject* L_10 = __this->___to_5;
RuntimeObject* L_11 = ___actual0;
NullCheck(L_9);
int32_t L_12;
L_12 = VirtualFuncInvoker2< int32_t, RuntimeObject*, RuntimeObject* >::Invoke(4 /* System.Int32 NUnit.Framework.Constraints.ComparisonAdapter::Compare(System.Object,System.Object) */, L_9, L_10, L_11);
G_B9_0 = ((((int32_t)((((int32_t)L_12) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_005c;
}
IL_005b:
{
G_B9_0 = 0;
}
IL_005c:
{
V_0 = (bool)G_B9_0;
RuntimeObject* L_13 = ___actual0;
bool L_14 = V_0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_15 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_15);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_15, __this, L_13, L_14, NULL);
V_2 = L_15;
goto IL_0068;
}
IL_0068:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = V_2;
return L_16;
}
}
// NUnit.Framework.Constraints.RangeConstraint NUnit.Framework.Constraints.RangeConstraint::Using(System.Collections.IComparer)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* RangeConstraint_Using_mBDE7930BFF947AF7545989B413FE570E004DC334 (RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* __this, RuntimeObject* ___comparer0, const RuntimeMethod* method)
{
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* V_0 = NULL;
{
RuntimeObject* L_0 = ___comparer0;
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_1;
L_1 = ComparisonAdapter_For_mCF28A0895277AB45BD066787BA8E470280153E5D(L_0, NULL);
__this->___comparer_6 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___comparer_6), (void*)L_1);
V_0 = __this;
goto IL_0011;
}
IL_0011:
{
RangeConstraint_t9B571DAB3E38E8BE0AA5E3AB2A2893E689C60C96* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.RegexConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RegexConstraint__ctor_m73FF149A887C741BE7E68F996CFF6166F2CCDD78 (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* __this, String_t* ___pattern0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB1269EF381A8D16986D4F342DA110B03FE9E59C5);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___pattern0;
StringConstraint__ctor_mBF764F38023531DF1A50A499825A325CEE869536(__this, L_0, NULL);
((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___descriptionText_6 = _stringLiteralB1269EF381A8D16986D4F342DA110B03FE9E59C5;
Il2CppCodeGenWriteBarrier((void**)(&((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___descriptionText_6), (void*)_stringLiteralB1269EF381A8D16986D4F342DA110B03FE9E59C5);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.RegexConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool RegexConstraint_Matches_mDFFD3DDDC07C1E5893C2B0A0AF7A4CCBB97FE1CA (RegexConstraint_tAC8D416DB5386B4D00E7DBED47AA35C6E14A984B* __this, String_t* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B2_0 = NULL;
String_t* G_B2_1 = NULL;
int32_t G_B4_0 = 0;
String_t* G_B4_1 = NULL;
String_t* G_B4_2 = NULL;
int32_t G_B6_0 = 0;
{
String_t* L_0 = ___actual0;
if (!L_0)
{
goto IL_001e;
}
}
{
String_t* L_1 = ___actual0;
String_t* L_2 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
bool L_3 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
G_B2_0 = L_2;
G_B2_1 = L_1;
if (L_3)
{
G_B3_0 = L_2;
G_B3_1 = L_1;
goto IL_0016;
}
}
{
G_B4_0 = 0;
G_B4_1 = G_B2_0;
G_B4_2 = G_B2_1;
goto IL_0017;
}
IL_0016:
{
G_B4_0 = 1;
G_B4_1 = G_B3_0;
G_B4_2 = G_B3_1;
}
IL_0017:
{
il2cpp_codegen_runtime_class_init_inline(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
bool L_4;
L_4 = Regex_IsMatch_mCCD41B2FBCF36A2329B7D174FD117C09205CFA62(G_B4_2, G_B4_1, G_B4_0, NULL);
G_B6_0 = ((int32_t)(L_4));
goto IL_001f;
}
IL_001e:
{
G_B6_0 = 0;
}
IL_001f:
{
V_0 = (bool)G_B6_0;
goto IL_0022;
}
IL_0022:
{
bool L_5 = V_0;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ResolvableConstraintExpression::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResolvableConstraintExpression__ctor_m3F1E8B2D54113EA956E7FE2A866CE58DC3F46645 (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* __this, const RuntimeMethod* method)
{
{
ConstraintExpression__ctor_mA9D5E2973AD5AEE1D9A9759EEDED530735A8284D(__this, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.ResolvableConstraintExpression::.ctor(NUnit.Framework.Constraints.ConstraintBuilder)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ResolvableConstraintExpression__ctor_mD39B1C0B4ABC4BBACF4950782670D3C970CE6D3C (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___builder0, const RuntimeMethod* method)
{
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = ___builder0;
ConstraintExpression__ctor_m658096F29E59B967D5D410B0CF1A01AF6E296C2D(__this, L_0, NULL);
return;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ResolvableConstraintExpression::get_And()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ResolvableConstraintExpression_get_And_m44846FFCA85B1BEA505C26421C7A09DFC04CA871 (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF* L_0 = (AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF*)il2cpp_codegen_object_new(AndOperator_t4F3B2F1AFD84803D637799D1A4B310E3A1CF04BF_il2cpp_TypeInfo_var);
NullCheck(L_0);
AndOperator__ctor_m5B7DFD6B2B3E2CACC2B7CFE8B6CDE53C8F88E312(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.ConstraintExpression NUnit.Framework.Constraints.ResolvableConstraintExpression::get_Or()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* ResolvableConstraintExpression_get_Or_m28FC2A535C162B3D8FE2E4DA2CAE52070B272768 (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* V_0 = NULL;
{
OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B* L_0 = (OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B*)il2cpp_codegen_object_new(OrOperator_tC272ECEA3FE2FE053F45C05C677AF90FD1727F9B_il2cpp_TypeInfo_var);
NullCheck(L_0);
OrOperator__ctor_m970F375DFA2B6C2344A5FDDF071E52C41CDDD24F(L_0, NULL);
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_1;
L_1 = ConstraintExpression_Append_m4F291EF8B1288552D92AA0F0723B78C0A7678C82(__this, L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ResolvableConstraintExpression::NUnit.Framework.Constraints.IResolveConstraint.Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ResolvableConstraintExpression_NUnit_Framework_Constraints_IResolveConstraint_Resolve_m68474335C37DF0C14577228C305A75307FA6D3B9 (ResolvableConstraintExpression_tC9138243D7661437FFE583C75EC595017CE58F09* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = ((ConstraintExpression_t81BE42C8EB05A8122906D5547BA7D9976B13E80C*)__this)->___builder_0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = ConstraintBuilder_Resolve_mFCEC32AD739C9534E9E9D0413D8259ADA062DF38(L_0, NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
RuntimeObject* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.ReusableConstraint::.ctor(NUnit.Framework.Constraints.IResolveConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReusableConstraint__ctor_m4661BF4F32334AB2A370A3B2B6EDB2A611BBAF7E (ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* __this, RuntimeObject* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
RuntimeObject* L_0 = ___c0;
NullCheck(L_0);
RuntimeObject* L_1;
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.IResolveConstraint::Resolve() */, IResolveConstraint_tD66D26721715917EB580750AA1A289E441ED13DE_il2cpp_TypeInfo_var, L_0);
__this->___constraint_0 = L_1;
Il2CppCodeGenWriteBarrier((void**)(&__this->___constraint_0), (void*)L_1);
return;
}
}
// NUnit.Framework.Constraints.ReusableConstraint NUnit.Framework.Constraints.ReusableConstraint::op_Implicit(NUnit.Framework.Constraints.Constraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* ReusableConstraint_op_Implicit_m9187631277E2BF88C13AE3415201919EB44D06B3 (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* ___c0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* V_0 = NULL;
{
Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* L_0 = ___c0;
ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* L_1 = (ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7*)il2cpp_codegen_object_new(ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7_il2cpp_TypeInfo_var);
NullCheck(L_1);
ReusableConstraint__ctor_m4661BF4F32334AB2A370A3B2B6EDB2A611BBAF7E(L_1, L_0, NULL);
V_0 = L_1;
goto IL_000a;
}
IL_000a:
{
ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* L_2 = V_0;
return L_2;
}
}
// System.String NUnit.Framework.Constraints.ReusableConstraint::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ReusableConstraint_ToString_m5404BB7FBC6844C658E1713FDE31D5EB1FAB4F0A (ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->___constraint_0;
NullCheck(L_0);
String_t* L_1;
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_0);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
// NUnit.Framework.Constraints.IConstraint NUnit.Framework.Constraints.ReusableConstraint::Resolve()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReusableConstraint_Resolve_m809234EDF55E66CA40F3CE787DEAEECD851958AD (ReusableConstraint_tA2226BB68C2E80EE89623AA91760B5058CC679F7* __this, const RuntimeMethod* method)
{
RuntimeObject* V_0 = NULL;
{
RuntimeObject* L_0 = __this->___constraint_0;
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
RuntimeObject* L_1 = V_0;
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.SameAsConstraint::.ctor(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SameAsConstraint__ctor_mF974E5795B715FF876CB1312619701D868627693 (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* __this, RuntimeObject* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
RuntimeObject* L_2 = ___expected0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
RuntimeObject* L_3 = ___expected0;
__this->___expected_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___expected_4), (void*)L_3);
return;
}
}
// System.String NUnit.Framework.Constraints.SameAsConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SameAsConstraint_get_Description_m00F6AB337446E2F6EEFFBD5D34C4AA8214A97D35 (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4635C9CB95BD89873457215F33B5DFBF66FF7167);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
RuntimeObject* L_0 = __this->___expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral4635C9CB95BD89873457215F33B5DFBF66FF7167, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.SameAsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* SameAsConstraint_ApplyTo_mED622105BC612DF16BEE2DFDBA01BFACF01385C3 (SameAsConstraint_t329E40F3DD642EEBAF6091215A478D8948585606* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_1 = NULL;
{
RuntimeObject* L_0 = __this->___expected_4;
RuntimeObject* L_1 = ___actual0;
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)L_1))? 1 : 0);
RuntimeObject* L_2 = ___actual0;
bool L_3 = V_0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_4 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_4);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_4, __this, L_2, L_3, NULL);
V_1 = L_4;
goto IL_0016;
}
IL_0016:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_5 = V_1;
return L_5;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.SamePathConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SamePathConstraint__ctor_m3916E887879D1FF7B241DE70E14A3104F11ED985 (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
PathConstraint__ctor_m6242998BDF8309B40C0B4D4E6D43E9A5A78FFFF8(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.SamePathConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SamePathConstraint_get_Description_mA0896980EF80A4875BA577166CBD81BD21AAE762 (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDD5F6E25C4083340CFA0E975B1129C890F7DEA74);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteralDD5F6E25C4083340CFA0E975B1129C890F7DEA74, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.SamePathConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SamePathConstraint_Matches_m2C6951BE9EBEF04903AAF84A6496B2163F25F369 (SamePathConstraint_tACEBDB36E4CF32C96E7DB9A4DAE7FCA9A53102E3* __this, String_t* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
String_t* L_0 = ___actual0;
if (!L_0)
{
goto IL_0024;
}
}
{
String_t* L_1 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
String_t* L_2;
L_2 = PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8(__this, L_1, NULL);
String_t* L_3 = ___actual0;
String_t* L_4;
L_4 = PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8(__this, L_3, NULL);
bool L_5 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
bool L_6;
L_6 = StringUtil_StringsEqual_mDD0D7E0A881B18A64E6FC3F8FF3689C78AFDB7C8(L_2, L_4, L_5, NULL);
G_B3_0 = ((int32_t)(L_6));
goto IL_0025;
}
IL_0024:
{
G_B3_0 = 0;
}
IL_0025:
{
V_0 = (bool)G_B3_0;
goto IL_0028;
}
IL_0028:
{
bool L_7 = V_0;
return L_7;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.SamePathOrUnderConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SamePathOrUnderConstraint__ctor_m30350FC6FCAEADD0268E5E552D76E67462D8B98B (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
il2cpp_codegen_runtime_class_init_inline(PathConstraint_tAD2B786AE7E99A186F70517F9E6A6479663BEC96_il2cpp_TypeInfo_var);
PathConstraint__ctor_m6242998BDF8309B40C0B4D4E6D43E9A5A78FFFF8(__this, L_0, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.SamePathOrUnderConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SamePathOrUnderConstraint_get_Description_m2FFB6D6FAF31104DA46B9FFA17768E7200168D9F (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27DDD10E73C080DBFFFB9B6A4F68EC68B04A44ED);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
String_t* L_0 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_0, NULL);
String_t* L_2;
L_2 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(_stringLiteral27DDD10E73C080DBFFFB9B6A4F68EC68B04A44ED, L_1, NULL);
V_0 = L_2;
goto IL_0019;
}
IL_0019:
{
String_t* L_3 = V_0;
return L_3;
}
}
// System.Boolean NUnit.Framework.Constraints.SamePathOrUnderConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SamePathOrUnderConstraint_Matches_mE93AF26115A8F9EA4E326FBE84F36411C1505BCE (SamePathOrUnderConstraint_tAA69A6EAF5F4D3DF8B79C0EC93E9214E3CD402FF* __this, String_t* ___actual0, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
String_t* V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
int32_t G_B5_0 = 0;
{
String_t* L_0 = ___actual0;
V_2 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
bool L_1 = V_2;
if (!L_1)
{
goto IL_000d;
}
}
{
V_3 = (bool)0;
goto IL_003f;
}
IL_000d:
{
String_t* L_2 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
String_t* L_3;
L_3 = PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8(__this, L_2, NULL);
V_0 = L_3;
String_t* L_4 = ___actual0;
String_t* L_5;
L_5 = PathConstraint_Canonicalize_m39D2DD996B37053BCB2A362F62D3B3EDC483CFE8(__this, L_4, NULL);
V_1 = L_5;
String_t* L_6 = V_0;
String_t* L_7 = V_1;
bool L_8 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
bool L_9;
L_9 = StringUtil_StringsEqual_mDD0D7E0A881B18A64E6FC3F8FF3689C78AFDB7C8(L_6, L_7, L_8, NULL);
if (L_9)
{
goto IL_003b;
}
}
{
String_t* L_10 = V_0;
String_t* L_11 = V_1;
bool L_12;
L_12 = PathConstraint_IsSubPath_m822A5D0E9EBDD075FAE704498E3A9629C4B2E04D(__this, L_10, L_11, NULL);
G_B5_0 = ((int32_t)(L_12));
goto IL_003c;
}
IL_003b:
{
G_B5_0 = 1;
}
IL_003c:
{
V_3 = (bool)G_B5_0;
goto IL_003f;
}
IL_003f:
{
bool L_13 = V_3;
return L_13;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.SomeItemsConstraint::.ctor(NUnit.Framework.Constraints.IConstraint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SomeItemsConstraint__ctor_m7DB249F17B8983C2EC5FBAFDDA5A2B4BAA502A41 (SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23* __this, RuntimeObject* ___itemConstraint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35DA906FBF5E2388981DFBE5D23807853F9B19B4);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___itemConstraint0;
PrefixConstraint__ctor_mF2E9CA37A5E3ADB0FDC358B59E62380609AF97E1(__this, L_0, NULL);
PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline(__this, _stringLiteral35DA906FBF5E2388981DFBE5D23807853F9B19B4, NULL);
return;
}
}
// System.String NUnit.Framework.Constraints.SomeItemsConstraint::get_DisplayName()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SomeItemsConstraint_get_DisplayName_m1E3E113B1D8961D841D6FE070E3075EDA6B3545D (SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E87D8C210A5501FB74159709DB488B5EF9D29D2);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
V_0 = _stringLiteral5E87D8C210A5501FB74159709DB488B5EF9D29D2;
goto IL_0009;
}
IL_0009:
{
String_t* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.SomeItemsConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* SomeItemsConstraint_ApplyTo_mEDDD9019586D2C0EA9A0EFFCDDC103D76075CA7A (SomeItemsConstraint_t1ED3043D9D941EE03EAE2CCEF2895A75E3D49F23* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
RuntimeObject* V_2 = NULL;
bool V_3 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_4 = NULL;
RuntimeObject* V_5 = NULL;
{
RuntimeObject* L_0 = ___actual0;
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0021;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_2);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD6433242E3AC0818A68685B6BD80954F4AAE48DC)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SomeItemsConstraint_ApplyTo_mEDDD9019586D2C0EA9A0EFFCDDC103D76075CA7A_RuntimeMethod_var)));
}
IL_0021:
{
RuntimeObject* L_3 = ___actual0;
NullCheck(((RuntimeObject*)Castclass((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
RuntimeObject* L_4;
L_4 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, ((RuntimeObject*)Castclass((RuntimeObject*)L_3, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var)));
V_1 = L_4;
}
{
auto __finallyBlock = il2cpp::utils::Finally([&]
{
FINALLY_0062:
{// begin finally (depth: 1)
{
RuntimeObject* L_5 = V_1;
V_5 = ((RuntimeObject*)IsInst((RuntimeObject*)L_5, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var));
RuntimeObject* L_6 = V_5;
if (!L_6)
{
goto IL_0076;
}
}
{
RuntimeObject* L_7 = V_5;
NullCheck(L_7);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_7);
}
IL_0076:
{
return;
}
}// end finally (depth: 1)
});
try
{// begin try (depth: 1)
{
goto IL_0058_1;
}
IL_0030_1:
{
RuntimeObject* L_8 = V_1;
NullCheck(L_8);
RuntimeObject* L_9;
L_9 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* System.Object System.Collections.IEnumerator::get_Current() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_8);
V_2 = L_9;
RuntimeObject* L_10;
L_10 = PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline(__this, NULL);
RuntimeObject* L_11 = V_2;
NullCheck(L_10);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_12;
L_12 = InterfaceFuncInvoker1< ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*, RuntimeObject* >::Invoke(5 /* NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.IConstraint::ApplyTo(System.Object) */, IConstraint_tBDD2EAB27DBB14D449EA61B388ADA18A55E67AA3_il2cpp_TypeInfo_var, L_10, L_11);
NullCheck(L_12);
bool L_13;
L_13 = VirtualFuncInvoker0< bool >::Invoke(4 /* System.Boolean NUnit.Framework.Constraints.ConstraintResult::get_IsSuccess() */, L_12);
V_3 = L_13;
bool L_14 = V_3;
if (!L_14)
{
goto IL_0058_1;
}
}
{
RuntimeObject* L_15 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_16 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_16);
ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE(L_16, __this, L_15, 1, NULL);
V_4 = L_16;
goto IL_0083;
}
IL_0058_1:
{
RuntimeObject* L_17 = V_1;
NullCheck(L_17);
bool L_18;
L_18 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_17);
if (L_18)
{
goto IL_0030_1;
}
}
{
goto IL_0077;
}
}// end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__finallyBlock.StoreException(e.ex);
}
}
IL_0077:
{
RuntimeObject* L_19 = ___actual0;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_20 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_20);
ConstraintResult__ctor_m0B36E106AFC043B65F4E048B27C24ED467BC46EE(L_20, __this, L_19, 2, NULL);
V_4 = L_20;
goto IL_0083;
}
IL_0083:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_21 = V_4;
return L_21;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void NUnit.Framework.Constraints.StartsWithConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StartsWithConstraint__ctor_mF0C92680264FEAE351078F89E7BB39E7102F9D15 (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral930696953E9F2A610B1653CF9E1E9649044B9D8D);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = ___expected0;
StringConstraint__ctor_mBF764F38023531DF1A50A499825A325CEE869536(__this, L_0, NULL);
((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___descriptionText_6 = _stringLiteral930696953E9F2A610B1653CF9E1E9649044B9D8D;
Il2CppCodeGenWriteBarrier((void**)(&((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___descriptionText_6), (void*)_stringLiteral930696953E9F2A610B1653CF9E1E9649044B9D8D);
return;
}
}
// System.Boolean NUnit.Framework.Constraints.StartsWithConstraint::Matches(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StartsWithConstraint_Matches_m5681E13DA8DA3EA19C592A84F999AB8DB26BE781 (StartsWithConstraint_t15019F9208D36A2C122126B05BCFBF0FC6BE251D* __this, String_t* ___actual0, const RuntimeMethod* method)
{
bool V_0 = false;
bool V_1 = false;
int32_t G_B4_0 = 0;
int32_t G_B8_0 = 0;
{
bool L_0 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___caseInsensitive_5;
V_0 = L_0;
bool L_1 = V_0;
if (!L_1)
{
goto IL_002a;
}
}
{
String_t* L_2 = ___actual0;
if (!L_2)
{
goto IL_0026;
}
}
{
String_t* L_3 = ___actual0;
NullCheck(L_3);
String_t* L_4;
L_4 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_3, NULL);
String_t* L_5 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
NullCheck(L_5);
String_t* L_6;
L_6 = String_ToLower_m6191ABA3DC514ED47C10BDA23FD0DDCEAE7ACFBD(L_5, NULL);
NullCheck(L_4);
bool L_7;
L_7 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_4, L_6, NULL);
G_B4_0 = ((int32_t)(L_7));
goto IL_0027;
}
IL_0026:
{
G_B4_0 = 0;
}
IL_0027:
{
V_1 = (bool)G_B4_0;
goto IL_003f;
}
IL_002a:
{
String_t* L_8 = ___actual0;
if (!L_8)
{
goto IL_003b;
}
}
{
String_t* L_9 = ___actual0;
String_t* L_10 = ((StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C*)__this)->___expected_4;
NullCheck(L_9);
bool L_11;
L_11 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_9, L_10, NULL);
G_B8_0 = ((int32_t)(L_11));
goto IL_003c;
}
IL_003b:
{
G_B8_0 = 0;
}
IL_003c:
{
V_1 = (bool)G_B8_0;
goto IL_003f;
}
IL_003f:
{
bool L_12 = V_1;
return L_12;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String NUnit.Framework.Constraints.StringConstraint::get_Description()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringConstraint_get_Description_mA9FD1D2974239CAEEF0F623883FE1F0204E93928 (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E752B76D455A50FE476984D4B09A7CDBF2A753E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAC02149646451F67F7B59C4DC1C2EDA8BF8EC49D);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
{
String_t* L_0 = __this->___descriptionText_6;
String_t* L_1 = __this->___expected_4;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
String_t* L_2;
L_2 = MsgUtils_FormatValue_m6DD92B69F6B223E7AEE208852EF4D9C20FB98497(L_1, NULL);
String_t* L_3;
L_3 = String_Format_m9499958F4B0BB6089C75760AB647AB3CA4D55806(_stringLiteral8E752B76D455A50FE476984D4B09A7CDBF2A753E, L_0, L_2, NULL);
V_0 = L_3;
bool L_4 = __this->___caseInsensitive_5;
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_0033;
}
}
{
String_t* L_6 = V_0;
String_t* L_7;
L_7 = String_Concat_mAF2CE02CC0CB7460753D0A1A91CCF2B1E9804C5D(L_6, _stringLiteralAC02149646451F67F7B59C4DC1C2EDA8BF8EC49D, NULL);
V_0 = L_7;
}
IL_0033:
{
String_t* L_8 = V_0;
V_2 = L_8;
goto IL_0037;
}
IL_0037:
{
String_t* L_9 = V_2;
return L_9;
}
}
// System.Void NUnit.Framework.Constraints.StringConstraint::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConstraint__ctor_mDDBD2EF704249137AF218681D27539E0E69FB8E7 (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)0);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_0, NULL);
return;
}
}
// System.Void NUnit.Framework.Constraints.StringConstraint::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringConstraint__ctor_mBF764F38023531DF1A50A499825A325CEE869536 (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, String_t* ___expected0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0;
String_t* L_2 = ___expected0;
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_2);
Constraint__ctor_m62A174F245468BDA5C3FB236E30724016B88E1C6(__this, L_1, NULL);
String_t* L_3 = ___expected0;
__this->___expected_4 = L_3;
Il2CppCodeGenWriteBarrier((void**)(&__this->___expected_4), (void*)L_3);
return;
}
}
// NUnit.Framework.Constraints.StringConstraint NUnit.Framework.Constraints.StringConstraint::get_IgnoreCase()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* StringConstraint_get_IgnoreCase_m5BE9F4C8B6E532A1C47BFA774BB35B3E2D2903BD (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, const RuntimeMethod* method)
{
StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* V_0 = NULL;
{
__this->___caseInsensitive_5 = (bool)1;
V_0 = __this;
goto IL_000c;
}
IL_000c:
{
StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* L_0 = V_0;
return L_0;
}
}
// NUnit.Framework.Constraints.ConstraintResult NUnit.Framework.Constraints.StringConstraint::ApplyTo(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* StringConstraint_ApplyTo_m873E6FA9CACF500FD473BC29CF8B2743FF93201B (StringConstraint_t514D85F9BDC63E67EB1E6F40A801AD0A1059862C* __this, RuntimeObject* ___actual0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
bool V_1 = false;
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* V_2 = NULL;
int32_t G_B3_0 = 0;
{
RuntimeObject* L_0 = ___actual0;
V_0 = ((String_t*)IsInstSealed((RuntimeObject*)L_0, String_t_il2cpp_TypeInfo_var));
RuntimeObject* L_1 = ___actual0;
if (!L_1)
{
goto IL_0011;
}
}
{
String_t* L_2 = V_0;
G_B3_0 = ((((RuntimeObject*)(String_t*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
goto IL_0012;
}
IL_0011:
{
G_B3_0 = 0;
}
IL_0012:
{
V_1 = (bool)G_B3_0;
bool L_3 = V_1;
if (!L_3)
{
goto IL_0026;
}
}
{
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
NullCheck(L_4);
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE24B2A3DD8A7AF2B8DA9EC0E4F18EBF4FB9578E6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral59F297183EEBE7FC18DAD9020DFD7EC721366272)), NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringConstraint_ApplyTo_m873E6FA9CACF500FD473BC29CF8B2743FF93201B_RuntimeMethod_var)));
}
IL_0026:
{
RuntimeObject* L_5 = ___actual0;
String_t* L_6 = V_0;
bool L_7;
L_7 = VirtualFuncInvoker1< bool, String_t* >::Invoke(21 /* System.Boolean NUnit.Framework.Constraints.StringConstraint::Matches(System.String) */, __this, L_6);
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_8 = (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D*)il2cpp_codegen_object_new(ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D_il2cpp_TypeInfo_var);
NullCheck(L_8);
ConstraintResult__ctor_mF62A6C1933476D4EB06B672F93AFB06EDE2C3E63(L_8, __this, L_5, L_7, NULL);
V_2 = L_8;
goto IL_0037;
}
IL_0037:
{
ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* L_9 = V_2;
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TestDelegate_Invoke_m77F509475603AFBEFB56413D6F4D186208D07AB8_inline (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method)
{
typedef void (*FunctionPointerType) (TestDelegate_t36ED9FB74D4FBAD32B0B54A915A13F00913C8A89* __this, const RuntimeMethod* method);
((FunctionPointerType)__this->___invoke_impl_1)(__this, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConstraintResult_get_Status_mAEE12663BC9208C46E3A4F58F3D9F53C2B5361E1_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CStatusU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PrefixConstraint_set_DescriptionPrefix_mBBD7D65FDC6A88B9404516F5E8FDA974A11CCC6F_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CDescriptionPrefixU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CDescriptionPrefixU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* PrefixConstraint_get_BaseConstraint_m18115C46D65BA3AC65B2C0FED098CF8EFDDFFFB1_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CBaseConstraintU3Ek__BackingField_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConstraintResult_set_Status_m76C630530199E02CCBC93BB748D8EB5F85F444CB_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CStatusU3Ek__BackingField_2 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CollectionContainsConstraint_set_Expected_mFB45EC4D54995420CA5C994D70690A73F27FDBC7_inline (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CExpectedU3Ek__BackingField_5 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CExpectedU3Ek__BackingField_5), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CollectionContainsConstraint_get_Expected_mA6F53F8B495B4EA30CEF8BC70F5301F308C2DBF7_inline (CollectionContainsConstraint_t898F5C5F36FF675DB7B9E11030AD19D0DD827DF0* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CExpectedU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OrderingStep_get_Direction_m1826DB60E52B17C09D6034B6C6E25611E4FF2F9C_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->___U3CDirectionU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_Direction_m8B117F56733B7CFED1769A3EB3F1B51D1464852C_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->___U3CDirectionU3Ek__BackingField_1 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* OrderingStep_get_ComparerName_m5C6C54BD55587837E34BF10446C99494EC195E1D_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CComparerNameU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_Comparer_mA788E45DD94E9302E455686AE00DE2E9E56ECEAD_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* ___value0, const RuntimeMethod* method)
{
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_0 = ___value0;
__this->___U3CComparerU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CComparerU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_ComparerName_mE99C21A0DDDAEE2CCF1FB61120EBCD4D5C29F15B_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CComparerNameU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CComparerNameU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* OrderingStep_get_PropertyName_m023FEF4B18DFB653685468ED6E1897AA147771FB_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CPropertyNameU3Ek__BackingField_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OrderingStep_set_PropertyName_mC92FC43DC299CBE9D9B4579077DCF6B5E3415F7D_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->___U3CPropertyNameU3Ek__BackingField_0 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CPropertyNameU3Ek__BackingField_0), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* OrderingStep_get_Comparer_mBB95FA3DACD25E0CD86EAE342F551717B7350F82_inline (OrderingStep_tA98E96BEB808FF5B4AE979BAD9AF787DF14789BD* __this, const RuntimeMethod* method)
{
{
ComparisonAdapter_t22F662FB6FAF3A445937D637A463FE7FC71FB61D* L_0 = __this->___U3CComparerU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Constraint_set_Arguments_m20BB02429362F1D7322001837C9751C4C8B772EC_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___value0, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___value0;
__this->___U3CArgumentsU3Ek__BackingField_2 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CArgumentsU3Ek__BackingField_2), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* Constraint_get_Builder_m80D073314347AF33DBF2568CAF44A3062EF323B6_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = __this->___U3CBuilderU3Ek__BackingField_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Constraint_get_Arguments_m12EFDC7A3C27A58EFA504BB6DDF932611001BECF_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, const RuntimeMethod* method)
{
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = __this->___U3CArgumentsU3Ek__BackingField_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->____stringLength_4;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Constraint_set_Builder_mFFC682286FD5B64F84D09B54FD1E85F4BD89C780_inline (Constraint_tBADED087916F99AEFC85D32AE1A2C6619DD05D09* __this, ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* ___value0, const RuntimeMethod* method)
{
{
ConstraintBuilder_t0C1E1C0BDEF7BBDA3CE98DE9358686EE8D3CDFA8* L_0 = ___value0;
__this->___U3CBuilderU3Ek__BackingField_3 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBuilderU3Ek__BackingField_3), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EqualConstraint_set_ClipStrings_m5C6287BE6C6215869F403E8BBDE74FE0AA4E918A_inline (EqualConstraint_t5573C255C6EA473B0F938D3FF1AC4D61D9EAE5B7* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CClipStringsU3Ek__BackingField_7 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NUnitEqualityComparer_set_WithSameOffset_m8D1EE77C5254CF6379ACE66C6320AADC5AC4D966_inline (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->___U3CWithSameOffsetU3Ek__BackingField_5 = L_0;
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConstraintResult_set_ActualValue_m451F15612B5A16C44F559B8EE061B88F2B210016_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CActualValueU3Ek__BackingField_1 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CActualValueU3Ek__BackingField_1), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConstraintResult_get_ActualValue_mAFE1ACB7636F773FED41AFAC2AEF9CDF410ECA95_inline (ConstraintResult_t0FBADFA138EF306E1801EBA6D6DDF735560FB52D* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->___U3CActualValueU3Ek__BackingField_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MsgUtils_set_DefaultValueFormatter_mA2259E77F04F1E9E859AA52CF805FFD0B9FA1170_inline (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_0 = ___value0;
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___U3CDefaultValueFormatterU3Ek__BackingField_10 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___U3CDefaultValueFormatterU3Ek__BackingField_10), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* MsgUtils_get_DefaultValueFormatter_mC953FE835D165642006E0F7497A39D244EAD59E4_inline (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var);
ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* L_0 = ((MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_StaticFields*)il2cpp_codegen_static_fields_for(MsgUtils_t8147BC1A74D2CBFD7638C0B41C15578144FB928C_il2cpp_TypeInfo_var))->___U3CDefaultValueFormatterU3Ek__BackingField_10;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ValueFormatterFactory_Invoke_m3530258204507AF8438A29DCC848B912D2CF753A_inline (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method)
{
typedef ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* (*FunctionPointerType) (ValueFormatterFactory_t51FAB223E83477D09F2413C26FFBB6A3FA17B6AF* __this, ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* ___next0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___next0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ValueFormatter_Invoke_mDACAF181B4BC0359B4DA909CBCA4C9CCE75B1149_inline (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method)
{
typedef String_t* (*FunctionPointerType) (ValueFormatter_tAC55A440EB0D63AFFE07EF273786DC3B23DD77E6* __this, RuntimeObject* ___val0, const RuntimeMethod* method);
return ((FunctionPointerType)__this->___invoke_impl_1)(__this, ___val0, reinterpret_cast<RuntimeMethod*>(__this->___method_3));
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsNaN_m752DA1554CE1712F292DAC4AEC30869AD7234E18_inline (double ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___d0;
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
int64_t L_1;
L_1 = BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline(L_0, NULL);
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) > ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Double_IsInfinity_mFA158CA8247818AE2FEB5B11158A354CA5B4FCC5_inline (double ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
double L_0 = ___d0;
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
int64_t L_1;
L_1 = BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline(L_0, NULL);
return (bool)((((int64_t)((int64_t)(L_1&((int64_t)(std::numeric_limits<int64_t>::max)())))) == ((int64_t)((int64_t)9218868437227405312LL)))? 1 : 0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_m684B090AA2F895FD91821CA8684CBC11D784E4DD_inline (float ___f0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___f0;
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = BitConverter_SingleToInt32Bits_mA1902D40966CA4C89A8974B10E5680A06E88566B_inline(L_0, NULL);
return (bool)((((int32_t)((int32_t)(L_1&((int32_t)2147483647LL)))) > ((int32_t)((int32_t)2139095040)))? 1 : 0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsInfinity_m500DB7A91ADC75BE691663649FCA28485FA720AB_inline (float ___f0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___f0;
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
int32_t L_1;
L_1 = BitConverter_SingleToInt32Bits_mA1902D40966CA4C89A8974B10E5680A06E88566B_inline(L_0, NULL);
return (bool)((((int32_t)((int32_t)(L_1&((int32_t)2147483647LL)))) == ((int32_t)((int32_t)2139095040)))? 1 : 0);
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F Math_Abs_m92EB8C43121E759A8C6F1AB3BC1539419E8848A2_inline (Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_runtime_class_init_inline(Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F_il2cpp_TypeInfo_var);
Decimal_tDA6C877282B2D789CF97C0949661CC11D643969F L_0;
L_0 = Decimal_Abs_m864469D9E20222B2896AF7B001BDEC87EC46535F((&___value0), NULL);
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool NUnitEqualityComparer_get_WithSameOffset_m033A4D8CB57EEBD8E366645F36EF110A158CE703_inline (NUnitEqualityComparer_tE69BAAEE478896CEAAE513EA33F8531F6F209746* __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->___U3CWithSameOffsetU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Key_m09845C00732E530E6FCB9042079E90D3912215FE_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____key_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* DictionaryEntry_get_Value_m75FD18FE968AE131F28AA2CB0DF4895EBA39075E_inline (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = __this->____value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void PrefixConstraint_set_BaseConstraint_mAACC8E0FBDC69E98183BF056BF37858AC2484B0C_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, RuntimeObject* ___value0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___value0;
__this->___U3CBaseConstraintU3Ek__BackingField_4 = L_0;
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CBaseConstraintU3Ek__BackingField_4), (void*)L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* PrefixConstraint_get_DescriptionPrefix_mE7FF5F0A9A0A37B1374634559303EBAE0AB9DE8D_inline (PrefixConstraint_t8EF60315AAD9D11161E7E4541AA9EF389D1ECD04* __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->___U3CDescriptionPrefixU3Ek__BackingField_5;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Enumerator_get_Current_m6330F15D18EE4F547C05DF9BF83C5EB710376027_gshared_inline (Enumerator_t9473BAB568A27E2339D48C1F91319E0F6D244D7A* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->____current_3;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_2;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___item0, const RuntimeMethod* method)
{
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
int32_t L_7 = V_1;
RuntimeObject* L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
return;
}
IL_0034:
{
RuntimeObject* L_9 = ___item0;
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Stack_1_get_Count_mD08AE71D49787D30DDD9D484BCD323D646744D2E_gshared_inline (Stack_1_tAD790A47551563636908E21E4F08C54C0C323EB5* __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->____size_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___key_0;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->___value_1;
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m8DDAFA7A565FBEEB8C312BF1E890AB978D3760AE_gshared_inline (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ___item0, const RuntimeMethod* method)
{
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* V_0 = NULL;
int32_t V_1 = 0;
{
int32_t L_0 = (int32_t)__this->____version_3;
__this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_1 = (KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)__this->____items_1;
V_0 = L_1;
int32_t L_2 = (int32_t)__this->____size_2;
V_1 = L_2;
int32_t L_3 = V_1;
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_4 = V_0;
NullCheck(L_4);
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
{
goto IL_0034;
}
}
{
int32_t L_5 = V_1;
__this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_6 = V_0;
int32_t L_7 = V_1;
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_8 = ___item0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)L_8);
return;
}
IL_0034:
{
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_9 = ___item0;
(( void (*) (List_1_t8A1639802238DEF3222B6CBBC0DEF0B4B5F350EB*, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t BitConverter_DoubleToInt64Bits_m45D911F884F3B09BF39C02044EDC9BDA8084C80B_inline (double ___value0, const RuntimeMethod* method)
{
{
int64_t L_0 = *((int64_t*)((uintptr_t)(&___value0)));
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mA1902D40966CA4C89A8974B10E5680A06E88566B_inline (float ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = *((int32_t*)((uintptr_t)(&___value0)));
return L_0;
}
}