Revert "feat(core): introduce a CSS lexer/parser"

This reverts commit 293fa5505b.

The rebased commit broke CI: https://travis-ci.org/angular/angular/jobs/115388814
This commit is contained in:
Alex Eagle
2016-03-11 11:14:29 -08:00
parent f33dda79e9
commit 127fbfd5a6
7 changed files with 2 additions and 2786 deletions

View File

@ -153,6 +153,7 @@ export const $BAR = 124;
export const $RBRACE = 125;
const $NBSP = 160;
export class ScannerError extends BaseException {
constructor(public message) { super(); }
@ -378,7 +379,7 @@ class _Scanner {
}
}
export function isWhitespace(code: number): boolean {
function isWhitespace(code: number): boolean {
return (code >= $TAB && code <= $SPACE) || (code == $NBSP);
}