Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
These ops should take a tc.
  • Loading branch information
jnthn committed Jan 18, 2013
1 parent 7edcd6f commit 9a95f10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/perl6/nqp/runtime/Ops.java
Expand Up @@ -1141,10 +1141,10 @@ public static SixModelObject getobjsc(SixModelObject obj, ThreadContext tc) {
}
return tc.gc.scRefs.get(sc.handle);
}
public static String serialize(SixModelObject scRef, SixModelObject sh) {
public static String serialize(SixModelObject scRef, SixModelObject sh, ThreadContext tc) {
throw new RuntimeException("Serialization NYI");
}
public static String deserialize(String blob, SixModelObject scRef, SixModelObject sh, SixModelObject cr, SixModelObject conflict) {
public static String deserialize(String blob, SixModelObject scRef, SixModelObject sh, SixModelObject cr, SixModelObject conflict, ThreadContext tc) {
throw new RuntimeException("Deserialization NYI");
}
public static SixModelObject wval(String sc, long idx, ThreadContext tc) {
Expand Down

0 comments on commit 9a95f10

Please sign in to comment.