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

RegExpPrototype.cs « Microsoft.JScript « Microsoft.JScript « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3816d4abe608b3fed0b866aa86539a0e1fa0da63 (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
34
35
36
37
38
39
40
41
42
43
44
//
// RegExpPrototype.cs
//
// Author:
//	Cesar Lopez Nataren (cesar@ciencias.unam.mx)
//
// (C) 2003, Cesar Lopez Nataren
//

namespace Microsoft.JScript.Tmp
{
	using System;

	public class RegExpPrototype : JSObject
	{
		public static RegExpObject compile (object thisObj, object source, object flags)
		{
			throw new NotImplementedException ();
		}


		public static RegExpConstructor constructor {
			get { throw new NotImplementedException (); }
		}


		public static object exec (object thisObj, object input)
		{
			throw new NotImplementedException ();
		}


		public static bool test (object thisObj, object input)
		{
			throw new NotImplementedException ();
		}


		public static string toString (object thisObj)
		{
			throw new NotImplementedException ();
		}
	}
}