public AutocompleteResult(LuaValue key, LuaValueType valueType) { m_key = key; m_valueType = valueType; }
public void RetrieveAutocompleteOptions(int seqid, string expression, LuaValue thread, int stackFrame) { Invoke(new MethodInvoker(delegate() { mRealHost.RetrieveAutocompleteOptions(seqid, expression, thread, stackFrame); })); }
public void RetrieveWatches(LuaValue thread, int stackFrame) { Invoke(new MethodInvoker(delegate() { mRealHost.RetrieveWatches(thread, stackFrame); })); }
public void RunSnippet(string snippet, LuaValue thread, int stackFrame) { Invoke(new MethodInvoker(delegate() { mRealHost.RunSnippet(snippet, thread, stackFrame); })); }
private void CreateMessage_RetrieveAutocompleteOptions(int seqid, string expression, LuaValue thread, int stackFrame) { m_writeBuffer.Begin(); m_writeBuffer.Write((int)DebuggerMessage.RetrieveAutocompleteOptions); m_writeBuffer.Write((int)seqid); m_writeBuffer.WriteObjectID(thread.AsIdentifier()); m_writeBuffer.Write((int)stackFrame); m_writeBuffer.Write(expression); m_writeBuffer.End(); }