| Index: src/parser.h
|
| diff --git a/src/parser.h b/src/parser.h
|
| index 71bbfd195d01b590be438503f4978d3e104ac289..4f872a6e0d257429b0088454179ccc452bc315c3 100644
|
| --- a/src/parser.h
|
| +++ b/src/parser.h
|
| @@ -89,7 +89,7 @@ class ScriptData {
|
| Scanner::Location MessageLocation() const;
|
| bool IsReferenceError() const;
|
| const char* BuildMessage() const;
|
| - Vector<const char*> BuildArgs() const;
|
| + const char* BuildArg() const;
|
|
|
| int function_count() {
|
| int functions_size =
|
| @@ -515,14 +515,14 @@ class ParserTraits {
|
| // Reporting errors.
|
| void ReportMessageAt(Scanner::Location source_location,
|
| const char* message,
|
| - Vector<const char*> args,
|
| + const char* arg,
|
| bool is_reference_error = false);
|
| void ReportMessage(const char* message,
|
| - Vector<Handle<String> > args,
|
| + MaybeHandle<String> arg,
|
| bool is_reference_error = false);
|
| void ReportMessageAt(Scanner::Location source_location,
|
| const char* message,
|
| - Vector<Handle<String> > args,
|
| + MaybeHandle<String> arg,
|
| bool is_reference_error = false);
|
|
|
| // "null" return type creators.
|
|
|