~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/Mono.Cecil/Cecil.Decompiler/Cecil.Decompiler.Steps/TypeOfStep.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-07-05 13:00:05 UTC
  • mfrom: (1.2.8 upstream) (1.3.9 experimental)
  • Revision ID: james.westby@ubuntu.com-20100705130005-d6hp4k5gcn1xkj8c
Tags: 2.4+dfsg-1ubuntu1
* debian/patches/remove_support_for_moonlight.patch,
  debian/patches/dont_add_moonlight_to_core_addins.patch,
  debian/control:
  + Enable support for Moonlight
* debian/rules:
  + Ensure Moonlight addin isn't shipped in main MonoDevelop package by
    mistake

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#region license
 
2
//
 
3
//      (C) 2007 - 2008 Novell, Inc. http://www.novell.com
 
4
//      (C) 2007 - 2008 Jb Evain http://evain.net
 
5
//
 
6
// Permission is hereby granted, free of charge, to any person obtaining
 
7
// a copy of this software and associated documentation files (the
 
8
// "Software"), to deal in the Software without restriction, including
 
9
// without limitation the rights to use, copy, modify, merge, publish,
 
10
// distribute, sublicense, and/or sell copies of the Software, and to
 
11
// permit persons to whom the Software is furnished to do so, subject to
 
12
// the following conditions:
 
13
//
 
14
// The above copyright notice and this permission notice shall be
 
15
// included in all copies or substantial portions of the Software.
 
16
//
 
17
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 
18
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 
19
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 
20
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 
21
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 
22
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 
23
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
24
//
 
25
#endregion
 
26
 
 
27
using System;
 
28
 
 
29
using Mono.Cecil.Cil;
 
30
 
 
31
using Cecil.Decompiler.Ast;
 
32
 
 
33
namespace Cecil.Decompiler.Steps {
 
34
 
 
35
        class TypeOfStep : BaseCodeTransformer, IDecompilationStep {
 
36
 
 
37
                public static readonly IDecompilationStep Instance = new TypeOfStep ();
 
38
 
 
39
                public override ICodeNode VisitMethodInvocationExpression (MethodInvocationExpression node)
 
40
                {
 
41
                        var method_ref = node.Method as MethodReferenceExpression;
 
42
                        if (method_ref == null)
 
43
                                goto skip;
 
44
 
 
45
                        var method = method_ref.Method;
 
46
                        if (method.DeclaringType.FullName != "System.Type" || method.Name != "GetTypeFromHandle")
 
47
                                goto skip;
 
48
 
 
49
                        if (node.Arguments.Count != 1)
 
50
                                goto skip;
 
51
 
 
52
                        var type_ref = node.Arguments [0] as TypeReferenceExpression;
 
53
                        if (type_ref == null)
 
54
                                goto skip;
 
55
 
 
56
                        return new TypeOfExpression (type_ref.Type);
 
57
 
 
58
                skip:
 
59
                        return base.VisitMethodInvocationExpression (node);
 
60
                }
 
61
 
 
62
                public BlockStatement Process (DecompilationContext context, BlockStatement body)
 
63
                {
 
64
                        return (BlockStatement) VisitBlockStatement (body);
 
65
                }
 
66
        }
 
67
}