Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(879)

Side by Side Diff: src/parsing/scanner.cc

Issue 2272013002: Minor header cleanup. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/json-parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/json-parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698