-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWeakSet.cs
More file actions
32 lines (29 loc) · 819 Bytes
/
WeakSet.cs
File metadata and controls
32 lines (29 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//TODO! Disable missing XML comments.
#pragma warning disable CS1591
using CSharpToJavaScript.Utils;
namespace CSharpToJavaScript.APIs.JS.Ecma;
//https://262.ecma-international.org/14.0/#sec-weakset-objects
[To(ToAttribute.Default)]
public partial class WeakSet : WeakSetPrototype
{
[To(ToAttribute.FirstCharToLowerCase)]
public static WeakSetPrototype Prototype { get; } = new();
public WeakSet(Array? iterable = default) { }
}
[To(ToAttribute.FirstCharToLowerCase)]
public class WeakSetPrototype : FunctionPrototype
{
public WeakSetPrototype() { }
public WeakSet Add(dynamic value)
{
throw new System.NotImplementedException();
}
public bool Delete(dynamic value)
{
throw new System.NotImplementedException();
}
public bool Has(dynamic value)
{
throw new System.NotImplementedException();
}
}