69d166fcef
After this CL all liveedit tests call the same LiveEdit::PatchScript method. This method will be updated later. As well some new liveedit cctests added, unfortunately part of them do not work with current implementation. R=dgozman@chromium.org,yangguo@chromium.org Bug: v8:7862 Cq-Include-Trybots: luci.chromium.try:linux_chromium_headless_rel;luci.chromium.try:linux_chromium_rel_ng;master.tryserver.blink:linux_trusty_blink_rel Change-Id: I3521af12b0f95b39d13aaafb1d1cf60f3f642a97 Reviewed-on: https://chromium-review.googlesource.com/1108382 Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org> Reviewed-by: Yang Guo <yangguo@chromium.org> Reviewed-by: Dmitry Gozman <dgozman@chromium.org> Cr-Commit-Position: refs/heads/master@{#53936}
27 lines
717 B
JavaScript
27 lines
717 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file
|
|
|
|
// Flags: --allow-natives-syntax
|
|
|
|
Debug = debug.Debug
|
|
|
|
eval("var something1 = 25; "
|
|
+ " function ChooseAnimal() { return 'Cat'; } "
|
|
+ " ChooseAnimal.Helper = function() { return 'Help!'; }");
|
|
|
|
function foo() { return ChooseAnimal() }
|
|
|
|
assertEquals("Cat", foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
|
|
foo();
|
|
|
|
var new_source =
|
|
Debug.scriptSource(ChooseAnimal).replace('Cat', "Cap' + 'y' + 'bara");
|
|
print('new source: ' + new_source);
|
|
|
|
%LiveEditPatchScript(ChooseAnimal, new_source);
|
|
|
|
assertEquals("Capybara", foo());
|