Skip to content
Snippets Groups Projects
Commit f072a6df authored by Lukas Stadler's avatar Lukas Stadler
Browse files

add missing @CompilationFinals in RCallNode

parent a961dbfd
No related branches found
No related tags found
No related merge requests found
......@@ -934,10 +934,10 @@ public abstract class RCallNode extends RCallBaseNode implements RSyntaxNode, RS
@Child private SetVisibilityNode visibility = SetVisibilityNode.create();
// not using profiles to save overhead
private final boolean[] argEmptySeen;
private final boolean[] varArgSeen;
private final boolean[] nonWrapSeen;
private final boolean[] wrapSeen;
@CompilationFinal private final boolean[] argEmptySeen;
@CompilationFinal private final boolean[] varArgSeen;
@CompilationFinal private final boolean[] nonWrapSeen;
@CompilationFinal private final boolean[] wrapSeen;
private final FormalArguments formals;
private final RBuiltinDescriptor builtinDescriptor;
......
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