summaryrefslogtreecommitdiff
path: root/deps/v8/include/v8-preparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/include/v8-preparser.h')
-rw-r--r--deps/v8/include/v8-preparser.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/deps/v8/include/v8-preparser.h b/deps/v8/include/v8-preparser.h
index 68ce50223e..9425f7d467 100644
--- a/deps/v8/include/v8-preparser.h
+++ b/deps/v8/include/v8-preparser.h
@@ -99,13 +99,6 @@ class UnicodeInputStream {
// Returns the next Unicode code-point in the input, or a negative value when
// there is no more input in the stream.
virtual int32_t Next() = 0;
-
- // Pushes a read character back into the stream, so that it will be the next
- // to be read by Advance(). The character pushed back must be the most
- // recently read character that hasn't already been pushed back (i.e., if
- // pushing back more than one character, they must occur in the opposite order
- // of the one they were read in).
- virtual void PushBack(int32_t ch) = 0;
};