Added some classes from the public API of Microsoft.JScript.
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / RegExpObject.cs
1 //
2 // RegExpObject.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren
5 //
6 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
7 //
8
9 namespace Microsoft.JScript
10 {
11         using System;
12
13         public class RegExpObject : JSObject
14         {
15                 public override string ToString ()
16                 {
17                         throw new NotImplementedException ();
18                 }
19
20                 public string Source {
21                         get { throw new NotImplementedException (); }
22                 }
23
24                 public bool ignoreCase {
25                         get { throw new NotImplementedException (); }
26                 }
27
28                 public bool global {
29                         get { throw new NotImplementedException (); }
30                 }
31                 
32                 public bool multiline {
33                         get { throw new NotImplementedException (); }
34                 }
35
36                 public Object lastIndex {
37                         get { throw new NotImplementedException (); }
38                         set { throw new NotImplementedException (); }
39                 }
40         }
41 }