case CharCode.Equals:
if (this._match(CharCode.Equals)) { // support `==`
this._tokens.push({ type: TokenType.Eq, offset: this._start, isTripleEq });
} else if (this._match(CharCode.Tilde)) {
this._addToken(TokenType.RegexOp);