Package spoon.reflect.eval

Examples of spoon.reflect.eval.SymbolicStackFrame


    this.symbolicEvaluationStep = symbolicEvaluationStep;
    if (symbolicEvaluationStep == null) {
      throw new ModelException("null symbolic evaluation step");
    } else {
      SymbolicStackFrame frame = symbolicEvaluationStep.getFrame();
      if (frame != null) {
        caller = setupInstance(frame.getCaller());
        target = setupInstance(frame.getThis());
        result = new SpoonInstanceAdapter(frame.getResult());
        arguments = wrapArguments(frame.getArguments());
      }
    }
  }
View Full Code Here

TOP

Related Classes of spoon.reflect.eval.SymbolicStackFrame

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.