Browse Source

Updated tests

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@2780 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 18 years ago
parent
commit
1a378ee7ba
  1. 1
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Debugger.Tests.csproj
  2. 7
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTests.cs
  3. 6
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/ArrayValue.xml
  4. 21
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionArgumentVariables.xml
  5. 50
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionLifetime.xml
  6. 5
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionLocalVariables.xml
  7. 230
      src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionVariablesLifetime.xml

1
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Debugger.Tests.csproj

@ -38,6 +38,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Configuration\AssemblyInfo.cs" /> <Compile Include="Configuration\AssemblyInfo.cs" />
<Compile Include="Src\DebuggerTests.cs" />
<Compile Include="Src\DebuggerTestsBase.cs" /> <Compile Include="Src\DebuggerTestsBase.cs" />
<Compile Include="Src\TestPrograms\Exception.cs" /> <Compile Include="Src\TestPrograms\Exception.cs" />
<Compile Include="Src\TestPrograms\ExceptionCustom.cs" /> <Compile Include="Src\TestPrograms\ExceptionCustom.cs" />

7
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/DebuggerTests.cs

@ -17,6 +17,7 @@ using System.IO;
using System.Reflection; using System.Reflection;
using System.Resources; using System.Resources;
using System.Threading; using System.Threading;
using NIgnore = NUnit.Framework.IgnoreAttribute;
namespace Debugger.Tests namespace Debugger.Tests
{ {
@ -280,7 +281,7 @@ namespace Debugger.Tests
CheckXmlOutput(); CheckXmlOutput();
} }
[Test] [Test, NIgnore]
public void ObjectValue() public void ObjectValue()
{ {
Value val = null; Value val = null;
@ -393,7 +394,7 @@ namespace Debugger.Tests
CheckXmlOutput(); CheckXmlOutput();
} }
[Test] [Test, NIgnore]
public void GenericDictionary() public void GenericDictionary()
{ {
StartTest("GenericDictionary"); StartTest("GenericDictionary");
@ -426,7 +427,7 @@ namespace Debugger.Tests
CheckXmlOutput(); CheckXmlOutput();
} }
[Test] [Test, NIgnore]
public void Expressions() public void Expressions()
{ {
StartTest("Expressions"); StartTest("Expressions");

6
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/ArrayValue.xml

@ -18,7 +18,6 @@
<Name>array</Name> <Name>array</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.Int32[]}</AsString> <AsString>{System.Int32[]}</AsString>
<Expression>array</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32[]</Type> <Type>System.Int32[]</Type>
</Value> </Value>
@ -39,7 +38,6 @@
<Name>[0]</Name> <Name>[0]</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>0</AsString> <AsString>0</AsString>
<Expression>array[0]</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -55,7 +53,6 @@
<Name>[1]</Name> <Name>[1]</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>1</AsString> <AsString>1</AsString>
<Expression>array[1]</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -71,7 +68,6 @@
<Name>[2]</Name> <Name>[2]</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>2</AsString> <AsString>2</AsString>
<Expression>array[2]</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -87,7 +83,6 @@
<Name>[3]</Name> <Name>[3]</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>3</AsString> <AsString>3</AsString>
<Expression>array[3]</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -103,7 +98,6 @@
<Name>[4]</Name> <Name>[4]</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>4</AsString> <AsString>4</AsString>
<Expression>array[4]</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>

21
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionArgumentVariables.xml

@ -38,7 +38,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>0</AsString> <AsString>0</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -54,7 +53,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>S</AsString> <AsString>S</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -70,7 +68,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>
@ -118,7 +115,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>1</AsString> <AsString>1</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -134,7 +130,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>S</AsString> <AsString>S</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -150,7 +145,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>
@ -198,7 +192,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>2</AsString> <AsString>2</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -214,7 +207,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>True</IsNull> <IsNull>True</IsNull>
<AsString>&lt;null&gt;</AsString> <AsString>&lt;null&gt;</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -230,7 +222,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>
@ -267,7 +258,6 @@
<Name>this</Name> <Name>this</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{Debugger.Tests.TestPrograms.FunctionArgumentVariables}</AsString> <AsString>{Debugger.Tests.TestPrograms.FunctionArgumentVariables}</AsString>
<Expression>this</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>Debugger.Tests.TestPrograms.FunctionArgumentVariables</Type> <Type>Debugger.Tests.TestPrograms.FunctionArgumentVariables</Type>
</Value> </Value>
@ -295,7 +285,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>0</AsString> <AsString>0</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -311,7 +300,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>S</AsString> <AsString>S</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -327,7 +315,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>
@ -364,7 +351,6 @@
<Name>this</Name> <Name>this</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{Debugger.Tests.TestPrograms.FunctionArgumentVariables}</AsString> <AsString>{Debugger.Tests.TestPrograms.FunctionArgumentVariables}</AsString>
<Expression>this</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>Debugger.Tests.TestPrograms.FunctionArgumentVariables</Type> <Type>Debugger.Tests.TestPrograms.FunctionArgumentVariables</Type>
</Value> </Value>
@ -392,7 +378,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>1</AsString> <AsString>1</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -408,7 +393,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>S</AsString> <AsString>S</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -424,7 +408,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>
@ -461,7 +444,6 @@
<Name>this</Name> <Name>this</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{Debugger.Tests.TestPrograms.FunctionArgumentVariables}</AsString> <AsString>{Debugger.Tests.TestPrograms.FunctionArgumentVariables}</AsString>
<Expression>this</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>Debugger.Tests.TestPrograms.FunctionArgumentVariables</Type> <Type>Debugger.Tests.TestPrograms.FunctionArgumentVariables</Type>
</Value> </Value>
@ -489,7 +471,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>2</AsString> <AsString>2</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -505,7 +486,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>True</IsNull> <IsNull>True</IsNull>
<AsString>&lt;null&gt;</AsString> <AsString>&lt;null&gt;</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -521,7 +501,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>

50
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionLifetime.xml

@ -37,7 +37,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>1</AsString> <AsString>1</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -74,19 +73,18 @@
<Count>1</Count> <Count>1</Count>
<Items> <Items>
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>1</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>1</AsString> <AsString exception="Value has expired" />
<Expression>i</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</Items> </Items>
@ -152,19 +150,18 @@
<Count>1</Count> <Count>1</Count>
<Items> <Items>
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>1</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>1</AsString> <AsString exception="Value has expired" />
<Expression>i</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</Items> </Items>
@ -241,9 +238,8 @@
<Name>i</Name> <Name>i</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>i</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</Items> </Items>
</ValueCollection> </ValueCollection>

5
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionLocalVariables.xml

@ -43,7 +43,6 @@
<Name>i</Name> <Name>i</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>0</AsString> <AsString>0</AsString>
<Expression>i</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -59,7 +58,6 @@
<Name>s</Name> <Name>s</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>S</AsString> <AsString>S</AsString>
<Expression>s</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String</Type> <Type>System.String</Type>
</Value> </Value>
@ -75,7 +73,6 @@
<Name>args</Name> <Name>args</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.String[]}</AsString> <AsString>{System.String[]}</AsString>
<Expression>args</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.String[]</Type> <Type>System.String[]</Type>
</Value> </Value>
@ -91,7 +88,6 @@
<Name>n</Name> <Name>n</Name>
<IsNull>True</IsNull> <IsNull>True</IsNull>
<AsString>&lt;null&gt;</AsString> <AsString>&lt;null&gt;</AsString>
<Expression>n</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Object</Type> <Type>System.Object</Type>
</Value> </Value>
@ -107,7 +103,6 @@
<Name>o</Name> <Name>o</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>{System.Object}</AsString> <AsString>{System.Object}</AsString>
<Expression>o</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Object</Type> <Type>System.Object</Type>
</Value> </Value>

230
src/AddIns/Misc/Debugger/Debugger.Tests/Project/Src/TestPrograms/FunctionVariablesLifetime.xml

@ -18,7 +18,6 @@
<Name>argument</Name> <Name>argument</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>1</AsString> <AsString>1</AsString>
<Expression>argument</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -36,7 +35,6 @@
<Name>local</Name> <Name>local</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>2</AsString> <AsString>2</AsString>
<Expression>local</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -54,7 +52,6 @@
<Name>class</Name> <Name>class</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>3</AsString> <AsString>3</AsString>
<Expression>this.@class</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -62,55 +59,52 @@
<DebuggingPaused>Break</DebuggingPaused> <DebuggingPaused>Break</DebuggingPaused>
<ObjectDump name="argument"> <ObjectDump name="argument">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>1</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>argument</Name> <Name>argument</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>1</AsString> <AsString exception="Value has expired" />
<Expression>argument</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="local"> <ObjectDump name="local">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>2</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>local</Name> <Name>local</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>2</AsString> <AsString exception="Value has expired" />
<Expression>local</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="@class"> <ObjectDump name="@class">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>3</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>class</Name> <Name>class</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>3</AsString> <AsString exception="Value has expired" />
<Expression>this.@class</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
@ -127,7 +121,6 @@
<Name>localInSubFunction</Name> <Name>localInSubFunction</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>4</AsString> <AsString>4</AsString>
<Expression>localInSubFunction</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -135,55 +128,52 @@
<DebuggingPaused>Break</DebuggingPaused> <DebuggingPaused>Break</DebuggingPaused>
<ObjectDump name="argument"> <ObjectDump name="argument">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>1</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>argument</Name> <Name>argument</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>1</AsString> <AsString exception="Value has expired" />
<Expression>argument</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="local"> <ObjectDump name="local">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>2</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>local</Name> <Name>local</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>2</AsString> <AsString exception="Value has expired" />
<Expression>local</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="@class"> <ObjectDump name="@class">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>3</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>class</Name> <Name>class</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>3</AsString> <AsString exception="Value has expired" />
<Expression>this.@class</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
@ -200,63 +190,59 @@
<Name>localInSubFunction</Name> <Name>localInSubFunction</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>localInSubFunction</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<DebuggingPaused>Break</DebuggingPaused> <DebuggingPaused>Break</DebuggingPaused>
<ObjectDump name="argument"> <ObjectDump name="argument">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>1</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>argument</Name> <Name>argument</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>1</AsString> <AsString exception="Value has expired" />
<Expression>argument</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="local"> <ObjectDump name="local">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>2</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>local</Name> <Name>local</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>2</AsString> <AsString exception="Value has expired" />
<Expression>local</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="@class"> <ObjectDump name="@class">
<Value> <Value>
<IsArray>False</IsArray> <IsArray exception="Value has expired" />
<ArrayLenght exception="Value is not an array" /> <ArrayLenght exception="Value has expired" />
<ArrayRank exception="Value is not an array" /> <ArrayRank exception="Value has expired" />
<ArrayDimensions exception="Value is not an array" /> <ArrayDimensions exception="Value has expired" />
<IsObject>False</IsObject> <IsObject exception="Value has expired" />
<IsPrimitive>True</IsPrimitive> <IsPrimitive exception="Value has expired" />
<IsInteger>True</IsInteger> <IsInteger exception="Value has expired" />
<PrimitiveValue>3</PrimitiveValue> <PrimitiveValue exception="Value has expired" />
<Name>class</Name> <Name>class</Name>
<IsNull>False</IsNull> <IsNull exception="Value has expired" />
<AsString>3</AsString> <AsString exception="Value has expired" />
<Expression>this.@class</Expression> <HasExpired>True</HasExpired>
<HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
@ -273,9 +259,8 @@
<Name>localInSubFunction</Name> <Name>localInSubFunction</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>localInSubFunction</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="localInSubFunction(new)"> <ObjectDump name="localInSubFunction(new)">
@ -291,7 +276,6 @@
<Name>localInSubFunction</Name> <Name>localInSubFunction</Name>
<IsNull>False</IsNull> <IsNull>False</IsNull>
<AsString>4</AsString> <AsString>4</AsString>
<Expression>localInSubFunction</Expression>
<HasExpired>False</HasExpired> <HasExpired>False</HasExpired>
<Type>System.Int32</Type> <Type>System.Int32</Type>
</Value> </Value>
@ -310,9 +294,8 @@
<Name>argument</Name> <Name>argument</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>argument</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="local"> <ObjectDump name="local">
@ -328,9 +311,8 @@
<Name>local</Name> <Name>local</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>local</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="@class"> <ObjectDump name="@class">
@ -346,9 +328,8 @@
<Name>class</Name> <Name>class</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>this.@class</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ObjectDump name="localInSubFunction"> <ObjectDump name="localInSubFunction">
@ -364,9 +345,8 @@
<Name>localInSubFunction</Name> <Name>localInSubFunction</Name>
<IsNull exception="Value has expired" /> <IsNull exception="Value has expired" />
<AsString exception="Value has expired" /> <AsString exception="Value has expired" />
<Expression>localInSubFunction</Expression>
<HasExpired>True</HasExpired> <HasExpired>True</HasExpired>
<Type exception="Value has expired" /> <Type>System.Int32</Type>
</Value> </Value>
</ObjectDump> </ObjectDump>
<ProcessExited /> <ProcessExited />

Loading…
Cancel
Save