| Index: src/mirror-debugger.js
|
| diff --git a/src/mirror-debugger.js b/src/mirror-debugger.js
|
| index b329f81db222fa2ada9fc3b312d1e01a56e5e5f5..0fffd619a771eb7bc3cf9d365a57f02039479d13 100644
|
| --- a/src/mirror-debugger.js
|
| +++ b/src/mirror-debugger.js
|
| @@ -25,7 +25,7 @@ function ToggleMirrorCache(value) {
|
| function ObjectIsPromise(value) {
|
| try {
|
| return IS_SPEC_OBJECT(value) &&
|
| - !IS_UNDEFINED(%DebugGetProperty(value, builtins.promiseStatus));
|
| + !IS_UNDEFINED(%DebugGetProperty(value, builtins.$promiseStatus));
|
| } catch (e) {
|
| return false;
|
| }
|
| @@ -1335,7 +1335,7 @@ inherits(PromiseMirror, ObjectMirror);
|
|
|
|
|
| function PromiseGetStatus_(value) {
|
| - var status = %DebugGetProperty(value, builtins.promiseStatus);
|
| + var status = %DebugGetProperty(value, builtins.$promiseStatus);
|
| if (status == 0) return "pending";
|
| if (status == 1) return "resolved";
|
| return "rejected";
|
| @@ -1343,7 +1343,7 @@ function PromiseGetStatus_(value) {
|
|
|
|
|
| function PromiseGetValue_(value) {
|
| - return %DebugGetProperty(value, builtins.promiseValue);
|
| + return %DebugGetProperty(value, builtins.$promiseValue);
|
| }
|
|
|
|
|
|
|