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

Side by Side Diff: src/scanner.h

Issue 148283007: Experimental parser: remove bom handling (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 6 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/lexer_generator/code_generator.jinja » ('j') | 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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 typedef unibrow::Utf8Decoder<512> Utf8Decoder; 132 typedef unibrow::Utf8Decoder<512> Utf8Decoder;
133 133
134 StaticResource<Utf8Decoder>* utf8_decoder() { 134 StaticResource<Utf8Decoder>* utf8_decoder() {
135 return &utf8_decoder_; 135 return &utf8_decoder_;
136 } 136 }
137 137
138 bool IsIdentifierStart(unibrow::uchar c) { return kIsIdentifierStart.get(c); } 138 bool IsIdentifierStart(unibrow::uchar c) { return kIsIdentifierStart.get(c); }
139 bool IsIdentifierPart(unibrow::uchar c) { return kIsIdentifierPart.get(c); } 139 bool IsIdentifierPart(unibrow::uchar c) { return kIsIdentifierPart.get(c); }
140 bool IsLineTerminator(unibrow::uchar c) { return kIsLineTerminator.get(c); } 140 bool IsLineTerminator(unibrow::uchar c) { return kIsLineTerminator.get(c); }
141 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); } 141 bool IsWhiteSpace(unibrow::uchar c) { return kIsWhiteSpace.get(c); }
142 bool IsByteOrderMark(unibrow::uchar c) { return c == 0xfffe || c == 0xfeff; }
142 bool IsWhiteSpaceNotLineTerminator(unibrow::uchar c) { 143 bool IsWhiteSpaceNotLineTerminator(unibrow::uchar c) {
143 return !kIsLineTerminator.get(c) && kIsWhiteSpace.get(c); 144 return (kIsWhiteSpace.get(c) && !kIsLineTerminator.get(c)) ||
145 IsByteOrderMark(c);
144 } 146 }
145 bool IsLetter(unibrow::uchar c) { return kIsLetter.get(c); } 147 bool IsLetter(unibrow::uchar c) { return kIsLetter.get(c); }
146 bool IsIdentifierPartNotLetter(unibrow::uchar c) { 148 bool IsIdentifierPartNotLetter(unibrow::uchar c) {
147 return kIsIdentifierPartNotLetter.get(c); 149 return kIsIdentifierPartNotLetter.get(c);
148 } 150 }
149 151
150 private: 152 private:
151 unibrow::Predicate<IdentifierStart, 128> kIsIdentifierStart; 153 unibrow::Predicate<IdentifierStart, 128> kIsIdentifierStart;
152 unibrow::Predicate<IdentifierPart, 128> kIsIdentifierPart; 154 unibrow::Predicate<IdentifierPart, 128> kIsIdentifierPart;
153 unibrow::Predicate<unibrow::LineTerminator, 128> kIsLineTerminator; 155 unibrow::Predicate<unibrow::LineTerminator, 128> kIsLineTerminator;
(...skipping 470 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 bool harmony_scoping_; 626 bool harmony_scoping_;
625 // Whether we scan 'module', 'import', 'export' as keywords. 627 // Whether we scan 'module', 'import', 'export' as keywords.
626 bool harmony_modules_; 628 bool harmony_modules_;
627 // Whether we scan 0o777 and 0b111 as numbers. 629 // Whether we scan 0o777 and 0b111 as numbers.
628 bool harmony_numeric_literals_; 630 bool harmony_numeric_literals_;
629 }; 631 };
630 632
631 } } // namespace v8::internal 633 } } // namespace v8::internal
632 634
633 #endif // V8_SCANNER_H_ 635 #endif // V8_SCANNER_H_
OLDNEW
« no previous file with comments | « no previous file | tools/lexer_generator/code_generator.jinja » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698