We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bad4571 commit 187025eCopy full SHA for 187025e
YantraJS.Core.Tests/ClrObjects/DisposableTests.cs
@@ -80,6 +80,7 @@ public void FieldAccess()
80
JSValue guidTypeValue = ClrType.From(typeof(Guid));
81
c["guid"] = guidTypeValue;
82
string result = c.Eval("guid.empty.toString()").ToString();
83
+ Assert.AreEqual("00000000-0000-0000-0000-000000000000", result);
84
}
85
86
// [TestMethod]
YantraJS.Core/Core/Clr/ClrType.cs
@@ -19,6 +19,7 @@
19
using System.ComponentModel;
20
using YantraJS.Expressions;
21
using YantraJS.Generator;
22
+using YantraJS.Core.Core.Clr;
23
24
namespace YantraJS.Core.Clr
25
{
0 commit comments