// // BlockScope.cs: // // Author: // Cesar Lopez Nataren (cesar@ciencias.unam.mx) // // (C) 2003, Cesar Lopez Nataren // namespace Microsoft.JScript { using System; public class BlockScope : ActivationObject { public BlockScope (ScriptObject parent, string name, int scopeId) { throw new NotImplementedException (); } } }