Diff for /parser3/src/classes/string.C between versions 1.7 and 1.9

version 1.7, 2001/03/12 09:08:46 version 1.9, 2001/03/12 22:21:01
Line 25  static void _length(Request& r, const St Line 25  static void _length(Request& r, const St
   
 static void _int(Request& r, const String&, Array *) {  static void _int(Request& r, const String&, Array *) {
         Pool& pool=r.pool();          Pool& pool=r.pool();
         Value& value=*new(pool) VInt(pool, static_cast<int>(r.self->get_double()));          Value& value=*new(pool) VInt(pool, (int)r.self->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*/);
 }  }
   
Line 35  static void _double(Request& r, const St Line 35  static void _double(Request& r, const St
         r.wcontext->write(value, String::Untaint_lang::NO /*always object, not string*/);          r.wcontext->write(value, String::Untaint_lang::NO /*always object, not string*/);
 }  }
   
   void _string_format(Request& r, const String& method_name, Array *params) {
           Pool& pool=r.pool();
   
           Value& fmt=*static_cast<Value *>(params->get(0));
           // forcing ^format[this param type]
           r.fail_if_junction_(true, fmt, 
                   method_name, "fmt must not be junction");
   
           char *buf=format(pool, r.self->get_double(), fmt.as_string().cstr());
           
           String *string=new(pool) String(pool);
           r.wcontext->write(string->APPEND_CONST(buf), 
                   String::Untaint_lang::NO /*always object, not string*/);
   }
   
 void initialize_string_class(Pool& pool, VClass& vclass) {  void initialize_string_class(Pool& pool, VClass& vclass) {
         // ^string.length[]          // ^string.length[]
         vclass.add_native_method("length", _length, 0, 0);          vclass.add_native_method("length", _length, 0, 0);
Line 44  void initialize_string_class(Pool& pool, Line 59  void initialize_string_class(Pool& pool,
                   
         // ^string.double[]          // ^string.double[]
         vclass.add_native_method("double", _double, 0, 0);          vclass.add_native_method("double", _double, 0, 0);
   
           // ^string.format[]
           vclass.add_native_method("format", _string_format, 1, 1);
 }         }       
   

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


E-mail: