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

Side by Side Diff: test/cctest/test-parsing.cc

Issue 5166006: Untemplated preparser.h and made it depend on virtual types. (Closed)
Patch Set: Created 10 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 unified diff | Download patch
« no previous file with comments | « test/cctest/test-api.cc ('k') | tools/visual_studio/v8_base.vcproj » ('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 2006-2009 the V8 project authors. All rights reserved. 1 // Copyright 2006-2009 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 "var x = new new Function('this.x = 42');", 256 "var x = new new Function('this.x = 42');",
257 NULL 257 NULL
258 }; 258 };
259 259
260 for (int i = 0; programs[i]; i++) { 260 for (int i = 0; programs[i]; i++) {
261 const char* program = programs[i]; 261 const char* program = programs[i];
262 unibrow::Utf8InputBuffer<256> stream(program, strlen(program)); 262 unibrow::Utf8InputBuffer<256> stream(program, strlen(program));
263 i::CompleteParserRecorder log; 263 i::CompleteParserRecorder log;
264 i::V8JavaScriptScanner scanner; 264 i::V8JavaScriptScanner scanner;
265 scanner.Initialize(i::Handle<i::String>::null(), &stream); 265 scanner.Initialize(i::Handle<i::String>::null(), &stream);
266 v8::preparser::PreParser<i::V8JavaScriptScanner, 266 v8::preparser::PreParser preparser;
267 i::CompleteParserRecorder> preparser;
268 bool result = preparser.PreParseProgram(&scanner, &log, true); 267 bool result = preparser.PreParseProgram(&scanner, &log, true);
269 CHECK(result); 268 CHECK(result);
270 i::ScriptDataImpl data(log.ExtractData()); 269 i::ScriptDataImpl data(log.ExtractData());
271 CHECK(!data.has_error()); 270 CHECK(!data.has_error());
272 } 271 }
273 } 272 }
274 273
275 274
276 TEST(RegressChromium62639) { 275 TEST(RegressChromium62639) {
277 int marker; 276 int marker;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 CHECK(!entry1.is_valid()); 320 CHECK(!entry1.is_valid());
322 321
323 int second_function = strstr(program + first_lbrace, "function") - program; 322 int second_function = strstr(program + first_lbrace, "function") - program;
324 int second_lbrace = second_function + strlen("function () "); 323 int second_lbrace = second_function + strlen("function () ");
325 CHECK_EQ('{', program[second_lbrace]); 324 CHECK_EQ('{', program[second_lbrace]);
326 i::FunctionEntry entry2 = data->GetFunctionEntry(second_lbrace); 325 i::FunctionEntry entry2 = data->GetFunctionEntry(second_lbrace);
327 CHECK(entry2.is_valid()); 326 CHECK(entry2.is_valid());
328 CHECK_EQ('}', program[entry2.end_pos() - 1]); 327 CHECK_EQ('}', program[entry2.end_pos() - 1]);
329 delete data; 328 delete data;
330 } 329 }
OLDNEW
« no previous file with comments | « test/cctest/test-api.cc ('k') | tools/visual_studio/v8_base.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698