Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ArrayWrapper.cs « Microsoft.JScript « Microsoft.JScript « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e295eb21ff3f88309479091f97c871cf29d66c42 (plain)
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
//
// ArrayWrapper.cs:
//
// Author:
//	Cesar Lopez Nataren (cesar@ciencias.unam.mx)
//
// (C) 2003, Cesar Lopez Nataren
//

namespace Microsoft.JScript.Tmp
{
	using System;

	public class ArrayWrapper : ArrayObject
	{
		public new Type GetType ()
		{
			throw new NotImplementedException ();
		}

		
		public override object length {
			get { throw new NotImplementedException (); }
			set {}
		}


		public int Compare (object x, object y)
		{
			throw new NotImplementedException ();
		}
	}
}