forked from PureKrome/EcmaScript.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIIdFunctionCall.cs
More file actions
34 lines (28 loc) · 1.09 KB
/
Copy pathIIdFunctionCall.cs
File metadata and controls
34 lines (28 loc) · 1.09 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
//------------------------------------------------------------------------------
// <license file="IdFunctionCall.cs">
//
// The use and distribution terms for this software are contained in the file
// named 'LICENSE', which can be found in the resources directory of this
// distribution.
//
// By using this software in any fashion, you are agreeing to be bound by the
// terms of this license.
//
// </license>
//------------------------------------------------------------------------------
using System;
namespace EcmaScript.NET
{
/// <summary>
/// Master for id-based functions that knows their properties and how to
/// execute them.
/// </summary>
public interface IIdFunctionCall
{
/// <summary>
/// 'thisObj' will be null if invoked as constructor, in which case
/// instance of Scriptable should be returned
/// </summary>
object ExecIdCall (IdFunctionObject f, Context cx, IScriptable scope, IScriptable thisObj, object [] args);
}
}