 Chromium Code Reviews
 Chromium Code Reviews Issue 6355006:
  Make invalid break/continue statements an early syntax error.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build-ia32
    
  
    Issue 6355006:
  Make invalid break/continue statements an early syntax error.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge/build-ia32| Index: src/parser.h | 
| diff --git a/src/parser.h b/src/parser.h | 
| index 460f6647facb6bc7680f3dcf28c8ca583b081527..0613a8de99c4aad758ebc825201515aa0f56ca43 100644 | 
| --- a/src/parser.h | 
| +++ b/src/parser.h | 
| @@ -430,6 +430,9 @@ class Parser { | 
| void ReportMessageAt(Scanner::Location loc, | 
| const char* message, | 
| Vector<const char*> args); | 
| + void ReportMessageAt(Scanner::Location loc, | 
| + const char* message, | 
| + Vector<Handle<String> > args); | 
| protected: | 
| FunctionLiteral* ParseLazy(Handle<SharedFunctionInfo> info, |