Chromium Code Reviews| Index: runtime/vm/code_generator_test.cc |
| =================================================================== |
| --- runtime/vm/code_generator_test.cc (revision 25778) |
| +++ runtime/vm/code_generator_test.cc (working copy) |
| @@ -222,7 +222,8 @@ |
| new NativeBodyNode(kPos, |
| function, |
| native_name, |
| - native_function))); |
| + native_function, |
| + false))); |
|
srdjan
2013/08/06 17:06:28
Comment what 'false' means. (also on cases below)
siva
2013/08/06 19:04:26
Done.
|
| } |
| @@ -402,7 +403,8 @@ |
| new NativeBodyNode(kPos, |
| function, |
| native_name, |
| - native_function))); |
| + native_function, |
| + false))); |
| } |
| @@ -489,7 +491,8 @@ |
| new NativeBodyNode(kPos, |
| function, |
| native_name, |
| - native_function))); |
| + native_function, |
| + false))); |
| } |