Diff for /parser3/src/classes/double.C between versions 1.7 and 1.13

version 1.7, 2001/03/11 08:44:39 version 1.13, 2001/03/12 22:21:01
Line 10 Line 10
 #include "_double.h"  #include "_double.h"
 #include "pa_vdouble.h"  #include "pa_vdouble.h"
 #include "pa_vint.h"  #include "pa_vint.h"
   #include "_string.h"
   
 // global var  // global var
   
Line 17  VClass *double_class; Line 18  VClass *double_class;
   
 // methods  // methods
   
 static void _int(Request& r, Array *) {  static void _int(Request& r, const String&, Array *) {
         Pool& pool=r.pool();          Pool& pool=r.pool();
         VDouble *vdouble=static_cast<VDouble *>(r.self);          VDouble *vdouble=static_cast<VDouble *>(r.self);
         Value& value=*new(pool) VInt(pool, static_cast<int>(vdouble->get_double()));          Value& value=*new(pool) VInt(pool, (int)vdouble->get_double());
         r.wcontext->write(value, String::Untaint_lang::NO /*always object, not string*/);          r.wcontext->write(value, String::Untaint_lang::NO /*always object, not string*/);
 }  }
   
 static void _double(Request& r, Array *) {  static void _double(Request& r, const String&, Array *) {
         Pool& pool=r.pool();          Pool& pool=r.pool();
         VDouble *vdouble=static_cast<VDouble *>(r.self);          VDouble *vdouble=static_cast<VDouble *>(r.self);
         Value& value=*new(pool) VDouble(pool, vdouble->get_double());          Value& value=*new(pool) VDouble(pool, vdouble->get_double());
         r.wcontext->write(value, String::Untaint_lang::NO /*always object, not string*/);          r.wcontext->write(value, String::Untaint_lang::NO /*always object, not string*/);
 }  }
   
 static void _inc(Request& r, Array *params) {  static void _inc(Request& r, const String&, Array *params) {
         VDouble *vdouble=static_cast<VDouble *>(r.self);          VDouble *vdouble=static_cast<VDouble *>(r.self);
         double increment=params->size()?          double increment=params->size()?
                 r.autocalc(                  r.process(
                         *static_cast<Value *>(params->get(0)),                          *static_cast<Value *>(params->get(0)),
                         0/*no name*/,                          0/*no name*/,
                         false/*don't make it string*/).get_double():1;                          false/*don't intercept string*/).get_double():1;
         vdouble->inc(increment);          vdouble->inc(increment);
 }  }
   
 void initialize_double_class(Pool& pool, VClass& vclass) {  void initialize_double_class(Pool& pool, VClass& vclass) {
         vclass.add_native_method("int", _int, 0, 0); // ^double.int[]          // ^double.int[]
         vclass.add_native_method("double", _double, 0, 0); // ^double.double[]          vclass.add_native_method("int", _int, 0, 0);
         vclass.add_native_method("inc", _inc, 0, 1); // ^double.inc[] ^double.inc[offset]  
 }          // ^double.double[]
           vclass.add_native_method("double", _double, 0, 0);
           
           // ^double.inc[]
           // ^double.inc[offset]
           vclass.add_native_method("inc", _inc, 0, 1);
   
           // ^double.format[]
           vclass.add_native_method("format", _string_format, 1, 1);
   }

Removed from v.1.7  
changed lines
  Added in v.1.13


E-mail: