summaryrefslogtreecommitdiff
path: root/deps/v8/src/runtime/runtime-liveedit.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/runtime/runtime-liveedit.cc')
-rw-r--r--deps/v8/src/runtime/runtime-liveedit.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/runtime/runtime-liveedit.cc b/deps/v8/src/runtime/runtime-liveedit.cc
index 4ed2071c7b..ee1602b712 100644
--- a/deps/v8/src/runtime/runtime-liveedit.cc
+++ b/deps/v8/src/runtime/runtime-liveedit.cc
@@ -45,9 +45,9 @@ RUNTIME_FUNCTION(Runtime_LiveEditFindSharedFunctionInfosForScript) {
for (int i = 0; i < found_size; ++i) {
Handle<SharedFunctionInfo> shared = found[i];
SharedInfoWrapper info_wrapper = SharedInfoWrapper::Create(isolate);
- Handle<String> name(shared->name(), isolate);
- info_wrapper.SetProperties(name, shared->start_position(),
- shared->end_position(), shared);
+ Handle<String> name(shared->Name(), isolate);
+ info_wrapper.SetProperties(name, shared->StartPosition(),
+ shared->EndPosition(), shared);
result->set(i, *info_wrapper.GetJSArray());
}
return *isolate->factory()->NewJSArrayWithElements(result);