If did not miss something this will complete the Mirosoft.JScript public API. Now...
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / Plus.cs
1 //
2 // Plus.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
11 {
12         using System;
13
14         public sealed class Plus : BinaryOp
15         {
16                 public Plus ()
17                 {
18                         throw new NotImplementedException ();
19                 }
20
21
22                 public  object EvaluatePlus (object v1, object v2)
23                 {
24                         throw new NotImplementedException ();
25                 }
26
27
28                 public static object DoOp (object v1, object v2)
29                 {
30                         throw new NotImplementedException ();
31                 }
32
33
34                 public override object Visit (Visitor v, object arg)
35                 {
36                         throw new NotImplementedException ();
37                 }
38         }
39 }