// // InstanceOf.cs: // // Author: // Cesar Lopez Nataren (cesar@ciencias.unam.mx) // // (C) 2003, Cesar Lopez Nataren // namespace Microsoft.JScript.Tmp { using System; public sealed class InstanceOf : BinaryOp { public static bool JScriptInstanceOf (object v1, object v2) { throw new NotImplementedException (); } internal override object Visit (Visitor v, object o) { throw new NotImplementedException (); } } }