-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavascriptFunction.cs
More file actions
46 lines (44 loc) · 1.04 KB
/
JavascriptFunction.cs
File metadata and controls
46 lines (44 loc) · 1.04 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections.Generic;
using System.Text;
namespace TestConsole
{
class JavascriptFunction
{
public object arguments { get; set; }
public object arity { get; set; }
public object caller { get; set; }
public object displayName { get; set; }
public object length { get; set; }
public object prototype { get; set; }
public object name { get; set; }
public object call(object thisArgs, object args1)
{
return new object();
}
public object apply()
{
return new object();
}
public object bind()
{
return new object();
}
public object call()
{
return new object();
}
public object isGenerator()
{
return new object();
}
public object toSource()
{
return new object();
}
public object toString()
{
return new object();
}
}
}