OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Features shared by parsing and pre-parsing scanners. | 5 // Features shared by parsing and pre-parsing scanners. |
6 | 6 |
7 #include "src/parsing/scanner.h" | 7 #include "src/parsing/scanner.h" |
8 | 8 |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <cmath> | 11 #include <cmath> |
12 | 12 |
13 #include "src/ast/ast-value-factory.h" | 13 #include "src/ast/ast-value-factory.h" |
14 #include "src/char-predicates-inl.h" | 14 #include "src/char-predicates-inl.h" |
15 #include "src/conversions-inl.h" | 15 #include "src/conversions-inl.h" |
16 #include "src/list-inl.h" | 16 #include "src/list-inl.h" |
17 #include "src/parsing/parser.h" | |
18 | 17 |
19 namespace v8 { | 18 namespace v8 { |
20 namespace internal { | 19 namespace internal { |
21 | 20 |
22 Handle<String> Scanner::LiteralBuffer::Internalize(Isolate* isolate) const { | 21 Handle<String> Scanner::LiteralBuffer::Internalize(Isolate* isolate) const { |
23 if (is_one_byte()) { | 22 if (is_one_byte()) { |
24 return isolate->factory()->InternalizeOneByteString(one_byte_literal()); | 23 return isolate->factory()->InternalizeOneByteString(one_byte_literal()); |
25 } | 24 } |
26 return isolate->factory()->InternalizeTwoByteString(two_byte_literal()); | 25 return isolate->factory()->InternalizeTwoByteString(two_byte_literal()); |
27 } | 26 } |
(...skipping 1739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1767 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u)); | 1766 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u)); |
1768 } | 1767 } |
1769 backing_store_.Add(static_cast<uint8_t>(one_byte_length & 0x7f)); | 1768 backing_store_.Add(static_cast<uint8_t>(one_byte_length & 0x7f)); |
1770 | 1769 |
1771 backing_store_.AddBlock(bytes); | 1770 backing_store_.AddBlock(bytes); |
1772 return backing_store_.EndSequence().start(); | 1771 return backing_store_.EndSequence().start(); |
1773 } | 1772 } |
1774 | 1773 |
1775 } // namespace internal | 1774 } // namespace internal |
1776 } // namespace v8 | 1775 } // namespace v8 |
OLD | NEW |