Correct small whitespace inconsistency, lost while renaming variables.
1 // Any copyright is dedicated to the Public Domain.
2 // http://creativecommons.org/licenses/publicdomain/
5 a.watch('p', function () {});
6 var b = Object.create(a);
7 b.watch('p', function () {});
11 reportCompare(0, 0, 'ok');