aboutsummaryrefslogtreecommitdiff
path: root/src/parseTools.js
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-11 08:13:15 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-11 08:13:15 -0800
commit994e01663b94c16a681a71255d8a1f87f1a23973 (patch)
treed686c56fc5c5669317a28c0cf61483ab29893e6d /src/parseTools.js
parent59cb52383add5581b10d0d331d0e0aa1154af0dd (diff)
simplify and slim down value intertype
Diffstat (limited to 'src/parseTools.js')
-rw-r--r--src/parseTools.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index 024026c8..d0193a12 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -334,7 +334,6 @@ function parseParamTokens(params) {
ret.push({
intertype: 'value',
type: segment[0].text,
- value: null,
ident: toNiceIdent('%') + anonymousIndex
});
Types.needAnalysis[ret[ret.length-1].type] = 0;
@@ -355,7 +354,6 @@ function parseParamTokens(params) {
ret.push({
intertype: 'value',
type: segment[0].text,
- value: segment[1],
ident: toNiceIdent(parseNumerical(segment[1].text))
});
Types.needAnalysis[removeAllPointing(ret[ret.length-1].type)] = 0;