From d4d0b1f7dc259c71f587595e471bcf1cf228189d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Thu, 18 Aug 2011 17:19:24 +0800 Subject: [PATCH] JSDOC/Packer.js --- JSDOC/Packer.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/JSDOC/Packer.js b/JSDOC/Packer.js index d177630..851a45a 100644 --- a/JSDOC/Packer.js +++ b/JSDOC/Packer.js @@ -446,19 +446,24 @@ Packer.prototype = { * -> this file will need inserting at the start of the application.... * -> we need to generate 2 files, * -> a reference used to do the translation, and the _T file.. + * + * + * We store the trsum on the token... * */ writeTranslateFile : function(fn, minfile, toks) { - var map = {}; + var map = {}; // 'string=> md5sum' var _this = this; toks.forEach(function (t) { if (t.type == 'STRN' && t.name == 'DOUBLE_QUOTE') { var sval = t.data.substring(1,t.data.length-1); var ffn = fn.substring(_this.prefix.length); - map[sval] = _this.md5(ffn + '-' + sval); + + t.trsum = _this.md5(ffn + '-' + sval); + map[sval] = t.trsum; } }) -- 2.39.2