| Index: runtime/vm/parser_test.cc
|
| ===================================================================
|
| --- runtime/vm/parser_test.cc (revision 36738)
|
| +++ runtime/vm/parser_test.cc (working copy)
|
| @@ -30,7 +30,8 @@
|
| EXPECT(Isolate::Current() != NULL);
|
| LongJumpScope jump;
|
| if (setjmp(*jump.Set()) == 0) {
|
| - ParsedFunction* parsed_function = new ParsedFunction(function);
|
| + ParsedFunction* parsed_function =
|
| + new ParsedFunction(Isolate::Current(), function);
|
| Parser::ParseFunction(parsed_function);
|
| EXPECT(parsed_function->node_sequence() != NULL);
|
| printf("Class %s function %s:\n", cname, fname);
|
|
|