2005-08-17 Florian Gross <flgr@ccan.de>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / TypeOf.cs
1 //
2 // TypeOf.cs:
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
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
33 namespace Microsoft.JScript {
34
35         public sealed class Typeof : UnaryOp {
36
37                 internal Typeof ()
38                         : base (null, null)
39                 {
40                 }
41
42                 public static string JScriptTypeof (object value)
43                 {
44                         IConvertible ic = value as IConvertible;
45                         TypeCode tc = Convert.GetTypeCode (value, ic);
46
47                         if (Convert.IsNumberTypeCode (tc))
48                                 return "number";
49                         
50                         switch (tc) {
51                         case TypeCode.String:
52                                 return "string";
53
54                         case TypeCode.Object:
55                         case TypeCode.DBNull:
56                                 if (value is ScriptFunction || value is RegExpObject)
57                                         return "function";
58
59                                 return "object";
60
61                         case TypeCode.Empty:
62                                 return "undefined";
63
64                         case TypeCode.Boolean:
65                                 return "boolean";
66                                 
67                         default:
68                                 Console.WriteLine ("TypeOf, tc = {0}", tc);
69                                 break;
70                         }
71                         throw new NotImplementedException ();
72                 }
73
74                 internal override bool Resolve (IdentificationTable context)
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79                 internal override bool Resolve (IdentificationTable context, bool no_effect)
80                 {
81                         this.no_effect = no_effect;
82                         return Resolve (context);
83                 }
84
85                 internal override void Emit (EmitContext ec)
86                 {
87                         throw new NotImplementedException ();
88                 }
89         }
90 }