**** Merged from MCS ****
[mono-project.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / VariableStatement.cs
blob50413bd6d1284bbfd5204722fccf530916b0a2fb
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 //
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.
31 using System.Collections;
32 using System.Text;
33 using System;
35 namespace Microsoft.JScript {
37 public class VariableStatement : AST {
39 internal ArrayList var_decls;
41 internal VariableStatement (AST parent, int line_number)
43 this.parent = parent;
44 this.line_number = line_number;
45 var_decls = new ArrayList ();
49 internal void Add (VariableDeclaration varDecl)
51 var_decls.Add (varDecl);
55 public override string ToString ()
57 StringBuilder sb = new StringBuilder ();
59 foreach (VariableDeclaration var_decl in var_decls)
60 sb.Append (var_decl.ToString () + " ");
62 return sb.ToString ();
65 internal override void Emit (EmitContext ec)
67 int i, size = var_decls.Count;
69 for (i = 0; i < size; i++)
70 ((VariableDeclaration) var_decls [i]).Emit (ec);
73 internal override bool Resolve (IdentificationTable context)
75 VariableDeclaration tmp_decl;
76 int i, n = var_decls.Count;
77 bool r = true;
79 for (i = 0; i < n; i++) {
80 tmp_decl = (VariableDeclaration) var_decls [i];
81 r &= tmp_decl.Resolve (context);
83 return r;