Skip to content
Snippets Groups Projects
Commit c7dad105 authored by stepan's avatar stepan
Browse files

Fix UpdateClass to ignore NULL class when LSH is NULL

parent 75466aaa
No related branches found
No related tags found
No related merge requests found
......@@ -67,7 +67,10 @@ public abstract class UpdateClass extends RBuiltinNode.Arg2 {
@Specialization
protected Object setClass(@SuppressWarnings("unused") RNull arg, @SuppressWarnings("unused") Object className) {
throw error(RError.Message.SET_ATTRIBUTES_ON_NULL);
if (className != RNull.instance) {
throw error(RError.Message.SET_ATTRIBUTES_ON_NULL);
}
return RNull.instance;
}
@Specialization(limit = "CACHE_LIMIT", guards = "cachedClassName == className")
......
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