(DAPStream stream)
| 106 | |
| 107 | |
| 108 | public DAPMessageHandler(DAPStream stream) |
| 109 | { |
| 110 | Stream = stream; |
| 111 | Stream.MessageReceived += this.MessageReceived; |
| 112 | ServerState = new ThreadState(); |
| 113 | ServerState.Context = DbgContext.Server; |
| 114 | ClientState = new ThreadState(); |
| 115 | ClientState.Context = DbgContext.Client; |
| 116 | Evaluator = new ExpressionEvaluator(this); |
| 117 | } |
| 118 | |
| 119 | public void EnableLogging(Stream logStream) |
| 120 | { |
nothing calls this directly
no outgoing calls
no test coverage detected