~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/Mono.Debugging/Mono.Debugging.Evaluation/BaseTypeViewSource.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// 
2
2
// BaseTypeViewSource.cs
3
3
//  
4
 
// Author:
5
 
//       Lluis Sanchez Gual <lluis@novell.com>
 
4
// Authors: Lluis Sanchez Gual <lluis@novell.com>
 
5
//          Jeffrey Stedfast <jeff@xamarin.com>
6
6
// 
7
7
// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
 
8
// Copyright (c) 2012 Xamarin Inc. (http://www.xamarin.com)
8
9
// 
9
10
// Permission is hereby granted, free of charge, to any person obtaining a copy
10
11
// of this software and associated documentation files (the "Software"), to deal
56
57
                }
57
58
                
58
59
                #region IObjectValueSource implementation
 
60
 
59
61
                public ObjectValue[] GetChildren (ObjectPath path, int index, int count, EvaluationOptions options)
60
62
                {
61
63
                        EvaluationContext cctx = ctx.WithOptions (options);
62
64
                        return cctx.Adapter.GetObjectValueChildren (cctx, objectSource, type, obj, index, count, false);
63
65
                }
64
 
                
65
 
                
 
66
 
66
67
                public EvaluationResult SetValue (ObjectPath path, string value, EvaluationOptions options)
67
68
                {
68
69
                        throw new NotSupportedException();
69
70
                }
70
 
                
71
 
                
 
71
 
72
72
                public ObjectValue GetValue (ObjectPath path, EvaluationOptions options)
73
73
                {
74
74
                        throw new NotSupportedException();