refacor(lexer): remove unused ~/ operator

Closes #1509
This commit is contained in:
Pawel Kozlowski 2015-04-23 19:18:20 +02:00 committed by Misko Hevery
parent 8e18d6c6cf
commit fa8e059f28

View File

@ -179,7 +179,6 @@ const $a = 97, $b = 98, $c = 99, $d = 100, $e = 101, $f = 102, $g = 103,
export const $LBRACE = 123; export const $LBRACE = 123;
export const $BAR = 124; export const $BAR = 124;
export const $RBRACE = 125; export const $RBRACE = 125;
const $TILDE = 126;
const $NBSP = 160; const $NBSP = 160;
@ -275,8 +274,6 @@ class _Scanner {
return this.scanComplexOperator(start, $AMPERSAND, '&', '&'); return this.scanComplexOperator(start, $AMPERSAND, '&', '&');
case $BAR: case $BAR:
return this.scanComplexOperator(start, $BAR, '|', '|'); return this.scanComplexOperator(start, $BAR, '|', '|');
case $TILDE:
return this.scanComplexOperator(start, $SLASH, '~', '/');
case $NBSP: case $NBSP:
while (isWhitespace(this.peek)) this.advance(); while (isWhitespace(this.peek)) this.advance();
return this.scanToken(); return this.scanToken();
@ -455,7 +452,6 @@ var OPERATORS = SetWrapper.createFromList([
'-', '-',
'*', '*',
'/', '/',
'~/',
'%', '%',
'^', '^',
'=', '=',
@ -482,5 +478,5 @@ var KEYWORDS = SetWrapper.createFromList([
'null', 'null',
'undefined', 'undefined',
'true', 'true',
'false', 'false'
]); ]);