| Index: src/liveedit-debugger.js
|
| diff --git a/src/liveedit-debugger.js b/src/liveedit-debugger.js
|
| index 07214f9657c0b3a99fa7809c41c28fe96234554b..eaa23834c964d22737de4b954a4142edd53a9cc9 100644
|
| --- a/src/liveedit-debugger.js
|
| +++ b/src/liveedit-debugger.js
|
| @@ -19,6 +19,9 @@
|
| // All unchanged functions have their positions updated accordingly.
|
| //
|
| // LiveEdit namespace is declared inside a single function constructor.
|
| +
|
| +"use strict";
|
| +
|
| Debug.LiveEdit = new function() {
|
|
|
| // Forward declaration for minifier.
|
| @@ -953,7 +956,7 @@ Debug.LiveEdit = new function() {
|
|
|
| FunctionPatchabilityStatus.SymbolName = function(code) {
|
| var enumeration = FunctionPatchabilityStatus;
|
| - for (name in enumeration) {
|
| + for (var name in enumeration) {
|
| if (enumeration[name] == code) {
|
| return name;
|
| }
|
|
|