1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00
Beef/IDEHelper/DbgEvalPool.cpp

18 lines
447 B
C++
Raw Normal View History

2019-08-23 11:56:54 -07:00
#include "DbgEvalPool.h"
USING_NS_BF_DBG;
DbgEvalPool::Entry* DbgEvalPool::Add(const std::string& expr, int callStackIdx, int cursorPos, bool allowAssignment, bool allowCalls, int expressionFlags)
{
Entry* entry = new Entry();
entry->mExpr = expr;
entry->mCallStackIdx = callStackIdx;
//entry->mCursor
entry->mAllowAssignment = allowAssignment;
entry->mAllowCall = allowCalls;
entry->mExpressionFlags = expressionFlags;
return NULL;
}