Skip to content
Snippets Groups Projects
Commit 930650e3 authored by Christian Humer's avatar Christian Humer
Browse files

Implement error handling against interface types instead of implementation types.

parent e108206a
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,7 @@ import com.oracle.truffle.api.source.*;
import com.oracle.truffle.r.runtime.RError.Message;
import com.oracle.truffle.r.runtime.context.*;
import com.oracle.truffle.r.runtime.data.*;
import com.oracle.truffle.r.runtime.data.model.*;
import com.oracle.truffle.r.runtime.env.*;
import com.oracle.truffle.r.runtime.nodes.*;
......@@ -225,6 +226,18 @@ public class RErrorHandling {
getRErrorHandlingState().restartStack = RDataFactory.createPairList(restart, getRestartStack());
}
private static String castString(Object value) {
if (value instanceof String) {
return (String) value;
} else if (value instanceof RAbstractStringVector) {
RAbstractStringVector c = (RAbstractStringVector) value;
if (c.getLength() > 0) {
return c.getDataAt(0);
}
}
return null;
}
private static Object restartExit(RList restart) {
return restart.getDataAt(0);
}
......@@ -535,7 +548,11 @@ public class RErrorHandling {
// ensured in ROptions
int w = ((RIntVector) RContext.getInstance().stateROptions.getValue("warn")).getDataAt(0);
Object value = RContext.getInstance().stateROptions.getValue("warn");
int w = 0;
if (value != RNull.instance) {
w = ((RAbstractIntVector) value).getDataAt(0);
}
if (w == RRuntime.INT_NA) {
w = 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment