248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
|
-
+
|
obj_ptr.length = total_len;
for (i = 0; i < j; i++) {
if (intv[i]) {
obj_ptr.bytes += intv[i].toString();
intv[i].decrRefCount();
}
}
obj_ptr.bytes[total_len] = '\0';
// obj_ptr.bytes[total_len] = '\0';
obj_ptr.len = total_len;
/* Free the intv vector. */
intv = null;
if (stmt.eval_ipol_debug > 1) {
print("interpolateTokens END!"+obj_ptr.toDebugString()+"!");
}
stmt.in_quotes = my_in_quotes;
|