2006-01-25 Cesar Lopez Nataren <cnataren@novell.com>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / ArrayLiteral.cs
1 //
2 // ArrayLiteral.cs:
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;
32 using System.Collections;
33 using System.Reflection;
34 using System.Reflection.Emit;
35
36 namespace Microsoft.JScript {
37
38         public class ArrayLiteral : AST, ICanLookupPrototype {
39
40                 internal ASTList elems;
41                 int skip_count;
42
43                 public ArrayLiteral (Context context, ASTList elems)
44                         : base (null, null)
45                 {
46                         this.elems = elems;
47                 }
48                 
49                 internal ArrayLiteral (Context context, ASTList elems, int skip_count, Location location)
50                         : this (context, elems)
51                 {
52                         this.skip_count = skip_count;
53                         this.location = location;
54                 }
55
56                 internal override bool Resolve (Environment env)
57                 {
58                          bool r = true;
59                          foreach (AST ast in elems.elems)
60                                  if (ast != null)
61                                          r &= ast.Resolve (env);
62                         return r;
63                 }
64
65                 bool ICanLookupPrototype.ResolveFieldAccess (AST ast)
66                 {
67                         if (ast is Identifier) {
68                                 Identifier name = (Identifier) ast;
69                                 Type prototype = typeof (StringPrototype);
70                                 MemberInfo [] members = prototype.GetMember (name.name.Value);
71                                 return members.Length > 0;
72                         } else
73                                 return false;
74                 }
75
76                 internal override void Emit (EmitContext ec)
77                 {
78                         int i = 0;
79                         ILGenerator ig = ec.ig;
80                         ArrayList exps = elems.elems;
81                         FieldInfo missing = null;
82                         if (skip_count != 0)
83                                 missing = typeof (Missing).GetField ("Value");
84                         ig.Emit (OpCodes.Ldc_I4, elems.Size);
85                         ig.Emit (OpCodes.Newarr, typeof (object));
86                         foreach (AST ast in exps) {
87                                 ig.Emit (OpCodes.Dup);
88                                 ig.Emit (OpCodes.Ldc_I4, i);
89                                 if (ast != null) {
90                                         ast.Emit (ec);
91                                         CodeGenerator.EmitBox (ig, ast);
92                                 } else 
93                                         ig.Emit (OpCodes.Ldsfld, missing);
94                                 ig.Emit (OpCodes.Stelem_Ref);
95                                 i++;
96                         }
97                         ig.Emit (OpCodes.Call, typeof (Globals).GetMethod ("ConstructArrayLiteral"));
98                 }
99         }
100 }