Example #1
0
File: P6num.java Project: gerdr/nqp
 public SixModelObject allocate(ThreadContext tc, STable st) {
   P6numInstance obj = new P6numInstance();
   obj.st = st;
   obj.value = Double.NaN;
   return obj;
 }
Example #2
0
File: P6num.java Project: gerdr/nqp
 public SixModelObject deserialize_stub(ThreadContext tc, STable st) {
   P6numInstance obj = new P6numInstance();
   obj.st = st;
   return obj;
 }