2005-11-24 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / VariableStatement.cs
1 //
2 // VariableStatement.cs: The AST representation of a VariableStatement.
3 //
4 // Author:
5 //      Cesar Octavio Lopez Nataren
6 //
7 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System.Collections;
32 using System.Text;
33 using System;
34
35 namespace Microsoft.JScript {
36
37         internal class VariableStatement : AST, ICanModifyContext {
38
39                 internal ArrayList var_decls;
40
41                 internal VariableStatement (AST parent, Location location)
42                         : base (parent, location)
43                 {
44                         var_decls = new ArrayList ();
45                 }
46
47
48                 internal void Add (VariableDeclaration varDecl)
49                 {
50                         var_decls.Add (varDecl);
51                 }
52
53
54                 public override string ToString ()
55                 {
56                         StringBuilder sb = new StringBuilder ();
57
58                         foreach (VariableDeclaration var_decl in var_decls)
59                                 sb.Append (var_decl.ToString () + " ");
60
61                         return sb.ToString ();
62                 }
63
64                 void ICanModifyContext.EmitDecls (EmitContext ec)
65                 {
66                         foreach (VariableDeclaration var_decl in var_decls)
67                                 ((ICanModifyContext) var_decl).EmitDecls (ec);
68                 }
69
70                 internal override void Emit (EmitContext ec)
71                 {
72                         int i, size = var_decls.Count;
73
74                         for (i = 0; i < size; i++)
75                                 ((VariableDeclaration) var_decls [i]).Emit (ec);
76                 }
77
78                 void ICanModifyContext.PopulateContext (Environment env, string ns)
79                 {
80                         foreach (VariableDeclaration var_decl in var_decls)
81                                 ((ICanModifyContext) var_decl).PopulateContext (env, ns);
82                 }
83
84                 internal override bool Resolve (Environment env)
85                 {
86                         VariableDeclaration tmp_decl;
87                         int n = var_decls.Count;
88                         bool r = true;
89
90                         for (int i = 0; i < n; i++) {
91                                 tmp_decl = (VariableDeclaration) var_decls [i];
92                                 r &= tmp_decl.Resolve (env);
93                         }
94                         return r;
95                 }
96         }
97 }