OLD | NEW |
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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 TEST(StandAlonePreParser) { | 246 TEST(StandAlonePreParser) { |
247 int marker; | 247 int marker; |
248 i::StackGuard::SetStackLimit( | 248 i::StackGuard::SetStackLimit( |
249 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); | 249 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); |
250 | 250 |
251 const char* programs[] = { | 251 const char* programs[] = { |
252 "{label: 42}", | 252 "{label: 42}", |
253 "var x = 42;", | 253 "var x = 42;", |
254 "function foo(x, y) { return x + y; }", | 254 "function foo(x, y) { return x + y; }", |
255 "native function foo(); return %ArgleBargle(glop);", | 255 "native function foo(); return %ArgleBargle(glop);", |
| 256 "var x = new new Function('this.x = 42');", |
256 NULL | 257 NULL |
257 }; | 258 }; |
258 | 259 |
259 for (int i = 0; programs[i]; i++) { | 260 for (int i = 0; programs[i]; i++) { |
260 const char* program = programs[i]; | 261 const char* program = programs[i]; |
261 unibrow::Utf8InputBuffer<256> stream(program, strlen(program)); | 262 unibrow::Utf8InputBuffer<256> stream(program, strlen(program)); |
262 i::CompleteParserRecorder log; | 263 i::CompleteParserRecorder log; |
263 i::Scanner scanner; | 264 i::Scanner scanner; |
264 scanner.Initialize(i::Handle<i::String>::null(), &stream, i::JAVASCRIPT); | 265 scanner.Initialize(i::Handle<i::String>::null(), &stream, i::JAVASCRIPT); |
265 i::preparser::PreParser<i::Scanner, i::CompleteParserRecorder> preparser; | 266 i::preparser::PreParser<i::Scanner, i::CompleteParserRecorder> preparser; |
266 bool result = preparser.PreParseProgram(&scanner, &log, true); | 267 bool result = preparser.PreParseProgram(&scanner, &log, true); |
267 CHECK(result); | 268 CHECK(result); |
268 i::ScriptDataImpl data(log.ExtractData()); | 269 i::ScriptDataImpl data(log.ExtractData()); |
269 CHECK(!data.has_error()); | 270 CHECK(!data.has_error()); |
270 } | 271 } |
271 } | 272 } |
OLD | NEW |