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 0c4f8bf commit 6ae7a94Copy full SHA for 6ae7a94
dotnet/src/webdriver/BiDi/Modules/Script/LocalValue.cs
@@ -148,7 +148,7 @@ public abstract record PrimitiveProtocolLocalValue : LocalValue;
148
149
public record NumberLocalValue(double Value) : PrimitiveProtocolLocalValue
150
{
151
- public static implicit operator NumberLocalValue(double n) => new NumberLocalValue(n);
+ public static explicit operator NumberLocalValue(double n) => new NumberLocalValue(n);
152
}
153
154
public record StringLocalValue(string Value) : PrimitiveProtocolLocalValue;
0 commit comments