1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-07 19:18:19 +02:00
Beef/IDEHelper/DbgEvalPool.cpp
2022-07-30 09:11:38 -04:00

16 lines
No EOL
445 B
C++

#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;
}