| Index: src/parser.h
|
| ===================================================================
|
| --- src/parser.h (revision 10944)
|
| +++ src/parser.h (working copy)
|
| @@ -172,7 +172,7 @@
|
| static bool Parse(CompilationInfo* info, int flags);
|
|
|
| // Generic preparser generating full preparse data.
|
| - static ScriptDataImpl* PreParse(UC16CharacterStream* source,
|
| + static ScriptDataImpl* PreParse(Utf16CharacterStream* source,
|
| v8::Extension* extension,
|
| int flags);
|
|
|
| @@ -542,7 +542,7 @@
|
|
|
|
|
| FunctionLiteral* ParseLazy(CompilationInfo* info,
|
| - UC16CharacterStream* source,
|
| + Utf16CharacterStream* source,
|
| ZoneScope* zone_scope);
|
|
|
| Isolate* isolate() { return isolate_; }
|
| @@ -711,7 +711,7 @@
|
| scanner().literal_ascii_string(), tenured);
|
| } else {
|
| return isolate_->factory()->NewStringFromTwoByte(
|
| - scanner().literal_uc16_string(), tenured);
|
| + scanner().literal_utf16_string(), tenured);
|
| }
|
| }
|
|
|
| @@ -721,7 +721,7 @@
|
| scanner().next_literal_ascii_string(), tenured);
|
| } else {
|
| return isolate_->factory()->NewStringFromTwoByte(
|
| - scanner().next_literal_uc16_string(), tenured);
|
| + scanner().next_literal_utf16_string(), tenured);
|
| }
|
| }
|
|
|
|
|