Search in sources :

Example 1 with LLValue

use of com.jetbrains.cidr.execution.debugger.backend.LLValue in project intellij-plugins by JetBrains.

the class MotionObjectRenderer method doComputeChildren.

@Override
protected void doComputeChildren(@NotNull EvaluationContext context, @NotNull XCompositeNode container) throws ExecutionException, DebuggerCommandException {
    final Collection<CidrValue> children = new ArrayList<>();
    final LLValue names = getInstanceVariablesNames(context);
    final int count = count(context, names);
    for (int i = 0; i < count; i++) {
        final String selName = EvaluationContext.cast("sel_registerName(\"objectAtIndex:\")", "id");
        final String nameExpr = EvaluationContext.cast("objc_msgSend(" + getSelf(names, context) + ", " + selName + ", " + i + ")", "id");
        final LLValueData name = context.evaluateData(nameExpr);
        final String namePointer = "(char *)[[" + name.getPointer() + " description] UTF8String]";
        final String ivarName = TextUtil.removeQuoting(context.evaluateData(namePointer).getPresentableValue());
        final String ivarExpr = getChildEvaluationExpression(context, ivarName);
        final LLValue ivar = context.evaluate(ivarExpr);
        children.add(new MotionMemberValue(ivar, ivarName, myValue));
    }
    CidrValue.addAllTo(children, container);
}
Also used : MotionMemberValue(org.jetbrains.plugins.ruby.motion.run.MotionMemberValue) LLValue(com.jetbrains.cidr.execution.debugger.backend.LLValue) LLValueData(com.jetbrains.cidr.execution.debugger.backend.LLValueData) ArrayList(java.util.ArrayList) CidrValue(com.jetbrains.cidr.execution.debugger.evaluation.CidrValue)

Example 2 with LLValue

use of com.jetbrains.cidr.execution.debugger.backend.LLValue in project intellij-plugins by JetBrains.

the class MotionEvaluatorHelper method convertAndEvaluate.

@Override
public Pair<LLValue, String> convertAndEvaluate(@NotNull CidrDebugProcess process, @NotNull DebuggerDriver driver, @NotNull XExpression expression, XSourcePosition sourcePosition, long threadId, int frameIndex) throws ExecutionException, DebuggerCommandException {
    final String stringExpression = expression.getExpression();
    final LLValue result = driver.evaluate(threadId, frameIndex, stringExpression);
    return Pair.create(result, stringExpression);
}
Also used : LLValue(com.jetbrains.cidr.execution.debugger.backend.LLValue)

Example 3 with LLValue

use of com.jetbrains.cidr.execution.debugger.backend.LLValue in project intellij-plugins by JetBrains.

the class MotionObjectRenderer method doComputeValueAndEvaluator.

@NotNull
@Override
protected Pair<String, XFullValueEvaluator> doComputeValueAndEvaluator(@NotNull EvaluationContext context) throws ExecutionException, DebuggerCommandException {
    LLValue value = context.evaluate("(char *)[[(id)rb_inspect(" + myValue.getVarData(context).getPointer() + ") description] UTF8String]");
    LLValueData data = context.getData(value);
    return doComputeValueAndEvaluator(context, value, data);
}
Also used : LLValue(com.jetbrains.cidr.execution.debugger.backend.LLValue) LLValueData(com.jetbrains.cidr.execution.debugger.backend.LLValueData) NotNull(org.jetbrains.annotations.NotNull)

Aggregations

LLValue (com.jetbrains.cidr.execution.debugger.backend.LLValue)3 LLValueData (com.jetbrains.cidr.execution.debugger.backend.LLValueData)2 CidrValue (com.jetbrains.cidr.execution.debugger.evaluation.CidrValue)1 ArrayList (java.util.ArrayList)1 NotNull (org.jetbrains.annotations.NotNull)1 MotionMemberValue (org.jetbrains.plugins.ruby.motion.run.MotionMemberValue)1