OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #region | |
6 | |
7 using System; | |
8 using System.Collections.Generic; | |
9 using Google.MsAd7.BaseImpl; | |
10 using Google.MsAd7.BaseImpl.Interfaces; | |
11 using Google.MsAd7.BaseImpl.Interfaces.SimpleSymbolTypes; | |
12 using Google.NaClVsx.DebugSupport; | |
13 using Google.NaClVsx.DebugSupport.DWARF; | |
14 | |
15 #endregion | |
16 | |
17 namespace NaClVsx.Package_UnitTestProject { | |
18 public class SymbolProviderMock : ISimpleSymbolProvider { | |
19 #region ISimpleSymbolProvider Members | |
20 | |
21 public IEnumerable<ulong> AddressesFromPosition(DocumentPosition pos) { | |
22 throw new NotImplementedException(); | |
23 } | |
24 | |
25 public DocumentPosition PositionFromAddress(ulong address) { | |
26 throw new NotImplementedException(); | |
27 } | |
28 | |
29 public IBreakpointInfo GetBreakpointInfo() { | |
30 return new BreakpointInfo(new SymbolDatabase(), this); | |
31 } | |
32 | |
33 public ulong GetBaseAddress() { | |
34 throw new NotImplementedException(); | |
35 } | |
36 | |
37 public IEnumerable<Symbol> GetSymbolsInScope(ulong instructionAddress) { | |
38 throw new NotImplementedException(); | |
39 } | |
40 | |
41 public IEnumerable<ulong> GetAddressesInScope(ulong programCounter) { | |
42 throw new NotImplementedException(); | |
43 } | |
44 | |
45 public string SymbolValueToString(ulong key, ArraySegment<byte> arrBytes) { | |
46 throw new NotImplementedException(); | |
47 } | |
48 | |
49 public Function FunctionFromAddress(ulong address) { | |
50 throw new NotImplementedException(); | |
51 } | |
52 | |
53 public FunctionDetails GetFunctionDetails(Function fn) { | |
54 throw new NotImplementedException(); | |
55 } | |
56 | |
57 public bool LoadModule(string path, ulong loadOffset, out string status) { | |
58 throw new NotImplementedException(); | |
59 } | |
60 | |
61 public ulong GetNextLocation(ulong addr) { | |
62 throw new NotImplementedException(); | |
63 } | |
64 | |
65 #endregion | |
66 } | |
67 } | |
OLD | NEW |