Skip to content

Commit d2d4e7d

Browse files
pkozlowski-opensourcemhevery
authored andcommitted
refactor(parser): remove unused variables
Closes angular#1553
1 parent ee1b574 commit d2d4e7d

2 files changed

Lines changed: 4 additions & 11 deletions

File tree

modules/angular2/src/change_detection/parser/lexer.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -160,21 +160,15 @@ export const $QUESTION = 63;
160160
const $0 = 48;
161161
const $9 = 57;
162162

163-
const $A = 65, $B = 66, $C = 67, $D = 68, $E = 69, $F = 70, $G = 71, $H = 72,
164-
$I = 73, $J = 74, $K = 75, $L = 76, $M = 77, $N = 78, $O = 79, $P = 80,
165-
$Q = 81, $R = 82, $S = 83, $T = 84, $U = 85, $V = 86, $W = 87, $X = 88,
166-
$Y = 89, $Z = 90;
163+
const $A = 65, $E = 69, $Z = 90;
167164

168165
export const $LBRACKET = 91;
169166
export const $BACKSLASH = 92;
170167
export const $RBRACKET = 93;
171168
const $CARET = 94;
172169
const $_ = 95;
173170

174-
const $a = 97, $b = 98, $c = 99, $d = 100, $e = 101, $f = 102, $g = 103,
175-
$h = 104, $i = 105, $j = 106, $k = 107, $l = 108, $m = 109, $n = 110,
176-
$o = 111, $p = 112, $q = 113, $r = 114, $s = 115, $t = 116, $u = 117,
177-
$v = 118, $w = 119, $x = 120, $y = 121, $z = 122;
171+
const $a = 97, $e = 101, $f = 102, $n = 110, $r = 114, $t = 116, $u = 117, $v = 118, $z = 122;
178172

179173
export const $LBRACE = 123;
180174
export const $BAR = 124;

modules/angular2/src/change_detection/parser/parser.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import {
3131
var _implicitReceiver = new ImplicitReceiver();
3232
// TODO(tbosch): Cannot make this const/final right now because of the transpiler...
3333
var INTERPOLATION_REGEXP = RegExpWrapper.create('\\{\\{(.*?)\\}\\}');
34-
var QUOTE_REGEXP = RegExpWrapper.create("'");
3534

3635
@Injectable()
3736
export class Parser {
@@ -492,7 +491,7 @@ class _ParseAST {
492491
var positionals = [];
493492
do {
494493
ListWrapper.push(positionals, this.parseExpression());
495-
} while (this.optionalCharacter($COMMA))
494+
} while (this.optionalCharacter($COMMA));
496495
return positionals;
497496
}
498497

@@ -538,7 +537,7 @@ class _ParseAST {
538537
ListWrapper.push(bindings, new TemplateBinding(key, keyIsVar, name, expression));
539538
if (!this.optionalCharacter($SEMICOLON)) {
540539
this.optionalCharacter($COMMA);
541-
};
540+
}
542541
}
543542
return bindings;
544543
}

0 commit comments

Comments
 (0)