Browse Source

update expected test output

better-aggressive
Rich-Harris 9 years ago
parent
commit
657ddea8c6
  1. 2
      test/form/namespace-optimization-b/_expected/amd.js
  2. 4
      test/form/namespace-optimization-b/_expected/cjs.js
  3. 4
      test/form/namespace-optimization-b/_expected/es6.js
  4. 4
      test/form/namespace-optimization-b/_expected/iife.js
  5. 4
      test/form/namespace-optimization-b/_expected/umd.js

2
test/form/namespace-optimization-b/_expected/amd.js

@ -1,7 +1,7 @@
define(function () { 'use strict';
function foo() {
}
};
function a() {
foo();

4
test/form/namespace-optimization-b/_expected/cjs.js

@ -1,7 +1,7 @@
'use strict';
function foo() {
}
};
function a() {
foo();
@ -10,4 +10,4 @@ function a() {
if (a.b) {
}
}
a();
a();

4
test/form/namespace-optimization-b/_expected/es6.js

@ -1,5 +1,5 @@
function foo() {
}
};
function a() {
foo();
@ -8,4 +8,4 @@ function a() {
if (a.b) {
}
}
a();
a();

4
test/form/namespace-optimization-b/_expected/iife.js

@ -1,7 +1,7 @@
(function () { 'use strict';
function foo() {
}
};
function a() {
foo();
@ -12,4 +12,4 @@
}
a();
})();
})();

4
test/form/namespace-optimization-b/_expected/umd.js

@ -5,7 +5,7 @@
}(this, function () { 'use strict';
function foo() {
}
};
function a() {
foo();
@ -16,4 +16,4 @@
}
a();
}));
}));

Loading…
Cancel
Save