forked from PureKrome/EcmaScript.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIIdEnumerable.cs
More file actions
27 lines (23 loc) · 836 Bytes
/
Copy pathIIdEnumerable.cs
File metadata and controls
27 lines (23 loc) · 836 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
//------------------------------------------------------------------------------
// <license file="IdEnumerable.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>
/// Summary description for IdEnumerable.
/// </summary>
internal interface IIdEnumerable
{
IdEnumeration GetEnumeration (Context cx, bool enumValues);
}
}