2003-11-03 cesar lopez nataren <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / InstanceOf.cs
1 //
2 // InstanceOf.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 using System;
11
12 namespace Microsoft.JScript.Tmp {
13
14         public sealed class InstanceOf : BinaryOp {
15
16                 public static bool JScriptInstanceOf (object v1, object v2)
17                 {
18                         throw new NotImplementedException ();
19                 }
20
21                 internal override bool Resolve (IdentificationTable context)
22                 {
23                         throw new NotImplementedException ();
24                 }
25         }
26 }