We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a2aef commit 88892f7Copy full SHA for 88892f7
src/vm/jvm/runtime/org/perl6/nqp/sixmodel/reprs/CallCaptureInstance.java
@@ -1,9 +1,18 @@
1
package org.perl6.nqp.sixmodel.reprs;
2
3
import org.perl6.nqp.runtime.CallSiteDescriptor;
4
+import org.perl6.nqp.runtime.ThreadContext;
5
import org.perl6.nqp.sixmodel.SixModelObject;
6
7
public class CallCaptureInstance extends SixModelObject {
8
public CallSiteDescriptor descriptor;
9
public Object[] args;
10
+
11
+ public SixModelObject clone(ThreadContext tc) {
12
+ CallCaptureInstance clone = new CallCaptureInstance();
13
+ clone.st = this.st;
14
+ clone.descriptor = this.descriptor;
15
+ clone.args = this.args.clone();
16
+ return clone;
17
+ }
18
}
0 commit comments