Home
last modified time | relevance | path

Searched refs:varValue (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.cpp1392 std::string varValue; in CmptEvaluateValue() local
1396 varValue = Trim(expression.substr(indexEqual + 1, expression.length())); in CmptEvaluateValue()
1401 if (varValue.empty()) { in CmptEvaluateValue()
1409 Local<JSValueRef> value = ConvertToLocal(varValue); in CmptEvaluateValue()
1428 Local<JSValueRef> DebuggerImpl::ConvertToLocal(const std::string &varValue) in ConvertToLocal() argument
1431 if (varValue == "false") { in ConvertToLocal()
1433 } else if (varValue == "true") { in ConvertToLocal()
1435 } else if (varValue == "undefined") { in ConvertToLocal()
1437 } else if (varValue[0] == '\"' && varValue[varValue.length() - 1] == '\"') { in ConvertToLocal()
1439 … taggedValue = StringRef::NewFromUtf8(vm_, varValue.substr(1, varValue.length() - 2).c_str()); in ConvertToLocal()
[all …]
Ddebugger_impl.h165 Local<JSValueRef> ConvertToLocal(const std::string &varValue);