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/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-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/parser.h" | 17 #include "src/parsing/parser.h" |
18 | 18 |
19 namespace v8 { | 19 namespace v8 { |
20 namespace internal { | 20 namespace internal { |
21 | 21 |
22 | 22 |
23 Handle<String> LiteralBuffer::Internalize(Isolate* isolate) const { | 23 Handle<String> LiteralBuffer::Internalize(Isolate* isolate) const { |
24 if (is_one_byte()) { | 24 if (is_one_byte()) { |
25 return isolate->factory()->InternalizeOneByteString(one_byte_literal()); | 25 return isolate->factory()->InternalizeOneByteString(one_byte_literal()); |
26 } | 26 } |
27 return isolate->factory()->InternalizeTwoByteString(two_byte_literal()); | 27 return isolate->factory()->InternalizeTwoByteString(two_byte_literal()); |
(...skipping 1636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1664 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u)); | 1664 backing_store_.Add(static_cast<uint8_t>((one_byte_length >> 7) | 0x80u)); |
1665 } | 1665 } |
1666 backing_store_.Add(static_cast<uint8_t>(one_byte_length & 0x7f)); | 1666 backing_store_.Add(static_cast<uint8_t>(one_byte_length & 0x7f)); |
1667 | 1667 |
1668 backing_store_.AddBlock(bytes); | 1668 backing_store_.AddBlock(bytes); |
1669 return backing_store_.EndSequence().start(); | 1669 return backing_store_.EndSequence().start(); |
1670 } | 1670 } |
1671 | 1671 |
1672 } // namespace internal | 1672 } // namespace internal |
1673 } // namespace v8 | 1673 } // namespace v8 |
OLD | NEW |