Lines Matching refs:lastValue
92 var lastValue = property[property.length - 1];
98 } else if (lastValue[1][0] == Match.BANG && !lastValue[1].match(Match.IMPORTANT_WORD_PATTERN)) {
100 … else if (lastValue[1].indexOf(Match.BANG) > 0 && !lastValue[1].match(Match.IMPORTANT_WORD_PATTERN…
102 …} else if (lastValue[1].indexOf(Match.BACKSLASH) > 0 && lastValue[1].indexOf(Match.BACKSLASH) == l…
103 match = [Hack.BACKSLASH, lastValue[1].substring(lastValue[1].indexOf(Match.BACKSLASH) + 1)];
104 } else if (lastValue[1].indexOf(Match.BACKSLASH) === 0 && lastValue[1].length == 2) {
105 match = [Hack.BACKSLASH, lastValue[1].substring(1)];
115 var lastValue = property[property.length - 1];
116 if (Match.IMPORTANT_TOKEN_PATTERN.test(lastValue[1])) {
118 …} else if (Match.IMPORTANT_WORD_PATTERN.test(lastValue[1]) && Match.SUFFIX_BANG_PATTERN.test(prope…
126 var lastValue = property[property.length - 1];
129 if (Match.IMPORTANT_TOKEN_PATTERN.test(lastValue[1])) {
130 lastValue[1] = lastValue[1].replace(Match.IMPORTANT_TOKEN_PATTERN, '');
132 lastValue[1] = lastValue[1].replace(Match.IMPORTANT_WORD_PATTERN, '');
136 if (lastValue[1].length === 0) {
150 var lastValue = property[property.length - 1];
151 lastValue[1] = lastValue[1]
152 … .substring(0, lastValue[1].indexOf(hackFrom[0] == Hack.BACKSLASH ? Match.BACKSLASH : Match.BANG))
155 if (lastValue[1].length === 0) {