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

Unified Diff: runtime/vm/scanner.h

Issue 11419086: Use a signed 32-bit integer for representing code points. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: add missing files Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/object_test.cc ('k') | runtime/vm/scanner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/scanner.h
diff --git a/runtime/vm/scanner.h b/runtime/vm/scanner.h
index 2ce83d2d2d9937ef3e91e511f89c5fb39ae2d0a7..5f1f75ee67b902ee137967ea1da64383a98a1e73 100644
--- a/runtime/vm/scanner.h
+++ b/runtime/vm/scanner.h
@@ -178,13 +178,13 @@ class Scanner : ValueObject {
void ScanLiteralStringChars(bool is_raw);
// Reads a fixed number of hexadecimal digits.
- bool ScanHexDigits(int digits, uint32_t* value);
+ bool ScanHexDigits(int digits, int32_t* value);
// Reads a variable number of hexadecimal digits.
- bool ScanHexDigits(int min_digits, int max_digits, uint32_t* value);
+ bool ScanHexDigits(int min_digits, int max_digits, int32_t* value);
// Reads an escaped code point from within a string literal.
- void ScanEscapedCodePoint(uint32_t* escaped_char);
+ void ScanEscapedCodePoint(int32_t* escaped_char);
// Reads identifier.
RawString* ConsumeIdentChars(bool allow_dollar);
« no previous file with comments | « runtime/vm/object_test.cc ('k') | runtime/vm/scanner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698