blob: cadb41307ead8480c604af95940a5c1689e1715b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
#include "stdafx.h"
#include "JSEvalCallback.h"
JSEvalCallback::JSEvalCallback() {
}
JSEvalCallback::~JSEvalCallback() {
}
void JSEvalCallback::init(CrossfireResponse* response, IDebugExpression* expression) {
m_response = response;
m_expression = expression;
}
STDMETHODIMP JSEvalCallback::onComplete(void) {
HRESULT innerHR;
IDebugProperty* result = NULL;
HRESULT hr = m_expression->GetResultAsDebugProperty(&innerHR, &result);
// TODO
return S_OK;
}