6e12bc5266a99c18a102ba8e3fd6ce7795a66950
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / Package.cs
1 //
2 // Package.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren
5 //
6 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
7 //
8
9 using Microsoft.JScript.Vsa;
10 using System.Collections;
11 using System;
12
13 namespace Microsoft.JScript {
14
15         public class Package : AST {
16
17                 internal string Name;
18                 internal ArrayList Members;
19
20                 public static void JScriptPackage (string rootName, VsaEngine engine)
21                 {}
22
23                 internal override bool Resolve (IdentificationTable context)
24                 {
25                         throw new NotImplementedException ();
26                 }
27
28                 internal override void Emit (EmitContext ec)
29                 {
30                         throw new NotImplementedException ();
31                 }
32         }
33 }