Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sdks/wasm/tests/debugger/debugger-test2.cs')
-rw-r--r--sdks/wasm/tests/debugger/debugger-test2.cs85
1 files changed, 46 insertions, 39 deletions
diff --git a/sdks/wasm/tests/debugger/debugger-test2.cs b/sdks/wasm/tests/debugger/debugger-test2.cs
index 907cc52e336..7275bf4a2f1 100644
--- a/sdks/wasm/tests/debugger/debugger-test2.cs
+++ b/sdks/wasm/tests/debugger/debugger-test2.cs
@@ -1,44 +1,51 @@
-using System;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
-public class Misc { //Only append content to this class as the test suite depends on line info
- public static int CreateObject (int foo, int bar) {
- var f = new Fancy () {
- Foo = foo,
- Bar = bar,
- };
+using System;
- Console.WriteLine ($"{f.Foo} {f.Bar}");
- return f.Foo + f.Bar;
- }
+public class Misc
+{ //Only append content to this class as the test suite depends on line info
+ public static int CreateObject(int foo, int bar)
+ {
+ var f = new Fancy()
+ {
+ Foo = foo,
+ Bar = bar,
+ };
+
+ Console.WriteLine($"{f.Foo} {f.Bar}");
+ return f.Foo + f.Bar;
+ }
}
-public class Fancy {
- public int Foo;
- public int Bar { get ; set; }
- public static void Types () {
- double dPI = System.Math.PI;
- float fPI = (float)System.Math.PI;
-
- int iMax = int.MaxValue;
- int iMin = int.MinValue;
- uint uiMax = uint.MaxValue;
- uint uiMin = uint.MinValue;
-
- long l = uiMax * (long)2;
- long lMax = long.MaxValue; // cannot be represented as double
- long lMin = long.MinValue; // cannot be represented as double
-
- sbyte sbMax = sbyte.MaxValue;
- sbyte sbMin = sbyte.MinValue;
- byte bMax = byte.MaxValue;
- byte bMin = byte.MinValue;
-
- short sMax = short.MaxValue;
- short sMin = short.MinValue;
- ushort usMin = ushort.MinValue;
- ushort usMax = ushort.MaxValue;
-
- var d = usMin + usMax;
- }
+public class Fancy
+{
+ public int Foo;
+ public int Bar { get; set; }
+ public static void Types()
+ {
+ double dPI = System.Math.PI;
+ float fPI = (float)System.Math.PI;
+
+ int iMax = int.MaxValue;
+ int iMin = int.MinValue;
+ uint uiMax = uint.MaxValue;
+ uint uiMin = uint.MinValue;
+
+ long l = uiMax * (long)2;
+ long lMax = long.MaxValue; // cannot be represented as double
+ long lMin = long.MinValue; // cannot be represented as double
+
+ sbyte sbMax = sbyte.MaxValue;
+ sbyte sbMin = sbyte.MinValue;
+ byte bMax = byte.MaxValue;
+ byte bMin = byte.MinValue;
+
+ short sMax = short.MaxValue;
+ short sMin = short.MinValue;
+ ushort usMin = ushort.MinValue;
+ ushort usMax = ushort.MaxValue;
+
+ var d = usMin + usMax;
+ }
}
-