There was an error while loading. Please reload this page.
1 parent a8bdb69 commit 3b9c086Copy full SHA for 3b9c086
modules/angular2/src/core/change_detection/parser/lexer.ts
@@ -75,9 +75,10 @@ export class Token {
75
toString(): string {
76
switch (this.type) {
77
case TokenType.Character:
78
- case TokenType.String:
79
case TokenType.Identifier:
80
case TokenType.Keyword:
+ case TokenType.Operator:
81
+ case TokenType.String:
82
return this.strValue;
83
case TokenType.Number:
84
return this.numValue.toString();
0 commit comments