Chromium Code Reviews| Index: src/scanner.h |
| diff --git a/src/scanner.h b/src/scanner.h |
| index 92418f72b1b365ff94723df5a8d04f0072365b1e..368ec1beae557568aee0c52f65aa50f483a3b9d8 100644 |
| --- a/src/scanner.h |
| +++ b/src/scanner.h |
| @@ -178,6 +178,11 @@ class LiteralBuffer { |
| bool is_ascii() { return is_ascii_; } |
| + bool is_contextual_keyword(Vector<const char> keyword) { |
|
rossberg
2013/06/06 10:32:33
Yes, that's better. :)
|
| + return is_ascii() && keyword.length() == position_ && |
| + (memcmp(keyword.start(), backing_store_.start(), position_) == 0); |
| + } |
| + |
| Vector<const uc16> utf16_literal() { |
| ASSERT(!is_ascii_); |
| ASSERT((position_ & 0x1) == 0); |
| @@ -325,6 +330,10 @@ class Scanner { |
| ASSERT_NOT_NULL(current_.literal_chars); |
| return current_.literal_chars->is_ascii(); |
| } |
| + bool is_literal_contextual_keyword(Vector<const char> keyword) { |
| + ASSERT_NOT_NULL(next_.literal_chars); |
| + return current_.literal_chars->is_contextual_keyword(keyword); |
| + } |
| int literal_length() const { |
| ASSERT_NOT_NULL(current_.literal_chars); |
| return current_.literal_chars->length(); |
| @@ -361,6 +370,10 @@ class Scanner { |
| ASSERT_NOT_NULL(next_.literal_chars); |
| return next_.literal_chars->is_ascii(); |
| } |
| + bool is_next_contextual_keyword(Vector<const char> keyword) { |
| + ASSERT_NOT_NULL(next_.literal_chars); |
| + return next_.literal_chars->is_contextual_keyword(keyword); |
| + } |
| int next_literal_length() const { |
| ASSERT_NOT_NULL(next_.literal_chars); |
| return next_.literal_chars->length(); |