Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 238426e0b4542f1ed4bbd2f11c0d2fb13f8702b4..3461f9791695ce3a4ba488ae17a7ce7ed73d58ff 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -644,8 +644,8 @@ class Isolate { |
// Returns the global object of the current context. It could be |
// a builtin object, or a JS global object. |
- Handle<GlobalObject> global() { |
- return Handle<GlobalObject>(context()->global()); |
+ Handle<GlobalObject> global_object() { |
+ return Handle<GlobalObject>(context()->global_object()); |
} |
// Returns the global proxy object of the current context. |