Index: src/scanner.h |
diff --git a/src/scanner.h b/src/scanner.h |
index 16c06760133e4d8fb303d71e2854b48370280cde..8966d015847eb019b08a472f107817797e2afd5a 100644 |
--- a/src/scanner.h |
+++ b/src/scanner.h |
@@ -478,9 +478,6 @@ class Scanner { |
// tokens, which is what it is used for. |
void SeekForward(int pos); |
- bool HarmonyUnicode() const { return harmony_unicode_; } |
- void SetHarmonyUnicode(bool unicode) { harmony_unicode_ = unicode; } |
- |
// Returns true if there was a line terminator before the peek'ed token, |
// possibly inside a multi-line comment. |
bool HasAnyLineTerminatorBeforeNext() const { |
@@ -790,8 +787,6 @@ class Scanner { |
// Whether there is a multi-line comment that contains a |
// line-terminator after the current token, and before the next. |
bool has_multiline_comment_before_next_; |
- // Whether we allow \u{xxxxx}. |
- bool harmony_unicode_; |
}; |
} } // namespace v8::internal |