Bug 1202902 - Mass replace toplevel 'let' with 'var' in preparation for global lexical scope. (rs=jorendorff)
This commit is contained in:
@@ -53,7 +53,7 @@ const NOTIFICATIONS = [
|
||||
"sessionstore-final-state-write-complete"
|
||||
];
|
||||
|
||||
let CrashMonitorInternal = {
|
||||
var CrashMonitorInternal = {
|
||||
|
||||
/**
|
||||
* Notifications received during the current session.
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
Components.utils.import("resource://gre/modules/Services.jsm");
|
||||
|
||||
let Scope = {}
|
||||
var Scope = {}
|
||||
Components.utils.import("resource://gre/modules/CrashMonitor.jsm", Scope);
|
||||
let MonitorAPI = Scope.CrashMonitor;
|
||||
var MonitorAPI = Scope.CrashMonitor;
|
||||
|
||||
function CrashMonitor() {};
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
XPCOMUtils.defineLazyModuleGetter(this, "OS",
|
||||
"resource://gre/modules/osfile.jsm");
|
||||
|
||||
let sessionCheckpointsPath;
|
||||
var sessionCheckpointsPath;
|
||||
|
||||
/**
|
||||
* Start the tasks of the different tests
|
||||
|
||||
Reference in New Issue
Block a user