コード例 #1
0
ファイル: P6num.java プロジェクト: gerdr/nqp
 public SixModelObject allocate(ThreadContext tc, STable st) {
   P6numInstance obj = new P6numInstance();
   obj.st = st;
   obj.value = Double.NaN;
   return obj;
 }
コード例 #2
0
ファイル: P6num.java プロジェクト: gerdr/nqp
 public SixModelObject deserialize_stub(ThreadContext tc, STable st) {
   P6numInstance obj = new P6numInstance();
   obj.st = st;
   return obj;
 }