2003-07-27 Cesar Lopez Nataren <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / ArrayPrototype.cs
1 //
2 // ArrayPrototype.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 namespace Microsoft.JScript.Tmp
11 {
12         using System;
13         using Microsoft.JScript.Vsa;
14
15         public class ArrayPrototype : ArrayObject
16         {
17                 public static ArrayObject concat (object thisObj, VsaEngine engine,
18                                                   params object [] args)
19                 {
20                         throw new NotImplementedException ();
21                 }
22
23
24                 public static ArrayConstructor constructor {
25                         get { throw new NotImplementedException (); }
26                 }
27
28
29                 public static string join (object thisObj, object separator)
30                 {
31                         throw new NotImplementedException ();
32                 }
33
34
35                 public static object pop (object thisObj)
36                 {
37                         throw new NotImplementedException ();
38                 }
39
40
41                 public static long push (object thisObj, params object [] args)
42                 {
43                         throw new NotImplementedException ();
44                 }
45
46
47                 public static object reverse (object thisObj)
48                 {
49                         throw new NotImplementedException ();
50                 }
51
52
53                 public static object shift (object thisObj)
54                 {
55                         throw new NotImplementedException ();
56                 }
57
58
59                 public static ArrayObject slice (object thisObj, VsaEngine engine,
60                                                  double start, object end)
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65
66                 public static object sort (object thisObj, object function)
67                 {
68                         throw new NotImplementedException ();
69                 }
70
71
72                 public static ArrayObject splice (object thisObj, VsaEngine engine,
73                                                   double start, double deleteCnt, 
74                                                   params object [] args)
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79
80                 public static string toLocaleString (object thisObj)
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85
86                 public static string ToString (object thisObj)
87                 {
88                         throw new NotImplementedException ();
89                 }
90
91
92                 public static object unshift (object thisObj, params object [] args)
93                 {
94                         throw new NotImplementedException ();
95                 }
96         }
97 }